/* ============================================
   WEDDING GIFT LANDING PAGE - STYLESHEET
   Paleta: Off-White, Champagne, Dourado, Marrom
   ============================================ */

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Montserrat:wght@600;700&family=Lato:wght@400;500;700&display=swap');

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
    --primary: #FFCC29;
    --secondary: #E8D5C4;
    --tertiary: #C9A663;
    --quaternary: #97825B;
    --quintinario: #9F8F6C;
    --accent: #6B7D6F;
    --background: #F8F6F3;
    --background-gray: #373435;
    --foreground: #5C4A47;
    --white: #FFFFFF;
    --gold: #FDD503;
    --gold-brown: #D2AE6D;
    --light-pink: #F5E6E0;
    --dark-brown: #2A2420;
    --text-muted: #8B7B78;
    --border-color: #D2AE6D;
    
    --font-display: 'Playfair Display', serif;
    --font-subtitle: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.header .container {
    padding: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    text-decoration: none;
    display: flex;
     gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    background: linear-gradient(
        to bottom,
        #9F8F6C 0%,    /* Topo */
        #C9A663 50%,   /* Meio */
        #97825B 100%   /* Base */
    );

    /* Aplica o gradiente somente no texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Compatibilidade adicional */
    background-clip: text;
    color: transparent;

}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}


@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--quaternary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--tertiary);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--foreground);
    text-decoration: none;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.botao-premium {
    /* Fundo escuro com leve degradê acetinado */
    background: linear-gradient(
        180deg,
        #2b2325 0%,
        #171214 100%
    );

    /* Texto */
    color: var(--gold-brown) !important;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    
    /* Formato */
    padding: 05px 26px;
    border-radius: 50px;

    /* Comportamento */
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;

    /* Borda dourada metálica */
    border: 2px solid transparent;

    background-image:
        linear-gradient(
            #2b2325,
            #171214
        ),
        linear-gradient(
            135deg,
            #a67c1e 0%,
            #f3e5ab 35%,
            #d4af37 50%,
            #f3e5ab 65%,
            #a67c1e 100%
        );

    background-origin: border-box;
    background-clip: padding-box, border-box;

    /* Sombra */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;

    z-index: 1;
}

/* Faixa de brilho */
.botao-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0)
    );

    transform: skewX(-25deg);
    transition: left 0.8s ease;

    z-index: -1;
}

/* Hover */
.botao-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
    filter: brightness(1.08);
}

/* Movimento do brilho */
.botao-premium:hover::before {
    left: 125%;
}

.botao-premium a {
    text-decoration: none;
    color: var(--gold-brown);
}

/* BOTÃO WHATSAPP START */
.botao-whats {

    /* Fundo WhatsApp */
    background: linear-gradient(
        180deg,
        #25D366 0%,
        #128C7E 100%
    );

    /* Texto */
    color: var(--dark-brown);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    /* Formato */
    padding: 8px 26px;
    border-radius: 50px;

    /* Comportamento */
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;

    /* Borda gradiente verde */
    border: 2px solid transparent;

    background-image:
        linear-gradient(
            #25D366,
            #128C7E
        ),
        linear-gradient(
            135deg,
            #dcffe7 0%,
            #8af5b3 25%,
            #25D366 50%,
            #8af5b3 75%,
            #dcffe7 100%
        );

    background-origin: border-box;
    background-clip: padding-box, border-box;

    /* Sombra */
    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.30),
        0 0 15px rgba(37, 211, 102, 0.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;

    z-index: 1;
}

/* Faixa de brilho */
.botao-whats::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.55),
        rgba(255,255,255,0)
    );

    transform: skewX(-25deg);
    transition: left .8s ease;
    z-index: -1;
}

/* Hover */
.botao-whats:hover {
    transform: translateY(-2px);

    background-image:
        linear-gradient(
            #33CC99,
            #12523D
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #b8ffd0 25%,
            #33CC99 50%,
            #b8ffd0 75%,
            #ffffff 100%
        );

    box-shadow:
        0 12px 35px rgba(51, 204, 153, 0.9),
        0 0 25px rgba(37, 211, 102, 0.35);

    filter: brightness(1.08);
    
    color: #FFF;
}

/* Movimento do brilho */
.botao-whats:hover::before {
    left: 125%;
}
/* BOTÃO WHATSAPP END */




.btn-secondary {
    background: transparent;
    color: var(--quintinario);
    padding: 10px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;

    /* borda branca (como no print) */
    border-color: var(--quintinario);
    backdrop-filter: blur(2px);}

.btn-secondary a {
    text-decoration: none;
    color: var(--quintinario);
}

/* efeito de brilho passando (bem sutil) */
.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* HOVER — aqui está o segredo */
.btn-secondary:hover {
    color: var(--quintinario);
    border-color: var(--quintinario);

    transform: translateY(-2px) scale(1.02);

    /* glow externo dourado (sem preencher fundo) */
    box-shadow:
        0 0 10px rgba(210, 174, 109, 0.4),
        0 0 25px rgba(159, 143, 108, 0.3),
        0 0 45px rgba(151, 130, 91, 0.2);

    /* leve blur de luz */
    filter: brightness(1.2);
}

/* animação da luz */
.btn-secondary:hover::before {
    left: 130%;
}

/* clique */
.btn-secondary:active {
    transform: scale(0.97);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-cta-full a {
    color: var(--dark-brown);
    text-decoration: none;
}

.kit-content .btn-cta-full {
    text-align: center;
    margin: 0 auto;
}

.btn-cta-full {
    width: 60%;
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #ffd700, #b8962e);
    color: #5C4A47;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    /* glow base */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* luz passando */
.btn-cta-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.1)
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* hover */
.btn-cta-full:hover {
    transform: translateY(-2px) scale(1.01);

    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.6),
        0 0 25px rgba(255, 215, 0, 0.4);

    filter: brightness(1.1);
}

/* animação da luz */
.btn-cta-full:hover::before {
    left: 125%;
}

/* clique */
.btn-cta-full:active {
    transform: scale(0.98);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    display: inline-block;
    background-color: #3C9;
    color: var(--dark-brown);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--gold-brown);
}

.btn-email {
    display: inline-block;
    background-color: transparent;
    color: var(--gold-brown);
    padding: 0.55rem 1.5rem;
    border: 2px solid var(--gold-brown);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-email:hover {
    background-color: var(--gold-brown);
    color: var(--dark-brown)
}




/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../imagens/bg_home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
     background: linear-gradient(
        to bottom,
        #9F8F6C 0%,    /* Topo */
        #C9A663 50%,   /* Meio */
        #97825B 100%   /* Base */
    );

    /* Aplica o gradiente somente no texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Compatibilidade adicional */
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-family: var(--font-subtitle);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--quintinario);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-white {
    background-color: white;
    padding: 4rem 0;
}

.section-black {
    background-color: black;
    padding: 4rem 0;
}


.section-black {
    /* Imagem de fundo */
    background-image: url('../imagens/bg_aveludado_preto.jpg');

    /* Faz a imagem cobrir toda a área da seção */
    background-size: cover;

    /* Centraliza a imagem horizontal e verticalmente */
    background-position: center center;

    /* Impede a repetição da imagem */
    background-repeat: no-repeat;

    /* Mantém o fundo fixo durante o scroll (opcional) */
    background-attachment: scroll;

    /* Garante contraste com o conteúdo */
    color: #ffffff;

    /* Espaçamento interno opcional */
    padding: 80px 0;
}


.section-bg {
    background-color: var(--background-gray);
    padding: 4rem 0;
    background-image: url('../imagens/bg_couro_cinza.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;    
    background: linear-gradient(
        to bottom,
        #9F8F6C 0%,    /* Topo */
        #C9A663 50%,   /* Meio */
        #97825B 100%   /* Base */
    );

    /* Aplica o gradiente somente no texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Compatibilidade adicional */
    background-clip: text;
    color: transparent;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-family: var(--font-subtitle);
    font-size: 1.1rem;
    text-align: center;
    color: var(--quaternary);
    margin-bottom: 2rem;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--tertiary), transparent);
    margin: 1.5rem auto 2rem;
    max-width: 300px;
}

/* ============================================
   GRIDS
   ============================================ */

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.grid-3-kit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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



/* ============================================
   CARDS
   ============================================ */

.card {
    border: 1px solid;
    border-image: linear-gradient(
        90deg,
        #F3E5AB,
        #D4AF37,
        #A67C1E
    ) 1;

    
    padding: 0.0rem 0.0rem 1.5rem 0.0rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}


.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--tertiary);
}

.card p {
    color: var(--quaternary);
    font-size: 1.1rem;    
    padding: 0.9rem;
}

/* ============================================
   KIT CARDS
   ============================================ */

.kit-card {
    border: 1px solid;
    border-image: linear-gradient(
        90deg,
        #F3E5AB,
        #D4AF37,
        #A67C1E
    ) 1;

    
    padding: 0.0rem 0.0rem 1.5rem 0.0rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);



    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kit-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/*.kit-premium {
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.05);
}*/


.kit-premium {
    border-color: linear-gradient(135deg, #9F8F6C, #C9A663, #97825B);
    transform: scale(1.05);
    backdrop-filter: blur(10px);
    opacity: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);}


.high-light:hover {
    border-color: linear-gradient(135deg, #9F8F6C, #C9A663, #97825B);
    transform: scale(1.05);
    backdrop-filter: blur(10px);
    opacity: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);}


@media (max-width: 768px) {
    .kit-premium {
        transform: scale(1);
    }
}

.kit-badge {
    background-color: var(--gold-brown);
    color: var(--dark-brown);
    text-align: center;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.kit-image {
    width: 100%;
    overflow: hidden;
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
    transition: transform 0.3s;
}


#kit .kit-image img {
    width: 396px;
    height: 547px;
    object-fit: cover;
    text-align: center;
    transition: transform 0.3s;
}

.kit-card:hover .kit-image img {
    transform: scale(1.1);
}

.kit-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kit-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-brown);
}

.kit-desc {
    color: var(--quaternary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.kit-price {
    margin-bottom: 1rem;
}

.kit-price .price {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--tertiary);
}

.kit-price .original {
    display: block;
    font-size: 0.9rem;
    color: var(--quintinario);
    text-decoration: line-through;
}

.kit-items {
    list-style: none;
    margin-bottom: 25px;
}

.kit-items li {
    padding: 0.3rem 0;
    color: var(--gold-brown);
    font-size: 1rem;
}

#kit .botao-premium {
    text-align: center;
    text-decoration: none;
    width: 45%;
    margin: 0 auto;
}




/* ============================================
   HIGHLIGHT BOXES
   ============================================ */

.highlight-box {
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    margin-top: 2rem;
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
}

.highlight-box p {
    font-size: 1.1rem;
    color: var(--quintinario);
}

.quality-box {    
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(17, 16, 18, 9), #D2AE6D, rgba(17, 16, 18, 9)) 1;}

    

.quality-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.quality-box p {
    font-size: 1.1rem;
    color: var(--quintinario);
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--quintinario);
}

.quality-stats div {
    padding: 1rem;
}

.quality-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.delivery-box {
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
}

.delivery-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary);
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.delivery-options p {
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--quaternary);
}

.delivery-options strong {
    display: block;
    color: var(--quintinario);
    margin-bottom: 0.5rem;
}

.stats-box {
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(17, 16, 18, 9), #D2AE6D, rgba(17, 16, 18, 9)) 1;
}

.stats-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stats-grid div {
    padding: 1rem;
    color: var(--quaternary);
}

.stats-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--tertiary);
    margin-bottom: 0.5rem;
}

/* ============================================
   SOLUÇÃO
   ============================================ */

.solucao-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solucao-item {
    display: flex;
    gap: 1rem;
}

.solucao-item .check {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.solucao-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--tertiary);
}

.solucao-item p {
    color: var(--quaternary);
    font-size: 1.1rem;
}

.solucao-image {
    overflow: hidden;
}

.solucao-image img {
    width: 396px;
    height: 547px;
    display: block;
}

.lista-sem-numeros {
  list-style: none;
  padding-left: 0;
}

/* ============================================
   KIT
   ============================================ */
#kit p {
    color: var(--quaternary);
}

/* ============================================
   STEPS
   ============================================ */

.step {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--quaternary);
    color: var(--dark-brown);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--tertiary);
}

.step p {
    color: var(--quaternary);
    font-size: 1.1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);    
    transition: all 0.3s;
}

.testimonial:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-header strong {
    display: block;
    color: var(--tertiary);
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    color: var(--quaternary);
    font-size: 1rem;
}

.stars {
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--quaternary);
    font-style: italic;
    font-size: 1rem;
}

.social-proof {
    text-align: center;
    margin-top: 2rem;
}

.social-proof p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.ratings {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ratings span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--quaternary);
}

/* ============================================
   PARA QUEM É
   ============================================ */
.occasions-box h3 {
    color: var(--tertiary);
    margin: 0;
    padding: 0;
    text-align: center;
}

.occasions-box p {
    color: var(--quaternary);
    font-size: 1rem;
}

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

.occasions-list div {
    text-align: center;
    color: var(--quaternary);
}

.occasions-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--quintinario);
}

/* ============================================
   OFFER
   ============================================ */

.offer-box {
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;}

.offer-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.offer-box p {
    color: var(--quaternary);
    font-size: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.offer-item {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;}

.offer-item.highlight {
    border: 2px solid var(--primary);
}

.offer-item p {
    color: var(--quaternary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.offer-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--tertiary);
    margin-bottom: 0.5rem;
}

.offer-item span {
    display: block;
    color: var(--foreground);
    font-size: 0.9rem;
}

.countdown {
    margin: 2rem 0;
}

.countdown p {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--quaternary);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.countdown-timer div {
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--quaternary);
}

.countdown-timer span {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--tertiary);
}

.countdown-timer div span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.section-black .botao-premium  {
    padding: 10px 26px;
}


.offer-footer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   BONUS
   ============================================ */

.bonus-box {
    background-color: white;
    border: 2px solid var(--primary);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-top: 2rem;
}

.bonus-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.bonus-list li {
    padding: 0.75rem 0;
    color: var(--foreground);
    display: flex;
    gap: 1rem;
}

/* ============================================
   GUARANTEE
   ============================================ */

.guarantee-card {
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.guarantee-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.guarantee-card li {
    padding: 0.5rem 0;
    color: var(--quaternary);
}

.guarantee-card p {
    color: var(--quaternary);
}

.guarantee-process {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.guarantee-process h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1rem;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.process-step h4 {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-highlight {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(17, 16, 18, 9), #D2AE6D, rgba(17, 16, 18, 9)) 1;   
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;}

.guarantee-highlight p {
    color: var(--quaternary);
    font-size: 1.1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;}

.faq-item {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    overflow: hidden;}

.faq-item button {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
}

.faq-item span {
    color: var(--quaternary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: all 0.3s;
}

.faq-question:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--quintinario);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-contact {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #000;
    border-image: linear-gradient(90deg, rgba(0, 0, 0, 9), #D2AE6D, rgba(0, 0, 0, 9)) 1;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.faq-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.faq-contact p {
    font-size: 1rem;
    color: var(--quaternary);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-final > p:nth-of-type(1) {
    font-size: 1.1rem;
    color: var(--quaternary);
    margin-bottom: 2rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-benefits p {
    color: var(--quintinario);
}


.cta-footer {
    color: var(--quintinario);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.contact-box {
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #111012;
    border-image: linear-gradient(90deg, rgba(17, 16, 18, 9), #D2AE6D, rgba(17, 16, 18, 9)) 1;
}

.contact-box p:first-child {
    margin-bottom: 1rem;
    color: var(--quaternary);
}

.contact-info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info a {
    color: var(--quintinario);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--gold-brown);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: black;
    color: var(--gold-brown);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--gold-brown);
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.footer-section p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--quintinario);}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--quintinario);
}

.footer-section a {
    color: var(--quintinario);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-brown);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9F8F6C, #C9A663, #97825B);
    color: var(--foreground);
    border-radius: 50%;
    font-weight: bold;
}

.social-links a:hover {
    color: var(--dark-brown);
    background: linear-gradient(135deg, #97825B, #C9A663, #373435);
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.payment-badges,
.cert-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-badges span,
.cert-badges span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
    color: var(--quintinario);
}

.footer-copyright a {
    color: var(--quintinario);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--gold-brown);
}



/* ============================================
   UTILITIES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.solucao-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .kit-premium {
        transform: scale(1);
    }

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

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons a {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons button {
        width: 100%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.card,
.kit-card,
.step,
.testimonial {
    animation: fadeIn 0.6s ease-out;
}
