/* ============================================================
   HOME PAGE - CSS UNIFICADO E RESPONSIVO
   Versão: 2.0 - Reorganizado e Otimizado
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ============================================================ */
:root {
    /* Cores (certifique-se que estas variáveis existem no seu CSS global) */


    
    /* Transições */
    --transicao-suave: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-premium: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Espaçamentos responsivos */
    --spacing-section-mobile: 60px;
    --spacing-section-desktop: 96px;
    
    /* Border radius */
    --radius-sm: 0.75rem;
    --radius-md: 1.2rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
}

/* Reset para estabilidade do Swiper */
.swiper:not(.swiper-initialized) {
    max-height: 500px;
    overflow: hidden;
    display: flex;
}
/* ============================================================
   COMPLEMENTOS PARA O HTML ATUALIZADO
   ============================================================ */

/* Banner Media */
.banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Marca Card Link */
.marca-card-link {
    display: flex;
    height: 100px;
    padding: 16px;
    border-radius: var(--radius-md);
}





/* Instagram Grid */
.instagram-grid {
    grid-template-columns: 1fr;
}



/* Product Buttons */
.product-btn-secondary {
    width: 44px;
    min-width: 44px;
}




.section-produtos {
    padding: 80px 0 60px;
}


.section-marcas {
    padding: 60px 0;
    background: #fcfcfc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}



.section-instagram {
    padding: 60px 0;
    background: #FAFAFA;
}



/* Swiper Marcas Container */
.swiperMarcas {
    padding-bottom: 60px;
}
/* ============================================================
   2. HERO BANNER - MOBILE FIRST
   ============================================================ */
.hero-section-home {
    position: relative;
    overflow: hidden;
    height: 65vh;
    min-height: 480px;
    max-height: 600px;
}

/* Banner Container de Mídia */
.banner-img-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-title {
    font-size: 3rem;
    line-height: 0.9 !important; 
    letter-spacing: -0.02em;   
}
.banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transform:none;
}
.banner-img-container img,
.banner-img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Banner Text Content - Mobile */
.hero-section-home .container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.banner-text-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 90%;
}

.banner-text-content h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    font-weight: 900;
}

/* Banner Button */
.btn-banner-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria) !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
    z-index: 1;
    width: 100%;
    max-width: 250px;
    padding: 16px;
    border-radius: 50px;
    font-size: 3.5rem;
}

.btn-banner-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.btn-banner-custom:hover {
    color: #ffffff !important;
    background-color: var(--cor-primaria) !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-banner-custom:hover::before {
    left: 100%;
}

/* Banner Animations */
.mySwiperBanner .swiper-slide {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.mySwiperBanner .swiper-slide-active {
    pointer-events: auto;
    opacity: 1;
}

.banner-zoom {
    animation: zoomInfinite 20s infinite alternate ease-in-out;
}

@keyframes zoomInfinite {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.animate-fade-up {
    animation: fade-up 1.2s forwards;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Banner Pagination */
.swiper-pagination-bullet {
    background: var(--cor-primaria) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: var(--transition-bounce);
}

.swiper-pagination-bullet-active {
    background: var(--cor-secundaria) !important;
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

/* Banner Navigation */
.swiper-button-prev-banner,
.swiper-button-next-banner {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--cor-branco);
    transition: var(--transition-premium);
}

.swiper-button-prev-banner:hover,
.swiper-button-next-banner:hover {
    background: var(--cor-secundaria) !important;
    color: var(--cor-primaria) !important;
}

/* ============================================================
   3. DIFERENCIAIS - MOBILE FIRST
   ============================================================ */
.section-diferenciais {
    position: relative;
    z-index: 30;
    margin-top: -30px;
}

.section-diferenciais .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.diferencial-card {
    background: white;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.diferencial-card:hover::before {
    opacity: 1;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-secundaria);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition-bounce);
}

.icon-box img {
    width: 24px;
    height: 24px;
}

.diferencial-card:hover .icon-box {
    background-color: var(--cor-primaria);
    transform: scale(1.1) rotate(-5deg);
}

.diferencial-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.diferencial-card h3 {
    font-size: 12px;
    margin-bottom: 6px;
}

.diferencial-card p {
    font-size: 10px;
    line-height: 1.4;
}

/* ============================================================
   4. PRODUTOS CARDS - MOBILE FIRST
   ============================================================ */
.section-produtos {
    padding: 80px 0 60px;
    background: white;
    overflow: hidden;
}

/* Swiper Produtos - Mobile */
.mySwiperProd {
    overflow: visible;
    padding: 20px 0;
}

.mySwiperProd .swiper-slide {
    width: 100%;
    height: auto;
    padding: 0 15px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
    opacity: 0.5;
}

.mySwiperProd .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

/* Card Wrapper */
.produto-card-wrapper {
    height: 100%;
}

.produto-card-wrapper article {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px;
    border-radius: var(--radius-lg);
    transition: box-shadow 0.5s ease;
}

.produto-card-wrapper article:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Border Gradient Effect */
.produto-card-wrapper article::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}

.produto-card-wrapper article:hover::before {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-primaria) 100%);
    opacity: 1;
}

/* Card Glow Effect */
.produto-card-wrapper article::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.produto-card-wrapper article:hover::after {
    opacity: 1;
}

/* Product Image */
.produto-card-wrapper .aspect-square {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.produto-card-wrapper .aspect-square img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.produto-card-wrapper article:hover .aspect-square img {
    transform: scale(1.1);
}

/* Shimmer Effect */
.produto-card-wrapper .aspect-square::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.produto-card-wrapper article:hover .aspect-square::after {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Product Title */
.produto-card-wrapper h3 {
    font-size: 13px;
    height: auto;
    min-height: 36px;
    transition: color 0.3s ease;
}

.produto-card-wrapper article:hover h3 {
    color: var(--cor-secundaria);
}

/* Product Actions */
.produto-card-wrapper .mt-8 {
    margin-top: 16px;
}

.produto-card-wrapper .mt-8 a:first-child {
    position: relative;
    overflow: hidden;
    padding: 12px;
    font-size: 9px;
}

.produto-card-wrapper .mt-8 a:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.produto-card-wrapper article:hover .mt-8 a:first-child::before {
    animation: btnShimmer 0.6s ease forwards 0.2s;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.produto-card-wrapper .mt-8 a:last-child {
    width: 44px;
    min-width: 44px;
    transition: var(--transition-bounce);
}

.produto-card-wrapper article:hover .mt-8 a:last-child {
    background: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    color: var(--cor-primaria);
}

/* Like Button Animation */
.produto-card-wrapper article button {
    transition: var(--transition-bounce);
}

.produto-card-wrapper article button:hover {
    transform: scale(1.15);
}

.produto-card-wrapper article button i.fas.text-red-500 {
    animation: heartPulse 0.6s ease;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Variation Badges */
.produto-card-wrapper .flex-wrap span {
    transition: all 0.3s ease;
}

.produto-card-wrapper article:hover .flex-wrap span {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--cor-primaria);
}

/* ============================================================
   5. MARCAS SECTION - MOBILE FIRST
   ============================================================ */
.section-marcas {
    padding: var(--spacing-section-mobile) 0;
    background: #fcfcfc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.swiperMarcas {
    width: 100%;
    padding: 20px 0 56px;
padding-bottom: 55px !important;
}

.marca-card,
.swiperMarcas .swiper-slide a {
    height: 120px;
    padding: 20px;
    border-radius: var(--radius-md);
}



/* ============================================================
   6. INSTAGRAM SECTION - MOBILE FIRST
   ============================================================ */
.section-instagram {
    padding: var(--spacing-section-mobile) 0;
    background: #FAFAFA;
}

.section-instagram h2 {
    font-size: 1.75rem;
}

.section-instagram .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feed-item {
    transition: var(--transition-premium);
    overflow: hidden;
    border-radius: 12px;
}

.feed-item:hover {
    transform: scale(1.03);
}

.underline-insta {
    width: 80px;
    height: 5px;
    background: var(--cor-secundaria);
    border-radius: 10px;
    margin: 0 auto;
}

/* ============================================================
   7. SCROLL REVEAL SYSTEM
   ============================================================ */
.js-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transicao-suave);
}

.js-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Direction Variants - Mobile uses only vertical */
.js-reveal.reveal-up,
.js-reveal.reveal-down,
.js-reveal.reveal-left,
.js-reveal.reveal-right {
    transform: translateY(30px);
}

.js-reveal.active.reveal-up,
.js-reveal.active.reveal-down,
.js-reveal.active.reveal-left,
.js-reveal.active.reveal-right {
    transform: translateY(0);
}

.js-reveal.reveal-scale {
    transform: scale(0.85);
}

.js-reveal.active.reveal-scale {
    transform: scale(1);
}

.js-reveal.reveal-blur {
    filter: blur(10px);
    transform: translateY(30px);
}

.js-reveal.active.reveal-blur {
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger Animation */
.js-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.js-stagger.active > *:nth-child(1) { transition-delay: 0ms; }
.js-stagger.active > *:nth-child(2) { transition-delay: 50ms; }
.js-stagger.active > *:nth-child(3) { transition-delay: 100ms; }
.js-stagger.active > *:nth-child(4) { transition-delay: 150ms; }

/* Section Headers */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--cor-secundaria);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.active::after {
    width: 80px;
}

/* Section Title Animation */
.section-title-animated {
    position: relative;
    display: inline-block;
}

.section-title-animated::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--cor-secundaria);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.active .section-title-animated::after,
.section-title-animated.active::after {
    width: 60px;
}

/* ============================================================
   8. SECTION DECORATIONS
   ============================================================ */
section.with-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

section.with-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 50%;
    background: radial-gradient(ellipse at bottom left, rgba(44, 82, 52, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.05) 80%, transparent 100%);
}

/* ============================================================
   9. UTILITY CLASSES
   ============================================================ */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.break-word-custom {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 767px) {
   .display-desktop-only {
        display: none !important;
    }
    
    .display-mobile-only {
        display: block !important;
        width: 100%;
        height: auto;
    }

 
    .hero-section-home {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        display: block;
    }

  
    .banner-img-container {
        position: relative !important;
        height: auto !important;
    }

    .banner-media {
        object-fit: contain !important; 
        height: auto !important;
        width: 100% !important;
        display: block;
    }

.hero-section-home .container {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 30;
        width: 100%;
        height: 100%; 
        padding: 0 15px;
        display: none; 
    }
   .section-diferenciais .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
  
    .banner-text-content {
        padding: 15px !important;
        max-width: 85% !important;
    }
	.section-diferenciais {
    margin-top: -10px !important;
}

}

/* ============================================================
   10. MEDIA QUERIES - TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
	
	.display-mobile-only {
        display: none !important;
    }
    .display-desktop-only {
        display: block !important;
        height: 100%;
        width: 100%;
    }

    
	  .banner-title {
        font-size: 2.5rem;
		line-height: 1.0 !important;
    }

    .banner-text-content {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
      
    }
    
    .banner-text-content h1 {
        font-size: 2.5rem;
		line-height: 1.0 !important;
    }
    
    .btn-banner-custom {
        width: auto;
        max-width: none;
        padding: 1rem 2.5rem;
        font-size: 0.6rem;
    }

    .diferencial-card {
        padding: 24px;
        border-radius: var(--radius-xl);
    }
      .section-diferenciais .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    
    .icon-box img {
        width: 32px;
        height: 32px;
    }
    
    .diferencial-card h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .diferencial-card p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    /* Produtos */
    .section-produtos {
        padding: var(--spacing-section-desktop) 0;
    }
    

    .section-produtos .header-flex {
        flex-direction: row;
        align-items: flex-end;
    }
    
    .mySwiperProd .swiper-slide {
        width: auto;
        padding: 0;
        transform: scale(1);
        opacity: 1;
    }
    
    .produto-card-wrapper article {
        padding: 20px;
        border-radius: var(--radius-2xl);
    }
    
    .produto-card-wrapper .aspect-square img {
        width: 75%;
        height: 75%;
    }
    
    .produto-card-wrapper h3 {
        font-size: 0.875rem;
        min-height: 48px;
    }
    
    .produto-card-wrapper .mt-8 a:first-child {
        padding: 16px;
        font-size: 10px;
    }
    
    /* Marcas */
    .section-marcas {
        padding: var(--spacing-section-desktop) 0;
    }
    
	.pagination-marcas.swiper-pagination {
    bottom: 5px !important; /* Posicionamento fixo */
}

.pagination-marcas .swiper-pagination-bullet {
    background: var(--cor-primaria) !important;
    opacity: 0.2 !important;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.pagination-marcas .swiper-pagination-bullet-active {
    background: var(--cor-secundaria) !important;
    opacity: 1 !important;
    width: 24px !important; /* Efeito pílula */
    border-radius: 4px !important;
}
    .swiperMarcas .swiper-slide a {
        height: 160px;
        padding: 32px;
        border-radius: var(--radius-xl);
    }
    
    /* Instagram */
    .section-instagram {
        padding: var(--spacing-section-desktop) 0;
    }
    
    .section-instagram h2 {
        font-size: 3rem;
    }
    
    .section-instagram .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
     /*Reveal Directions - Desktop */
    .js-reveal.reveal-left {
        transform: translateX(-50px);
    }
    
    .js-reveal.reveal-right {
        transform: translateX(50px);
    }
    
    .js-reveal.reveal-up {
        transform: translateY(50px);
    }
    
    .js-reveal.reveal-down {
        transform: translateY(-50px);
    }
    
    .js-reveal.active.reveal-left,
    .js-reveal.active.reveal-right,
    .js-reveal.active.reveal-up,
    .js-reveal.active.reveal-down {
        transform: translate(0, 0);
    }
    
    /* Stagger delays - Desktop */
    .js-stagger.active > *:nth-child(1) { transition-delay: 0ms; }
    .js-stagger.active > *:nth-child(2) { transition-delay: 100ms; }
    .js-stagger.active > *:nth-child(3) { transition-delay: 200ms; }
    .js-stagger.active > *:nth-child(4) { transition-delay: 300ms; }
    .js-stagger.active > *:nth-child(5) { transition-delay: 400ms; }
    .js-stagger.active > *:nth-child(6) { transition-delay: 500ms; }

  
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-btn-secondary {
        width: 48px;
        min-width: 48px;
    }

    .section-produtos {
        padding: 96px 0;
    }

    .section-marcas {
        padding: 96px 0;
    }
	.section-instagram {
        padding: 96px 0;
    }

    .marca-card-link {
        height: 140px;
        padding: 24px;
        border-radius: var(--radius-xl);
    }

}
/* ============================================================
   11. MEDIA QUERIES - DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .banner-text-content h1 {
        font-size: 4.2rem;
		line-height: 1.0 !important;
    }
      .btn-banner-custom {
      
        font-size: 1rem;
    }
    .mySwiperProd {
        overflow: hidden;
        padding: 0;
    }
    
    .produto-card-wrapper .aspect-square {
        border-radius: var(--radius-xl);
    }

    .banner-title {
        font-size: 4rem;
		line-height: 1.0 !important;
    }

    .marca-card-link {
        height: 160px;
        padding: 32px;
    }
	.section-diferenciais .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
}

/* ============================================================
   12. MEDIA QUERIES - LARGE DESKTOP (1440px+)
   ============================================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
	.section-diferenciais .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
}

/* ============================================================
   13. LANDSCAPE ORIENTATION FIX
   ============================================================ */
@media (max-width: 1023px) and (orientation: landscape) {
    .hero-section-home {
        height: 100vh;
        min-height: 400px;
    }
    	.section-diferenciais .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
    .mySwiperProd .swiper-slide {
        width: 45%;
    }
}

/* ============================================================
   14. REDUCED MOTION (ACCESSIBILITY)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .banner-zoom {
        animation: none;
    }
    
    .js-reveal {
        opacity: 1;
        transform: none;
    }
}