/* ========================================
   MODIFICAÇÕES DE DESIGN SOLICITADAS
   ======================================== */

/* 1. Design Assimétrico na Seção Principal (Hero/Secret Section) */
/* Aparentemente, a seção principal é a .secret-section */
.secret-section {
    /* Manter estilos existentes */
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000; /* Garantir fundo preto */
}

.secret-container {
    /* Manter estilos existentes */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 50px;
}

/* Layout Unificado em um Único Quadrado */
.unified-hero-box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    gap: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 3px solid #D4AF37;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), inset 0 0 60px rgba(255, 215, 0, 0.1);
}

.unified-hero-left {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unified-hero-right {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 20px;
}

/* Garantir cores originais no texto do hero unificado */
.unified-hero-right h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #FFD700 !important;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.unified-hero-right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #FFD700 !important;
    margin-bottom: 15px;
}

.unified-hero-right p {
    color: #FFFFFF !important;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.unified-hero-right .benefit-box h3 {
    color: #FFD700 !important;
}

.unified-hero-right .benefit-box p {
    color: #FFFFFF !important;
}

/* Ajuste para mobile */
@media (max-width: 880px) {
    .unified-hero-box {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .unified-hero-left, .unified-hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 2. Efeito "Corte Limpo" no final da seção principal */
/* O corte limpo será feito usando um gradiente transparente no final da .secret-section */
.secret-section {
    /* Manter estilos existentes */
    position: relative; /* Necessário para o pseudo-elemento */
    overflow: hidden; /* Garante que o gradiente não vaze */
}

.secret-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Altura do efeito de fade */
    /* Gradiente de transparente para o fundo (preto) */
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none; /* Permite clicar em elementos abaixo */
}

/* ========================================
   CÓDIGO CSS ORIGINAL (APENAS O INÍCIO PARA CONTEXTO)
   ======================================== */
/* O restante do código CSS original deve ser mantido abaixo */
/* ... (Conteúdo do style.css original) ... */
/* Reset e Estilos Gerais */
body, h1, h2, h3, p, ul, li, a, button {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
}

body {
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #0f0f1e 50%, #000000 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Partículas de brilho flutuantes */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

/* Botões com efeito de pulso */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 60px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 60px rgba(212, 175, 55, 0.6); }
}

/* --- Seção 1: O Segredo (TOPO) --- */
.secret-section {
    background-color: #0a0a0a;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("../img/ali3.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.secret-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.secret-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.secret-left, .secret-right {
    flex: 1;
    min-width: 45%;
    padding: 30px;
    border: 3px solid #D4AF37;
    border-radius: 15px;
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.secret-left::before, .secret-right::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.secret-left {
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(212, 175, 55, 0.8); }
}

.diamond-icon {
    font-size: 1.2rem;
    vertical-align: middle;
    margin: 0 10px;
}

.secret-image {
    position: relative;
}

.secret-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 3px solid #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.secret-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.secret-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.secret-content p {
    margin-bottom: 25px;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.benefit-box {
    text-align: left;
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefit-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #FFD700;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.benefit-box h3 {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 5px;
    text-align: left;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-secret {
    margin-top: 25px;
    align-self: flex-start;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* --- Seção 2: Hero --- */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url("../img/ali2.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* --- Seção 3: Especialistas --- */
.specialists-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.specialists-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

.anvisa-badge {
    display: inline-block;
    border: 3px solid #D4AF37;
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* --- Seção 4: Sinta a Diferença, Veja o Brilho --- */
.difference-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.difference-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.models-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.model-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    border: 3px solid #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transition: all 0.3s ease;
}

.model-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
}

/* --- Seção 5: Oferta Final --- */
.final-offer-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.offer-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.offer-text {
    margin-bottom: 25px;
}

.price-display {
    margin-bottom: 25px;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); 
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 60px rgba(212, 175, 55, 0.8); 
        transform: scale(1.05);
    }
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    margin: 10% auto;
    padding: 30px;
    border: 3px solid #D4AF37;
    width: 80%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.close {
    color: #FFD700;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #FFD700;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background-color: #1a1a2e;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    color: #FFFFFF;
}

#calculateShipping {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

#calculateShipping:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

#calculateShipping:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#listaFrete, #resumoPedido {
    margin-top: 20px;
}

#listaFrete h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.opcao-frete {
    background-color: #1a1a2e;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.opcao-frete:hover {
    background-color: #252540;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.opcao-frete input[type="radio"] {
    width: auto;
    margin: 0;
}

.opcao-frete label {
    color: #FFFFFF;
    cursor: pointer;
    flex: 1;
}

.resumo-pedido {
    background-color: #1a1a2e;
    border: 3px solid #D4AF37;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.resumo-pedido h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.resumo-pedido p {
    color: #FFFFFF;
    margin: 8px 0;
}

.resumo-pedido hr {
    border: none;
    border-top: 1px solid #D4AF37;
    margin: 15px 0;
}

.resumo-pedido .total {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 700;
}

/* --- Rodapé --- */
.site-footer {
    background-color: #000000;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 2px solid #D4AF37;
}

.footer-small {
    font-size: 0.8rem;
    color: #BDBDBD;
}

/* Responsividade */
@media (max-width: 880px) {
    .secret-container {
        flex-direction: column;
        gap: 20px;
    }
    .secret-left, .secret-right {
        min-width: 100%;
        padding: 20px;
    }
    .secret-left {
        order: 0;
    }
    .secret-right {
        order: 1;
    }

    .secret-content h2,
    .secret-content p,
    .benefits-grid,
    .benefit-box h3,
    .cta-secret {
        text-align: center;
        align-self: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .secret-content h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
    
    .secret-image img {
        max-width: 250px;
    }
    
    .product-header {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .price-value {
        font-size: 3rem;
    }
}





/* ========================================
   SEÇÃO DE LOGOS - DESIGN MODERNO E MAIOR
   ======================================== */

.payment-logos-section {
    margin: 50px auto;
    padding: 40px 30px;
    max-width: 1000px;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(218, 165, 32, 0.15) 50%,
        rgba(255, 215, 0, 0.15) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.payment-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.payment-subtitle {
    font-size: 18px;
    color: #E0E0E0;
    margin-bottom: 35px;
    font-weight: 300;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 35px;
    justify-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
}

.logo-item:hover {
    transform: translateY(-15px) scale(1.08);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.6);
}

.logo-item img {
    height: 70px;
    width: auto;
    filter: brightness(1.2) contrast(1.15);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1.4) contrast(1.3);
    transform: scale(1.1);
}

.logo-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.security-badges .badge {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 25px;
    color: #4ade80;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.security-badges .badge:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.7);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .payment-logos-section {
        padding: 30px 15px;
        margin: 30px 10px;
    }
    
    .payment-title {
        font-size: 22px;
    }
    
    .payment-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .logo-item {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .logo-item img {
        height: 45px;
        max-width: 80%;
        object-fit: contain;
    }
    
    .logo-label {
        font-size: 11px;
        margin-top: 8px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }
    
    .security-badges .badge {
        font-size: 11px;
        padding: 6px 12px;
    }

        padding: 10px 20px;
    }
}

/* ============================================================================
   BOTÃO FINALIZAR COMPRA - SUPER CHAMATIVO
   ============================================================================ */
button[type="submit"],
.btn-finalizar-compra {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px 50px !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%) !important;
    background-size: 200% 200%;
    border: 4px solid #FFFFFF !important;
    border-radius: 60px !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s ease;
    animation: gradient-shift 3s ease infinite, pulse-glow 2s ease-in-out infinite;
    z-index: 10;
}

/* Animação de gradiente em movimento */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animação de pulso com brilho */
@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.5),
            0 10px 40px rgba(0, 0, 0, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 1),
            0 0 100px rgba(255, 215, 0, 0.8),
            0 15px 50px rgba(0, 0, 0, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.03);
    }
}

/* Efeito de brilho ao passar o mouse */
button[type="submit"]::before,
.btn-finalizar-compra::before {
    content: ;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 60%,
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* Hover ainda mais impactante */
button[type="submit"]:hover,
.btn-finalizar-compra:hover {
    transform: translateY(-8px) scale(1.08) !important;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 1),
        0 0 120px rgba(255, 215, 0, 0.9),
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(255, 255, 255, 0.6) !important;
    border-color: #FFD700 !important;
    animation: gradient-shift 1.5s ease infinite, pulse-glow 1s ease-in-out infinite;
}

/* Estado ativo (ao clicar) */
button[type="submit"]:active,
.btn-finalizar-compra:active {
    transform: translateY(-4px) scale(1.05) !important;
}

/* Texto com sombra para melhor legibilidade */
button[type="submit"],
.btn-finalizar-compra {
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    button[type="submit"],
    .btn-finalizar-compra {
        font-size: 20px !important;
        padding: 20px 40px !important;
        max-width: 90%;
    }
}

/* Adicionar ícone de seta para indicar ação */
button[type="submit"]::after,
.btn-finalizar-compra::after {
    content: " 🛒";
    font-size: 28px;
    margin-left: 10px;
    animation: bounce-icon 1s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ============================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.5),
        0 8px 40px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.7),
        0 12px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animação de pulso */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.5),
            0 8px 40px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(37, 211, 102, 0.7),
            0 8px 50px rgba(37, 211, 102, 0.5),
            0 0 0 15px rgba(37, 211, 102, 0.1),
            0 0 0 30px rgba(37, 211, 102, 0.05);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
}

/* Tooltip ao passar o mouse (opcional) */
.whatsapp-float::before {
    content: "Fale conosco!";
    position: absolute;
    right: 80px;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 70px;
    border: 8px solid transparent;
    border-left-color: #25D366;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
}

/* Esconder tooltip no mobile */
@media (max-width: 768px) {
    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }
}
/* OTIMIZAÇÕES MOBILE - ADICIONAR NO FINAL DO ARQUIVO CSS EXISTENTE */

/* ========================================
   OTIMIZAÇÃO MOBILE - GRID 2 COLUNAS
   ======================================== */

@media (max-width: 768px) {
    /* Redução geral de padding nas seções */
    .secret-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .specialists-section,
    .difference-section,
    .final-offer-section {
        padding: 40px 0;
    }
    
    /* Container geral mais compacto */
    .container {
        width: 95%;
        padding: 10px 0;
    }
    
    /* Secret Section - Redução de espaçamentos */
    .secret-container {
        gap: 15px;
        padding: 10px;
        min-height: auto;
    }
    
    .secret-left, .secret-right {
        padding: 15px;
        min-width: 100%;
    }
    
    /* Títulos menores no mobile */
    .secret-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .specialists-content h2,
    .difference-content h2,
    .offer-content h2 {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    /* Parágrafos menores */
    .secret-content p,
    .hero-content p,
    .specialists-content p,
    .difference-content p,
    .offer-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    /* GRID 2 COLUNAS para benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .benefit-box {
        padding: 10px;
        text-align: center !important;
    }
    
    .benefit-box h3 {
        font-size: 0.85rem !important;
        margin-bottom: 3px;
        text-align: center !important;
    }
    
    .benefit-box p {
        font-size: 0.75rem;
        margin: 0;
    }
    
    /* Imagem do produto menor */
    .secret-image img {
        max-width: 200px !important;
    }
    
    /* Header do produto */
    .product-header {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }
    
    /* Botões CTA menores */
    .cta-button,
    .cta-secret {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
        margin-top: 15px;
    }
    
    /* Preço menor */
    .price-value {
        font-size: 2.5rem !important;
    }
    
    .price-display {
        margin-bottom: 15px;
    }
    
    /* Badge ANVISA menor */
    .anvisa-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    /* Galeria de modelos - GRID 2 COLUNAS */
    .models-gallery {
        gap: 10px;
        margin-top: 20px;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .model-image img {
        max-width: 100%;
        width: 100%;
    }
    
    /* Seção de logos de pagamento - GRID 2 COLUNAS */
    .payment-logos-section {
        padding: 20px 10px;
        margin: 20px 5px;
    }
    
    .payment-title {
        font-size: 18px !important;
        margin-bottom: 8px;
    }
    
    .payment-subtitle {
        font-size: 12px !important;
        margin-bottom: 15px;
    }
    
    .payment-logos {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .logo-item {
        padding: 12px 8px;
        min-height: 100px;
    }
    
    .logo-item img {
        height: 40px !important;
    }
    
    .logo-label {
        font-size: 10px !important;
    }
    
    .security-badges {
        gap: 6px;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .security-badges .badge {
        font-size: 10px !important;
        padding: 5px 10px !important;
    }
    
    /* Botão finalizar compra otimizado */
    button[type="submit"],
    .btn-finalizar-compra {
        padding: 18px 35px !important;
        font-size: 18px !important;
        margin: 20px auto;
    }
    
    /* Modal mais compacto */
    .modal-content {
        width: 90%;
        padding: 20px;
        margin: 20% auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    /* Formulário mais compacto */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    /* Opções de frete mais compactas */
    .opcao-frete {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .opcao-frete label {
        font-size: 0.85rem;
    }
    
    /* Resumo do pedido */
    .resumo-pedido {
        padding: 15px;
        margin-top: 15px;
    }
    
    .resumo-pedido h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .resumo-pedido p {
        font-size: 0.9rem;
        margin: 5px 0;
    }
    
    .resumo-pedido .total {
        font-size: 1.1rem;
    }
    
    /* Rodapé mais compacto */
    .site-footer {
        padding: 15px 0;
        margin-top: 20px;
    }
    
    .footer-small {
        font-size: 0.7rem;
    }
    
    /* Garantia de texto menor */
    .guarantee-text {
        font-size: 0.8rem !important;
        margin-top: 15px;
    }
    
    /* Ajustes gerais de alinhamento */
    .secret-content h2,
    .secret-content p,
    .cta-secret {
        text-align: center !important;
        align-self: center !important;
    }
}

/* ========================================
   OTIMIZAÇÃO EXTRA PARA TELAS MUITO PEQUENAS
   ======================================== */

@media (max-width: 480px) {
    /* Títulos ainda menores */
    .secret-content h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .specialists-content h2,
    .difference-content h2,
    .offer-content h2 {
        font-size: 1.7rem !important;
    }
    
    /* Parágrafos ainda menores */
    body,
    p {
        font-size: 0.85rem;
    }
    
    /* Benefits ainda mais compactos */
    .benefit-box {
        padding: 8px;
    }
    
    .benefit-box h3 {
        font-size: 0.75rem !important;
    }
    
    .benefit-box p {
        font-size: 0.7rem;
    }
    
    /* Imagem do produto ainda menor */
    .secret-image img {
        max-width: 180px !important;
    }
    
    /* Botões ainda menores */
    .cta-button,
    .cta-secret {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Preço ainda menor */
    .price-value {
        font-size: 2rem !important;
    }
    
    /* Logos de pagamento ainda menores */
    .logo-item img {
        height: 35px !important;
    }
    
    /* Botão finalizar compra */
    button[type="submit"],
    .btn-finalizar-compra {
        padding: 15px 30px !important;
        font-size: 16px !important;
    }
}
/* ========================================
   OTIMIZAÇÃO DESKTOP - REDUÇÃO DE ESPAÇOS
   ======================================== */

/* Otimizações para telas desktop (acima de 880px) */
@media (min-width: 881px) {
    
    /* Secret Section - Reduzir espaçamentos */
    .secret-section {
        padding: 35px 0 !important;
        min-height: auto !important; /* Remove altura forçada */
    }
    
    .secret-container {
        gap: 25px !important;
        padding: 15px !important;
        min-height: auto !important; /* Remove altura forçada */
    }
    
    .secret-left, .secret-right {
        padding: 20px !important;
    }
    
    /* Hero Section - Reduzir altura */
    .hero-section {
        height: 50vh !important;
        min-height: 450px;
    }
    
    /* Specialists Section - Reduzir padding */
    .specialists-section {
        padding: 45px 0 !important;
    }
    
    /* Difference Section - Reduzir padding e margins */
    .difference-section {
        padding: 45px 0 !important;
    }
    
    .models-gallery {
        margin-top: 25px !important;
    }
    
    /* Final Offer Section - Reduzir padding */
    .final-offer-section {
        padding: 45px 0 !important;
    }
    
    /* Payment Logos Section - Reduzir margins e padding */
    .payment-logos-section {
        margin: 30px auto !important;
        padding: 30px 25px !important;
    }
    
    /* Container - Aumentar largura aproveitável */
    .container {
        width: 92% !important;
        padding: 15px 0 !important;
    }
    
    /* Benefits Grid - Reduzir gap */
    .benefits-grid {
        gap: 15px !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .benefit-box {
        padding: 12px !important;
    }
    
    /* Offer Content - Reduzir margins */
    .offer-content h2 {
        margin-bottom: 12px !important;
    }
    
    .offer-text {
        margin-bottom: 20px !important;
    }
    
    .price-display {
        margin-bottom: 20px !important;
    }
    
    /* Secret Content - Reduzir margins */
    .secret-content h2 {
        margin-bottom: 15px !important;
    }
    
    .secret-content p {
        margin-bottom: 20px !important;
    }
    
    /* CTA Buttons - Reduzir margin */
    .cta-secret {
        margin-top: 20px !important;
    }
    
    /* Hero Content - Reduzir margins */
    .hero-content p {
        margin-bottom: 25px !important;
    }
    
    /* Specialists Content - Reduzir margins */
    .specialists-content h2 {
        margin-bottom: 15px !important;
    }
    
    .anvisa-badge {
        margin-top: 15px !important;
    }
    
    /* Difference Content - Reduzir margins */
    .difference-content h2 {
        margin-bottom: 15px !important;
    }
    
    /* Site Footer - Reduzir padding e margin */
    .site-footer {
        padding: 15px 0 !important;
        margin-top: 30px !important;
    }
    
    /* Modal - Otimizar espaçamento */
    .modal-content {
        padding: 25px !important;
    }
    
    /* Payment Logos Grid - Reduzir gap */
    .payment-logos {
        gap: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .logo-item {
        padding: 20px !important;
    }
    
    /* Security Badges - Reduzir espaçamento */
    .security-badges {
        margin-top: 25px !important;
        padding-top: 25px !important;
        gap: 15px !important;
    }
    
    .security-badges .badge {
        padding: 10px 20px !important;
    }
    
    /* Resumo Pedido - Reduzir padding */
    .resumo-pedido {
        padding: 18px !important;
        margin-top: 18px !important;
    }
    
    /* Form Groups - Reduzir margin */
    .form-group {
        margin-bottom: 18px !important;
    }
    
    /* Opções de Frete - Reduzir padding e margin */
    .opcao-frete {
        padding: 12px !important;
        margin-bottom: 10px !important;
    }
}

/* Otimização extra para telas muito grandes (acima de 1400px) */
@media (min-width: 1401px) {
    /* Em telas grandes, podemos ser um pouco mais generosos */
    .secret-section {
        padding: 40px 0 !important;
    }
    
    .specialists-section,
    .difference-section,
    .final-offer-section {
        padding: 50px 0 !important;
    }
}

/* ========================================
   SEÇÃO DE GALERIA (3x2)
   ======================================== */
.gallery-section {
    padding: 60px 0;
    background-color: #000; /* Fundo preto para combinar com o tema */
    text-align: center;
}

.gallery-content h2 {
    font-size: 2.5rem;
    color: #FFD700; /* Cor de destaque (dourado/amarelo) */
    margin-bottom: 10px;
}

.gallery-subtitle {
    color: #AAA;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 30px;
    margin-top: 30px;
}

.media-item {
    background-color: #111; /* Fundo escuro para o item */
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.media-placeholder {
    width: 100%;
    /* Proporção 16:9 para vídeos, ou 4:3 para imagens, vamos usar 4:3 para o layout */
    padding-top: 75%; /* 4/3 = 1.333 -> 75% */
    background-color: #222;
    border: 2px solid #FFD700;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-type-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
}

.media-title {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.media-info {
    color: #AAA;
    font-size: 0.9rem;
}

/* Ajuste para tablets e mobile */
@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .media-grid {
        grid-template-columns: 1fr; /* 1 coluna em mobile */
    }
    .gallery-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   CORREÇÃO DA PROPORÇÃO DAS IMAGENS/VÍDEOS NA GALERIA
   ======================================== */
.media-placeholder {
    width: 100%;
    padding-top: 0 !important; /* Remove o padding-top fixo */
    background-color: #222;
    border: 2px solid #FFD700;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 300px; /* Altura mínima para manter consistência */
}

.media-placeholder img,
.media-placeholder video {
    width: 100%;
    height: auto;
    object-fit: contain; /* Mantém a proporção sem cortar */
    display: block;
    max-height: 400px; /* Altura máxima para não ficar muito grande */
}

/* Ajuste para mobile - reduzir altura máxima */
@media (max-width: 600px) {
    .media-placeholder {
        min-height: 200px;
    }
    
    .media-placeholder img,
    .media-placeholder video {
        max-height: 300px;
    }
}

/* ========================================
   MELHORIAS NO BADGE DA ANVISA
   ======================================== */
.anvisa-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.anvisa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anvisa-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

.anvisa-badge span {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* ========================================
   CORREÇÃO DE CORES - CONSISTÊNCIA DA PALETA
   ======================================== */
.media-title {
    color: #FFD700 !important;
    font-weight: 700;
    text-transform: uppercase;
}

.media-info {
    color: #FFFFFF;
}

/* Garantir que todos os h3 da galeria sejam dourados */
.gallery-section h3 {
    color: #FFD700 !important;
}

/* ========================================
   LAZY LOADING DE VÍDEOS - PERFORMANCE
   ======================================== */
.media-placeholder video {
    cursor: pointer;
    position: relative;
}

.media-placeholder video[poster] {
    background-color: #000;
}

/* Estilo para o botão de play que aparece sobre o poster */
.media-placeholder video::-webkit-media-controls-play-button {
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
}

.media-placeholder video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

/* ========================================
   VIDEO OVERLAY THUMBNAILS
   ======================================== */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    /* background: #000; */
}

.video-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.lazy-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #FFD700;
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.3);
    z-index: 9999;
    padding: 20px;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #FFD700;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.cookie-text p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FFD700;
}

.cookie-btn-decline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFA500;
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 36px;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   CORREÇÃO SEÇÃO "O LISO PERFEITO, REVELADO"
   ======================================== */
.offer-section {
    background-image: url('../img/ali1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #FFD700;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.offer-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ========================================
   CORREÇÃO HERO - ALTURA E TÍTULO LUXUOSO
   ======================================== */

/* Garantir que o hero ocupe 100vh sem cortes */
.secret-section {
    min-height: 100vh !important;
    padding: 80px 0 !important;
}

/* Título principal (h1) com fonte de luxo e efeitos dourados */
.secret-right h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .secret-right h1 {
        font-size: 2.2rem !important;
        letter-spacing: 1px !important;
    }
}

/* ========================================
   CORREÇÃO TÍTULO - CONTRASTE E SIMETRIA
   ======================================== */

/* Sobrescrever o h1 anterior com melhor legibilidade */
.secret-right h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
    /* Remover gradiente transparente para melhor legibilidade */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFD700 !important;
    background-clip: unset !important;
    /* Sombra forte preta para contraste máximo */
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.4) !important;
    /* Remover animação shimmer */
    animation: none !important;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .secret-right h1 {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }
}

/* Garantir que os títulos e descrições dos vídeos sejam exibidos */
.media-item .media-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #FFD700 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
}

.media-item .media-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding: 0 10px !important;
}

/* ===== BANNER DE COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #FFD700;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(255, 215, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text strong {
    display: block;
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cookie-text p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cookie-decline:hover {
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ===== TÍTULOS DOS VÍDEOS ===== */
.media-item .media-title {
    color: #FFD700 !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    letter-spacing: 1px !important;
}

.media-item .media-info {
    color: #fff !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
