/* ========================================
   HOME MODERN - Design Profissional
   Estilo: Amazon / Magazine Luiza
   Foco: Alta Conversão
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Cores Profissionais */
    --color-primary: #EC4899;
    --color-primary-dark: #DB2777;
    --color-secondary: #9333EA;
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-900: #1F2937;
    --color-black: #000000;
    
    /* Fontes */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }
}

/* ========================================
   Header Profissional
   ======================================== */

.header-modern {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray-200);
    transition: top 0.3s ease;
}

/* Ajustar header quando notificação está ativa (apenas desktop) */
@media (min-width: 769px) {
    body:has(.purchase-notifications-bar.active) .header-modern {
        top: 45px;
    }
}

.header-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.3rem 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.logo-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1.2;
}

.logo-magras-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #DC2626;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: var(--font-heading);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: block;
}

.logo-trinta-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #059669;
    font-style: italic;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    position: relative;
    margin-left: -0.3rem;
    margin-top: -0.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: block;
    line-height: 1;
}

.logo-modern:hover .logo-magras-text,
.logo-modern:hover .logo-trinta-text {
    transform: scale(1.05);
    transition: var(--transition);
}

/* Barra de Busca Proeminente */
.search-modern {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-form-modern {
    display: flex;
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--color-gray-300);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-form-modern:focus-within {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.search-input-modern {
    flex: 1;
    border: none;
    padding: 0 0.75rem;
    font-size: 0.9rem;
    outline: none;
    color: var(--color-gray-900);
}

.search-input-modern::placeholder {
    color: var(--color-gray-600);
    font-size: 0.85rem;
}

.search-btn-modern {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.search-btn-modern:hover {
    background: var(--color-primary-dark);
}

/* Menu de Navegação */
.nav-modern {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link-modern {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link-modern:hover {
    color: var(--color-primary);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link-modern:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-modern {
    position: relative;
}

.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid var(--color-gray-200);
}

.dropdown-modern:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-modern a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.95rem;
}

.dropdown-menu-modern a:last-child {
    border-bottom: none;
}

.dropdown-menu-modern a:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
    padding-left: 1.75rem;
}

/* ========================================
   Hero Section Rotativo (Banner Principal)
   ======================================== */

.hero-modern {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCE7F3 0%, #FFFFFF 100%);
    margin-top: 0;
    padding: 0.5rem 0;
}

.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide-modern.active {
    opacity: 1;
    z-index: 1;
}

.hero-content-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title-modern {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.hero-subtitle-modern {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-cta-modern {
    display: inline-block;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta-modern:hover::before {
    left: 100%;
}

.hero-cta-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
}

.hero-cta-modern:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-indicators-modern {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-indicator-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicator-modern.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   Prova Social (Números e Selos)
   ======================================== */

.social-proof-modern {
    background: var(--color-gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.social-proof-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.social-proof-item-modern {
    padding: 0.5rem 0.3rem;
}

.social-proof-number-modern {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
    transition: var(--transition);
}

.social-proof-item-modern:hover .social-proof-number-modern {
    transform: scale(1.1);
    color: var(--color-primary-dark);
}

.social-proof-text-modern {
    font-size: 0.8rem;
    color: var(--color-gray-700);
    font-weight: 600;
    line-height: 1.3;
}

/* ========================================
   Banners Promocionais Lado a Lado - Carrossel
   ======================================== */

.promo-banners-section-modern {
    padding: 1.5rem 0;
    background: var(--color-white);
    margin-top: 0;
}

.promo-banners-carousel-wrapper-modern {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-banners-carousel-track-modern {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 200px;
}

.promo-banners-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.promo-banners-slide-modern.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    display: block;
}

.promo-banners-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

/* Mobile: Carrossel vertical (1 coluna) */
@media (max-width: 768px) {
    .promo-banners-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

.promo-banner-item-modern {
    width: 100%;
}

.promo-banner-wrapper-modern {
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    background: var(--color-gray-50);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.promo-banner-wrapper-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2);
}

.promo-banner-image-modern {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    transition: var(--transition);
}

.promo-banner-wrapper-modern:hover .promo-banner-image-modern {
    transform: scale(1.02);
}

.benefits-banner-wrapper-modern {
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    background: linear-gradient(135deg, #FCE7F3 0%, #FFFFFF 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.benefits-banner-wrapper-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
}

.benefits-banner-image-modern {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    transition: var(--transition);
}

.benefits-banner-wrapper-modern:hover .benefits-banner-image-modern {
    transform: scale(1.02);
}

/* Indicadores do Carrossel de Banners */
.promo-banners-indicators-modern {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.promo-banner-indicator-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.promo-banner-indicator-modern:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.promo-banner-indicator-modern.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
    border-color: var(--color-primary);
}

/* ========================================
   Seção de Produtos (Cartões Transparentes)
   ======================================== */

.products-section-modern {
    padding: 0.5rem 0;
    background: var(--color-white);
    margin-top: 0;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 0.3rem;
}

.section-title-modern {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 0.2rem;
    position: relative;
    display: inline-block;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-subtitle-modern {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Carrossel Horizontal de Produtos */
.products-carousel-wrapper-modern {
    position: relative;
    margin: 0.3rem 0;
}

/* Botões de Navegação Mobile */
.products-carousel-nav-modern {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #EC4899 0%, #9333EA 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    opacity: 0.85;
    line-height: 1;
    padding: 0;
}

.products-carousel-nav-modern:hover,
.products-carousel-nav-modern:active {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.6);
}

.products-carousel-prev {
    left: 8px;
}

.products-carousel-next {
    right: 8px;
}

@media (min-width: 769px) {
    .products-carousel-nav-modern {
        display: none;
    }
}

@media (max-width: 768px) {
    .products-carousel-nav-modern {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .products-carousel-prev {
        left: 5px;
    }
    
    .products-carousel-next {
        right: 5px;
    }
    
    .products-carousel-container-modern {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .products-carousel-nav-modern {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        opacity: 0.8;
    }
    
    .products-carousel-prev {
        left: 3px;
    }
    
    .products-carousel-next {
        right: 3px;
    }
}

.products-carousel-container-modern {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0.5rem;
    margin: 0;
}

.products-carousel-container-modern::-webkit-scrollbar {
    display: none;
}

.products-carousel-track-modern {
    display: flex;
    gap: 1rem;
    padding: 0.3rem 0;
    width: max-content;
}

/* Wrapper do Grid de Produtos (Desktop) */
.products-grid-wrapper-modern {
    position: relative;
    display: none; /* Oculto por padrão, será mostrado no desktop via media query */
    padding: 0 2rem;
}

/* Grid de Produtos (Desktop) */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 72, 153, 0.3) transparent;
    padding: 0 1rem;
}

.products-grid-modern::-webkit-scrollbar {
    height: 6px;
}

.products-grid-modern::-webkit-scrollbar-track {
    background: transparent;
}

.products-grid-modern::-webkit-scrollbar-thumb {
    background: rgba(236, 72, 153, 0.3);
    border-radius: 3px;
}

.products-grid-modern::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 72, 153, 0.5);
}

/* Botões de Navegação Desktop */
.products-nav-btn-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #EC4899 0%, #9333EA 100%);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    opacity: 0.85;
    line-height: 1;
    padding: 0;
}

.products-nav-btn-modern:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.6);
}

.products-nav-prev {
    left: -15px;
}

.products-nav-next {
    right: -15px;
}

@media (min-width: 769px) {
    .products-nav-btn-modern {
        display: flex;
    }
}

/* Carrossel oculto por padrão, será mostrado no mobile via media query */
.products-carousel-wrapper-modern {
    display: none;
}

/* Dica Visual de Swipe */
.swipe-hint-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
    padding: 0.3rem;
    color: var(--color-gray-600);
    font-size: 0.85rem;
    opacity: 0.7;
    animation: pulseHint 2s ease-in-out infinite;
}

.swipe-icon {
    font-size: 1rem;
    font-weight: 600;
}

.swipe-text {
    font-size: 0.85rem;
}

@keyframes pulseHint {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Cartão de Produto Transparente */
.product-card-modern {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
    border-color: var(--color-primary);
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.1) rotate(2deg);
}

.product-card-modern.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

/* Badge de Produto */
.product-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge-modern.popular {
    background: var(--color-warning);
}

.product-badge-modern.discount {
    background: var(--color-success);
}

/* Imagem do Produto */
.product-image-modern {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
    background: var(--color-gray-50);
    border-radius: 8px;
    overflow: hidden;
}

.product-image-modern img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.03);
}

/* Informações do Produto */
.product-info-modern {
    text-align: center;
}

.product-title-modern {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.product-subtitle-modern {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    margin-bottom: 0.3rem;
    min-height: 32px;
    line-height: 1.4;
}

/* Seletor de Kits */
.kit-selector-modern {
    display: flex;
    gap: 0.3rem;
    margin: 0.3rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.kit-btn-modern {
    padding: 0.4rem 0.8rem;
    border: 1.5px solid var(--color-gray-300);
    border-radius: 6px;
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-gray-700);
    font-family: var(--font-primary);
}

.kit-btn-modern:hover {
    border-color: var(--color-primary);
    background: var(--color-gray-50);
}

.kit-btn-modern.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

/* Preço do Produto */
.product-price-modern {
    margin: 0.3rem 0;
    text-align: center;
}

.price-old-modern {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-600);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.price-new-modern {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
    position: relative;
}

.price-new-modern::after {
    content: '🔥';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .price-new-modern::after {
        display: none; /* Ocultar em mobile para evitar problemas de layout */
    }
}

.price-installment-modern {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

/* Botão de Compra (Alta Conversão) */
.product-btn-modern {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.3rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px;
}

.product-btn-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-btn-modern:hover::after {
    width: 300px;
    height: 300px;
}

.product-btn-modern:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
}

.product-btn-modern:active {
    transform: translateY(-1px) scale(0.98);
}

.product-guarantee-modern {
    text-align: center;
    font-size: 0.7rem;
    color: var(--color-success);
    margin-top: 0.15rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ========================================
   Seção de Depoimentos
   ======================================== */

.testimonials-section-modern {
    padding: 4rem 0;
    background: var(--color-gray-50);
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card-modern {
    background: var(--color-white);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.05), transparent);
    transition: left 0.5s;
}

.testimonial-card-modern:hover::before {
    left: 100%;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    border-left-width: 6px;
}

.testimonial-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.testimonial-info-modern h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.2rem;
}

.testimonial-stars-modern {
    color: #FBBF24;
    font-size: 1rem;
}

.testimonial-text-modern {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   Seção de Selos de Segurança
   ======================================== */

.security-section-modern {
    padding: 3rem 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
}

.security-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.security-item-modern {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.security-icon-modern {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.security-text-modern {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    font-weight: 600;
    line-height: 1.3;
}

/* ========================================
   Footer
   ======================================== */

.footer-modern {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 2rem 0 0.5rem;
}

.footer-content-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.footer-section-modern p,
.footer-section-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
    transition: var(--transition);
}

.footer-section-modern a:hover {
    color: var(--color-primary);
}

.footer-section-modern ul {
    list-style: none;
}

.footer-section-modern ul li {
    margin-bottom: 0.4rem;
}

.footer-bottom-modern {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Rodapé com Acordeões (Mobile First)
   ======================================== */

.footer-accordion-modern {
    display: none;
}

.footer-accordion-item {
    margin-bottom: 0.5rem;
}

.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
}

.footer-accordion-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-accordion-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.footer-accordion-header.active .footer-accordion-icon {
    transform: rotate(180deg);
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-accordion-content.active {
    max-height: 500px;
    padding-top: 0.5rem;
}

/* ========================================
   Bandeiras do Mercado Pago
   ======================================== */

.payment-brands-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.payment-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    background: var(--color-white);
    border-radius: 4px;
    padding: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-brand-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-900);
    text-align: center;
}

/* ========================================
   Selos de Segurança e Confiança
   ======================================== */

.security-badges-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.security-badge-icon {
    font-size: 1.2rem;
}

/* ========================================
   Redes Sociais
   ======================================== */

.social-links-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1rem 0;
}

.social-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link-item:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */

.whatsapp-float-modern {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.whatsapp-float-modern:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float-modern svg {
    width: 30px;
    height: 30px;
}

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

/* Desktop: Mostrar grid, Mobile: Mostrar carrossel */
@media (min-width: 769px) {
    .products-carousel-wrapper-modern {
        display: none !important;
    }
    
    .products-grid-wrapper-modern {
        display: block !important;
        padding: 0 3rem;
    }
    
    .products-grid-modern {
        display: grid !important;
    }
    
    .products-nav-btn-modern {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .products-nav-prev {
        left: -10px;
    }
    
    .products-nav-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .products-grid-modern {
        display: none !important;
    }
    
    .products-carousel-wrapper-modern {
        display: block !important;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    body {
        font-size: 14px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    .header-container-modern {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }
    
    .logo-modern {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .logo-magras-text,
    .logo-trinta-text {
        font-size: 1rem;
    }
    
    .logo-modern img {
        max-height: 28px;
    }
    
    .search-modern {
        max-width: 100%;
        order: 2;
    }
    
    .search-form-modern {
        height: 36px;
    }
    
    .search-input-modern {
        font-size: 0.85rem;
        padding: 0 0.65rem;
    }
    
    .search-btn-modern {
        padding: 0 0.85rem;
        font-size: 0.8rem;
    }
    
    .nav-modern {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-link-modern {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }
    
    .hero-modern {
        height: auto;
        min-height: auto;
        padding: 1rem 0;
        background: #FFFFFF;
        margin: 0;
    }
    
    .hero-content-modern {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .hero-title-modern {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        font-weight: 700;
        word-wrap: break-word;
    }
    
    .hero-subtitle-modern {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
        font-weight: 400;
        color: #4B5563;
        word-wrap: break-word;
    }
    
    .hero-subtitle-modern strong {
        font-weight: 600;
        color: #1F2937;
    }
    
    .hero-cta-modern {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
        font-weight: 700;
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(147, 51, 234, 0.25);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .promo-banners-section-modern {
        padding: 1.25rem 0;
    }
    
    .promo-banners-carousel-wrapper-modern {
        padding: 0 1rem;
    }
    
    .promo-banners-carousel-track-modern {
        min-height: 180px;
    }
    
    .promo-banners-grid-modern {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    
    .promo-banner-item-modern {
        width: 100% !important;
        margin-bottom: 0;
        max-width: 100% !important;
    }
    
    .promo-banner-wrapper-modern {
        min-height: 120px !important;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .benefits-banner-wrapper-modern {
        min-height: 120px !important;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .promo-banners-indicators-modern {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .promo-banner-indicator-modern {
        width: 8px;
        height: 8px;
        opacity: 0.4;
    }
    
    .promo-banner-indicator-modern.active {
        width: 20px;
        opacity: 1;
    }
    
    .promo-banner-image-modern {
        border-radius: 10px;
        max-height: 160px;
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .benefits-banner-image-modern {
        border-radius: 10px;
        max-height: 160px;
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    .products-section-modern {
        padding: 2rem 0;
    }
    
    .section-header-modern {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title-modern {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
        text-align: center;
    }
    
    .section-subtitle-modern {
        font-size: 0.85rem;
        margin-bottom: 0;
        padding: 0;
        color: #6B7280;
        text-align: center;
    }
    
    .product-card-modern {
        flex: 0 0 90vw;
        width: 90vw;
        max-width: 320px;
        padding: 1rem;
        margin: 0 0.75rem;
        border-radius: 12px;
        border: 1px solid #E5E7EB;
        background: #FFFFFF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .product-image-modern {
        height: 150px;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image-modern img {
        max-height: 150px;
        width: auto;
        object-fit: contain;
    }
    
    .product-title-modern {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        font-weight: 700;
        text-align: center;
    }
    
    .product-subtitle-modern {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        min-height: auto;
        line-height: 1.4;
        color: #6B7280;
        text-align: center;
    }
    
    .kit-selector-modern {
        gap: 0.5rem;
        margin: 0.75rem 0;
        justify-content: center;
    }
    
    .kit-btn-modern {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 75px;
        min-height: 40px;
        font-weight: 700;
    }
    
    .product-price-modern {
        margin: 0.75rem 0;
    }
    
    .price-new-modern {
        font-size: 1.8rem;
    }
    
    .price-old-modern {
        font-size: 0.85rem;
    }
    
    .price-installment-modern {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
    
    .product-btn-modern {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.75rem;
        width: 100%;
        min-height: 48px;
        font-weight: 700;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-guarantee-modern {
        font-size: 0.75rem;
        margin-top: 0.5rem;
        line-height: 1.4;
        padding: 0;
        color: #6B7280;
        text-align: center;
    }
    
    .product-badge-modern {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    .social-proof-modern {
        padding: 1rem 0;
        background: #F9FAFB;
    }
    
    .social-proof-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .social-proof-item-modern {
        padding: 0.85rem 0.5rem;
        background: #FFFFFF;
        border-radius: 10px;
        border: 1px solid #E5E7EB;
        text-align: center;
    }
    
    .social-proof-number-modern {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        font-weight: 700;
        color: #EC4899;
    }
    
    .social-proof-text-modern {
        font-size: 0.75rem;
        line-height: 1.4;
        color: #6B7280;
    }
    
    .testimonials-section-modern {
        padding: 2rem 0;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card-modern {
        padding: 1.25rem;
    }
    
    .testimonial-avatar-modern {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info-modern h4 {
        font-size: 1rem;
    }
    
    .testimonial-text-modern {
        font-size: 0.9rem;
    }
    
    .results-gallery-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    /* Carrossel de Resultados Mobile */
    .results-carousel-wrapper-modern {
        margin: 2rem auto 1.5rem;
        padding: 0 0.5rem;
    }
    
    .results-carousel-container-modern {
        height: 350px;
        border-radius: 15px;
    }
    
    .result-slide-modern img {
        border-radius: 15px;
    }
    
    .results-carousel-indicators-modern {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .carousel-indicator-modern {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator-modern.active {
        width: 24px;
    }
    
    /* Vídeo Mobile */
    .results-video-wrapper-modern {
        margin: 2rem auto;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .video-title-modern {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .video-wrapper-modern {
        border-radius: 15px;
        padding-bottom: 177.78%; /* 9:16 aspect ratio - formato vertical 1080x1920 */
        max-width: 100%;
        width: 100%;
    }
    
    .results-video-modern {
        border-radius: 15px;
    }
    
    .security-section-modern {
        padding: 2rem 0;
    }
    
    .security-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .security-item-modern {
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .security-icon-modern {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .security-text-modern {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .sobre-section-modern {
        padding: 2rem 0;
    }
    
    .sobre-content-modern {
        padding: 0 1rem;
    }
    
    .sobre-text-modern {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .swipe-hint-modern {
        margin-top: 1rem;
        padding: 0.75rem;
    }
    
    .swipe-icon {
        font-size: 1.1rem;
    }
    
    .swipe-text {
        font-size: 0.85rem;
    }
    
    /* ========================================
       Rodapé Mobile com Acordeões
       ======================================== */
    
    .footer-modern {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content-modern {
        display: none;
    }
    
    .footer-accordion-modern {
        display: block;
    }
    
    .footer-accordion-header {
        padding: 0.6rem 0;
    }
    
    .footer-accordion-header h3 {
        font-size: 0.9rem;
    }
    
    .footer-section-modern {
        margin-bottom: 0;
    }
    
    .footer-section-modern p,
    .footer-section-modern a {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .footer-section-modern ul li {
        margin-bottom: 0.35rem;
    }
    
    .footer-bottom-modern {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
    
    .payment-brands-modern {
        gap: 0.4rem;
        margin: 0.75rem 0;
    }
    
    .payment-brand-item {
        width: 45px;
        height: 28px;
    }
    
    .payment-brand-text {
        font-size: 0.7rem;
    }
    
    .security-badges-footer {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .security-badge-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .social-links-footer {
        gap: 0.6rem;
        margin: 0.75rem 0;
    }
    
    .social-link-item {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .footer-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .whatsapp-float-modern {
        width: 56px;
        height: 56px;
        bottom: 1.25rem;
        right: 1rem;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-float-modern svg {
        width: 28px;
        height: 28px;
    }
    
    .swipe-hint-modern {
        font-size: 0.75rem;
        margin-top: 1rem;
        text-align: center;
        color: #9CA3AF;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    body {
        font-size: 14px;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header-container-modern {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .logo-magras-text,
    .logo-trinta-text {
        font-size: 1rem;
    }
    
    .logo-modern img {
        max-height: 30px;
    }
    
    .search-form-modern {
        height: 38px;
    }
    
    .search-input-modern {
        font-size: 0.85rem;
        padding: 0 0.6rem;
    }
    
    .search-btn-modern {
        padding: 0 0.9rem;
        font-size: 0.8rem;
    }
    
    .nav-modern {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .nav-link-modern {
        font-size: 0.8rem;
    }
    
    .hero-modern {
        height: auto;
        min-height: auto;
        padding: 0.75rem 0;
        background: #FFFFFF;
    }
    
    .hero-content-modern {
        padding: 0 0.85rem;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .hero-title-modern {
        font-size: 1.2rem;
        margin-bottom: 0.45rem;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .hero-subtitle-modern {
        font-size: 0.8rem;
        margin-bottom: 0.45rem;
        line-height: 1.5;
        font-weight: 400;
        color: #4B5563;
    }
    
    .hero-cta-modern {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
        min-height: 46px;
        border-radius: 8px;
    }
    
    .hero-cta-modern {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
        font-weight: 800;
        width: 100%;
        max-width: 280px;
    }
    
    .promo-banners-section-modern {
        padding: 0.75rem 0;
    }
    
    .promo-banners-carousel-wrapper-modern {
        padding: 0 0.25rem;
    }
    
    .promo-banners-carousel-track-modern {
        min-height: 180px;
    }
    
    .promo-banners-grid-modern {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4rem !important;
    }
    
    .promo-banner-item-modern {
        width: 100% !important;
        margin-bottom: 0;
        max-width: 100% !important;
    }
    
    .promo-banner-wrapper-modern {
        min-height: 90px !important;
    }
    
    .benefits-banner-wrapper-modern {
        min-height: 90px !important;
    }
    
    .promo-banners-indicators-modern {
        margin-top: 0.75rem;
        gap: 0.4rem;
    }
    
    .promo-banner-indicator-modern {
        width: 8px;
        height: 8px;
    }
    
    .promo-banner-indicator-modern.active {
        width: 20px;
    }
    
    .promo-banner-wrapper-modern {
        border-radius: 10px;
        min-height: 90px;
        height: 100%;
    }
    
    .promo-banner-image-modern {
        border-radius: 8px;
        max-height: 150px;
        width: 100%;
        object-fit: contain;
        display: block;
    }
    
    .benefits-banner-wrapper-modern {
        border-radius: 8px;
        min-height: 90px;
        height: 100%;
    }
    
    .benefits-banner-image-modern {
        border-radius: 8px;
        max-height: 150px;
        width: 100%;
        object-fit: contain;
        display: block;
    }
    
    .products-section-modern {
        padding: 1.25rem 0;
    }
    
    .section-title-modern {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle-modern {
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }
    
    .product-card-modern {
        flex: 0 0 90vw;
        width: 90vw;
        max-width: 300px;
        padding: 0.9rem;
        margin: 0 0.25rem;
    }
    
    .product-image-modern {
        height: 140px;
        margin-bottom: 0.6rem;
    }
    
    .product-image-modern img {
        max-height: 140px;
    }
    
    .product-title-modern {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .product-subtitle-modern {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        min-height: auto;
    }
    
    .kit-selector-modern {
        gap: 0.4rem;
        margin: 0.6rem 0;
    }
    
    .kit-btn-modern {
        padding: 0.55rem 0.9rem;
        font-size: 0.85rem;
        min-width: 70px;
        min-height: 38px;
        font-weight: 700;
    }
    
    .price-new-modern {
        font-size: 1.6rem;
    }
    
    .price-old-modern {
        font-size: 0.8rem;
    }
    
    .price-installment-modern {
        font-size: 0.75rem;
    }
    
    .product-btn-modern {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        margin-top: 0.6rem;
        min-height: 48px;
        font-weight: 800;
    }
    
    .product-guarantee-modern {
        font-size: 0.7rem;
        margin-top: 0.4rem;
        padding: 0 0.25rem;
    }
    
    .product-badge-modern {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .social-proof-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .social-proof-item-modern {
        padding: 0.6rem 0.25rem;
    }
    
    .social-proof-number-modern {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .social-proof-text-modern {
        font-size: 0.7rem;
    }
    
    .testimonials-section-modern {
        padding: 1.5rem 0;
    }
    
    .testimonial-card-modern {
        padding: 1rem;
    }
    
    .testimonial-avatar-modern {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-info-modern h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-text-modern {
        font-size: 0.85rem;
    }
    
    .results-gallery-modern {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    /* Carrossel de Resultados Mobile Pequeno */
    .results-carousel-wrapper-modern {
        margin: 1.5rem auto 1rem;
        padding: 0 0.25rem;
    }
    
    .results-carousel-container-modern {
        height: 300px;
        border-radius: 12px;
    }
    
    .result-slide-modern img {
        border-radius: 12px;
    }
    
    .results-carousel-indicators-modern {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .carousel-indicator-modern {
        width: 8px;
        height: 8px;
    }
    
    .carousel-indicator-modern.active {
        width: 20px;
    }
    
    /* Vídeo Mobile Pequeno */
    .results-video-wrapper-modern {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .video-title-modern {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .video-wrapper-modern {
        border-radius: 12px;
        padding-bottom: 177.78%; /* 9:16 aspect ratio - formato vertical 1080x1920 */
        max-width: 100%;
        width: 100%;
    }
    
    .results-video-modern {
        border-radius: 12px;
    }
    
    .security-section-modern {
        padding: 1.5rem 0;
    }
    
    .security-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .security-item-modern {
        padding: 0.85rem 0.4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .security-icon-modern {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    
    .security-text-modern {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .sobre-section-modern {
        padding: 1.5rem 0;
    }
    
    .sobre-content-modern {
        padding: 0 0.75rem;
    }
    
    .sobre-text-modern {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .swipe-hint-modern {
        margin-top: 0.75rem;
        padding: 0.6rem;
    }
    
    .swipe-icon {
        font-size: 1rem;
    }
    
    .swipe-text {
        font-size: 0.8rem;
    }
    
    .footer-modern {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-accordion-header {
        padding: 0.75rem 0;
    }
    
    .footer-accordion-header h3 {
        font-size: 0.9rem;
    }
    
    .whatsapp-float-modern {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float-modern svg {
        width: 26px;
        height: 26px;
    }
}

/* ========================================
   Animações e Efeitos Chamativos
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    }
}

.product-card-modern {
    animation: fadeIn 0.6s ease-out;
}

.product-card-modern:nth-child(1) { animation-delay: 0.1s; }
.product-card-modern:nth-child(2) { animation-delay: 0.2s; }
.product-card-modern:nth-child(3) { animation-delay: 0.3s; }
.product-card-modern:nth-child(4) { animation-delay: 0.4s; }

/* Efeito de brilho nos botões */
.product-btn-modern {
    position: relative;
    overflow: hidden;
}

.product-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-btn-modern:hover::before {
    left: 100%;
}

/* Animação de pulso para CTAs importantes - removida para evitar distração excessiva */
/* .hero-cta-modern,
.product-btn-modern {
    animation: pulse 2s ease-in-out infinite;
} */

/* Efeito de flutuação para elementos importantes */
.social-proof-item-modern {
    animation: float 3s ease-in-out infinite;
}

.social-proof-item-modern:nth-child(1) { animation-delay: 0s; }
.social-proof-item-modern:nth-child(2) { animation-delay: 0.5s; }
.social-proof-item-modern:nth-child(3) { animation-delay: 1s; }
.social-proof-item-modern:nth-child(4) { animation-delay: 1.5s; }

/* Efeito de brilho para badges */
.product-badge-modern {
    animation: glow 2s ease-in-out infinite;
}

/* Efeito de entrada para seções */
.testimonials-section-modern,
.products-section-modern {
    animation: slideInUp 0.8s ease-out;
}

/* ========================================
   Otimizações de Performance
   ======================================== */

.product-card-modern,
.product-btn-modern,
.hero-cta-modern {
    will-change: transform;
}

/* Otimizações de renderização para mobile */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Melhorar performance de scroll em mobile */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Otimizar imagens */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
}

/* Reduzir repaints em animações */
@media (prefers-reduced-motion: no-preference) {
    .product-card-modern,
    .product-btn-modern {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
}

/* ========================================
   Carrossel Automático de Resultados
   ======================================== */

.results-carousel-wrapper-modern {
    position: relative;
    margin: 3rem auto 2rem;
    max-width: 900px;
    padding: 0 1rem;
}

.results-carousel-container-modern {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--color-gray-100);
}

.results-carousel-track-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.result-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95);
    z-index: 1;
}

.result-slide-modern.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.result-slide-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Indicadores do Carrossel */
.results-carousel-indicators-modern {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-indicator-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.carousel-indicator-modern:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.carousel-indicator-modern.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
    border-color: var(--color-primary);
}

/* ========================================
   Vídeo de Resultados
   ======================================== */

.results-video-wrapper-modern {
    margin: 3rem auto;
    max-width: 500px;
    padding: 0 1rem;
}

.results-video-container-modern {
    text-align: center;
}

.video-title-modern {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.video-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.video-wrapper-modern {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 177.78%; /* 9:16 aspect ratio (1920/1080 = 1.7778) - formato vertical */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: var(--color-gray-900);
    transition: var(--transition);
}

.video-wrapper-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.results-video-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ========================================
   Galeria de Resultados (Fallback)
   ======================================== */

.results-gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-image-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1;
    background: var(--color-gray-100);
}

.result-image-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.result-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.result-image-modern:hover img {
    transform: scale(1.05);
}

/* ========================================
   Seção Sobre
   ======================================== */

.sobre-section-modern {
    padding: 4rem 0;
    background: var(--color-white);
}

.sobre-content-modern {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.sobre-text-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
}

.sobre-text-modern strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* ========================================
   Modal de Cupom
   ======================================== */

.coupon-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.coupon-modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    text-align: center;
}

.coupon-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-gray-600);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    line-height: 1;
}

.coupon-modal-close:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
    transform: rotate(90deg);
}

.coupon-screen {
    display: none;
}

.coupon-screen.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.coupon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.coupon-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

.coupon-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.coupon-subtitle {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.coupon-offer-text {
    font-size: 1.1rem;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coupon-offer-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.coupon-code-box {
    background: linear-gradient(135deg, #FCE7F3 0%, #FFFFFF 100%);
    border: 2px dashed var(--color-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.coupon-code-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-600);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.coupon-code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coupon-btn-primary {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
}

.coupon-btn-secondary {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--color-gray-600);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--color-gray-300);
    cursor: pointer;
}

.coupon-btn-secondary:hover {
    border-color: var(--color-gray-600);
    color: var(--color-gray-900);
    background: var(--color-gray-50);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .coupon-modal-container {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .coupon-title {
        font-size: 1.5rem;
    }
    
    .coupon-subtitle {
        font-size: 0.9rem;
    }
    
    .coupon-offer-text {
        font-size: 1rem;
    }
    
    .coupon-code {
        font-size: 1.2rem;
    }
    
    .coupon-icon,
    .coupon-success-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .coupon-modal-container {
        padding: 1.5rem 1rem;
        max-width: 95%;
    }
    
    .coupon-title {
        font-size: 1.3rem;
    }
    
    .coupon-code-box {
        padding: 1rem;
    }
    
    .coupon-code {
        font-size: 1rem;
    }
}

/* ========================================
   Acessibilidade
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   Responsivo - Galeria e Sobre
   ======================================== */

@media (max-width: 768px) {
    .results-gallery-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sobre-section-modern {
        padding: 2rem 0;
    }
    
    .sobre-text-modern {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .results-gallery-modern {
        grid-template-columns: 1fr;
    }
    
    .sobre-text-modern {
        font-size: 0.95rem;
    }
}

/* ========================================
   ELEMENTOS DE CONVERSÃO OTIMIZADOS
   ======================================== */

/* Notificações de Compra Recente */
.purchase-notifications-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
    padding: 0.75rem 1rem;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    text-align: center;
}

.purchase-notifications-bar.active {
    transform: translateY(0);
}

.purchase-notification-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: slideInDown 0.5s ease-out;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    font-weight: 600;
}

/* Notificação Mobile - Pequena e Discreta ao Lado */
@media (max-width: 768px) {
    .purchase-notifications-bar {
        top: auto;
        bottom: 70px;
        left: auto;
        right: 8px;
        width: auto;
        max-width: 260px;
        min-width: 200px;
        padding: 0.5rem 0.65rem;
        border-radius: 10px;
        transform: translateX(120%);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #E5E7EB;
    }
    
    .purchase-notifications-bar.active {
        transform: translateX(0);
    }
    
    .purchase-notification-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        animation: slideInRight 0.35s ease-out;
    }
    
    .notification-icon {
        font-size: 0.85rem;
        opacity: 0.9;
        flex-shrink: 0;
    }
    
    .notification-text {
        font-weight: 400;
        font-size: 0.7rem;
        line-height: 1.4;
        color: #374151;
        flex: 1;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .notification-text strong {
        font-weight: 600;
        color: #1F2937;
    }
    
    /* Remover ajuste do header no mobile quando notificação está ativa */
    body:has(.purchase-notifications-bar.active) .header-modern {
        top: 0;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .purchase-notifications-bar {
        bottom: 70px;
        right: 8px;
        max-width: 240px;
        min-width: 180px;
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .notification-text {
        font-size: 0.65rem;
    }
    
    .notification-text strong {
        font-size: 0.7rem;
    }
}

/* CTA Fixo no Scroll */
.scroll-cta-fixed {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.scroll-cta-fixed.visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.scroll-cta-button {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.35);
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.scroll-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(147, 51, 234, 0.45);
}

/* Contagem Regressiva */
.countdown-banner {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    margin: 0.75rem 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FBBF24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.countdown-timer span {
    display: inline-block;
    min-width: 2.5rem;
    text-align: center;
}

/* Estoque Limitado */
.stock-counter {
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Seção de Benefícios */
.benefits-section-modern {
    padding: 3rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card-modern {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.benefit-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.15);
    border-color: var(--color-primary);
}

.benefit-icon-modern {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1;
}

.benefit-title-modern {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.benefit-text-modern {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Responsivo - Seção de Benefícios */
@media (max-width: 768px) {
    .benefits-section-modern {
        padding: 2rem 0;
    }
    
    .benefits-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .benefit-card-modern {
        padding: 1.25rem 1rem;
    }
    
    .benefit-icon-modern {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-title-modern {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-text-modern {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .benefits-section-modern {
        padding: 1.5rem 0;
    }
    
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .benefit-card-modern {
        padding: 1rem 0.875rem;
    }
    
    .benefit-icon-modern {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-title-modern {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .benefit-text-modern {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* FAQ Section */
.faq-section-modern {
    padding: 4rem 0;
    background: var(--color-white);
}

.faq-container-modern {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Pop-up de Saída (Exit Intent) */
.exit-intent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.exit-intent-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-gray-600);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    line-height: 1;
}

.exit-intent-close:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
    transform: rotate(90deg);
}

.exit-intent-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.exit-intent-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.exit-intent-text {
    font-size: 1.1rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.exit-intent-subtext {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.exit-intent-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-intent-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.exit-intent-skip {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--color-gray-600);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--color-gray-300);
    cursor: pointer;
}

.exit-intent-skip:hover {
    border-color: var(--color-gray-600);
    color: var(--color-gray-900);
    background: var(--color-gray-50);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo - Elementos de Conversão */
@media (max-width: 768px) {
    .scroll-cta-fixed {
        bottom: 70px;
    }
    
    .scroll-cta-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .countdown-banner {
        padding: 0.6rem 0.85rem;
        margin: 0.4rem 0;
        border-radius: 8px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        margin-bottom: 0.35rem;
    }
    
    .countdown-timer {
        font-size: 1.3rem;
    }
    
    .stock-counter {
        margin: 0.3rem 0 !important;
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem;
        background: #FEF2F2;
        border-radius: 6px;
        border-left: 3px solid #DC2626;
    }
    
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card-modern {
        padding: 1.5rem;
    }
    
    .benefit-icon-modern {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .exit-intent-content {
        padding: 2rem 1.5rem;
    }
    
    .exit-intent-title {
        font-size: 1.5rem;
    }
    
    .exit-intent-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-cta-fixed {
        bottom: 65px;
    }
    
    .scroll-cta-button {
        padding: 0.6rem 1.1rem;
        font-size: 0.75rem;
    }
    
    .countdown-timer {
        font-size: 1.2rem;
    }
    
    .purchase-notifications-bar {
        bottom: 65px;
        right: 6px;
        max-width: 240px;
        min-width: 180px;
        padding: 0.45rem 0.6rem;
    }
    
    .notification-text {
        font-size: 0.65rem;
    }
    
    .notification-icon {
        font-size: 0.75rem;
    }
    
    .exit-intent-content {
        padding: 1.5rem 1rem;
    }
    
    .exit-intent-icon {
        font-size: 3rem;
    }
    
    .exit-intent-title {
        font-size: 1.3rem;
    }
}

