.generated-design {
  background-color: #ffffff;
  display: grid;
  justify-items: center;
  align-items: start;
  width: 100vw;
}

.generated-design .div {
  background-color: #ffffff;
  width: 1935px;
  height: 2085px;
  position: relative;
}

.generated-design .text-wrapper {
  position: absolute;
  width: 618px;
  top: 1405px;
  left: 659px;
  font-family: "Inter-Bold", Helvetica;
  font-weight: 700;
  color: #2d3748;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  line-height: 36px;
}

.generated-design .overlap-group {
  position: absolute;
  width: 1934px;
  height: 1170px;
  top: 86px;
  left: 0;
}

.generated-design .rectangle {
  position: absolute;
  width: 914px;
  height: 76px;
  top: 547px;
  left: 500px;
  opacity: 0.9;
}

.generated-design .ccf-d {
  position: absolute;
  width: 1934px;
  height: 1170px;
  top: 0;
  left: 0;
}

.generated-design .navbar {
  position: absolute;
  width: 1935px;
  height: 86px;
  top: 0;
  left: 0;
  background-color: #000000;
  box-shadow:
    0px 0px 0px transparent, 0px 0px 0px transparent, 0px 0px 0px transparent, 0px 0px 0px transparent, 0px 2px 10px #0000001a;
}

.generated-design .text-wrapper-2 {
  width: 117px;
  top: 21px;
  left: 66px;
  font-family: "Inter-Bold", Helvetica;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
}

.generated-design .text-wrapper-3 {
  width: 69px;
  top: 26px;
  left: 655px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
}

.generated-design .text-wrapper-4 {
  width: 69px;
  top: 25px;
  left: 751px;
  -webkit-text-stroke: 1px #000000;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
}

.generated-design .text-wrapper-5 {
  position: absolute;
  width: 169px;
  top: 26px;
  left: 853px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.generated-design .text-wrapper-6 {
  width: 86px;
  top: 26px;
  left: 1052px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
}

.generated-design .text-wrapper-7 {
  width: 128px;
  top: 26px;
  left: 1168px;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  position: absolute;
  color: #ffffff;
  letter-spacing: 0;
}

.generated-design .p {
  position: absolute;
  width: 984px;
  height: 595px;
  top: 1461px;
  left: 475px;
  font-family: "Inter-SemiBold", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 50px;
}
/* Original CSS code should be injected here */

/* Additional styles for semantic improvements */
.generated-design .navbar nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.generated-design .navbar a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.generated-design .navbar a:hover,
.generated-design .navbar a:focus {
  color: #cccccc;
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.generated-design .content-section {
  position: relative;
}

.generated-design .text-wrapper:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 4px;
}

/* Ensure proper focus styles for all interactive elements */
.generated-design a:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Improve text readability */
.generated-design .p {
  line-height: 1.25;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navbar {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-link:hover {
    color: #ccc;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Gallery Styles */
.hero-gallery {
    margin-top: 70px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-scroll {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll:active {
    cursor: grabbing;
}

.gallery-slide {
    flex: 0 0 100vw;
    height: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    background-color: #000000;
}
.corte1{
  left: 15%;
  right: 15%;
}

.baixa {
    object-position: center bottom !important;
}

.alta {
    object-position: center top !important;
}

.CamisaBege {
    object-position: 50% 20% !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #fff;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.brand-title {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.about-text {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.6;
    color: #2d3748;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

/* About Page Styles */
.sobre-hero {
    margin-top: 70px;
    padding: 60px 0 40px;
    background: #f8f9fa;
    text-align: center;
}

.page-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    font-style: italic;
}

.sobre-content {
    padding: 60px 0 80px;
    background: #fff;
}

.sobre-grid {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sobre-list li {
    margin-bottom: 24px;
    padding-left: 20px;
    position: relative;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: #4a5568;
}

.sobre-list li:before {
    content: "•";
    color: #2d3748;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.sobre-list li strong {
    color: #2d3748;
    font-weight: 700;
}

/* Active navigation link */
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .sobre-hero {
        padding: 40px 0 30px;
    }
    
    .sobre-content {
        padding: 40px 0 60px;
    }
    
    .sobre-list li {
        padding-left: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .sobre-list li {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Products Sections */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-section:nth-child(even) {
    background: #fff;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #000;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.product-sizes,
.product-colors {
    font-size: 12px;
    color: #666;
}

.product-sizes strong,
.product-colors strong {
    color: #000;
}

.buy-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.buy-btn:active {
    transform: translateY(0);
}

.link-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.link-type-whatsapp {
    background: #25D366;
    color: white;
}

.link-type-official {
    background: #007bff;
    color: white;
}

.link-type-store {
    background: #ff6b35;
    color: white;
}

/* Brand Filter Styles */
.brand-filters {
    margin-bottom: 40px;
    text-align: center;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.brand-btn {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.brand-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.brand-btn.active {
    background: #2d3748;
    border-color: #2d3748;
    color: #fff;
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background: #25D366;
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

.social-icon {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin: 5px 0;
}

.footer-note {
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-gallery {
        height: 50vh;
        min-height: 400px;
    }

    .gallery-slide {
        flex: 0 0 100vw;
    }

    .carousel-btn {
        font-size: 24px;
        padding: 10px 15px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        text-align: left;
        padding: 0 20px;
    }

    .cart-section {
        margin-left: 10px;
        order: -1;
    }

    .cart-modal-content {
        margin-top: 50px;
        max-height: 90vh;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item-controls {
        align-self: flex-end;
    }

    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .brand-filters {
        margin-bottom: 30px;
    }

    .filter-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .brand-tabs {
        gap: 10px;
    }

    .brand-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-subtitle {
        font-size: 18px;
    }

    .social-links,
    .contact-info {
        gap: 10px;
    }

    .contact-link,
    .social-link {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .hero-gallery {
        height: 40vh;
        min-height: 350px;
    }

    .carousel-content h2 {
        font-size: 24px;
    }

    .carousel-btn {
        font-size: 20px;
        padding: 8px 12px;
        width: 45px;
        height: 45px;
    }

    .carousel-slide img {
        height: 140%;
        top: -20%;
        object-position: center 80%;
        background-color: #000;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        margin: 0 10px;
    }

    .brand-tabs {
        gap: 8px;
    }

    .brand-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
