/* ==========================================================================
   RESET & CONFIGURAÇÕES BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --brand-bg-light: #FCEAEB;  /* O rosa suave de fundo da marca */
    --brand-gold: #C5A059;      /* O dourado fosco elegante da logo */
    --brand-dark: #2D2525;      /* Marrom/Cinza bem escuro para alta legibilidade sem ser preto bruto */
    --brand-pink: #E08B9B;      /* Rosa de realce para botões secundários e badges */
    --whatsapp-color: #25d366;  /* Verde oficial para o botão de ação principal */
}

body {
    background-color: #bbc0c3;  /* ALTERADO: Branco gelo para o fundo geral do site */
    color: var(--brand-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.highlight { color: var(--brand-gold); }

/* ==========================================================================
   SEÇÃO HERO (Apresentação Premium)
   ========================================================================== */
.hero-section {
    background-color: var(--brand-bg-light);
    color: var(--brand-dark);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Container do Vídeo Otimizado */
.video-block {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(224, 139, 155, 0.25);
    border: 3px solid #ffffff;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* Elementos da Copy */
.badge-local {
    background-color: #ffffff;
    color: var(--brand-dark);
    border: 1px solid var(--brand-gold);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-section .subtitle {
    font-size: 16px;
    color: #5A4F4F;
    margin-bottom: 25px;
}

.benefit-bullets {
    margin-bottom: 30px;
}

.bullet {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.bullet .icon {
    color: var(--brand-gold);
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

/* ==========================================================================
   BOTÕES DE CONVERSÃO
   ========================================================================== */
.btn-conversion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whatsapp-color);
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease-in-out;
    animation: pulseAnimation 2s infinite;
}

.btn-conversion:hover {
    transform: scale(1.02);
}

.btn-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Botão Secundário na Vitrine */
.secondary-btn {
    animation: none;
    background-color: var(--brand-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.secondary-btn:hover {
    background-color: #000000;
}

.shipping-notice {
    font-size: 12px;
    color: #7A6E6E;
    margin-top: 12px;
    font-weight: 500;
}

/* ==========================================================================
   SEÇÃO DA VITRINE (ESTRUTURA DO CARROSSEL EM LOOPING)
   ========================================================================== */
.vitrine-section {
    padding: 70px 0;
    background-color: #bbc0c3; /* ALTERADO: Acompanha o branco gelo para não quebrar a seção */
}

.vitrine-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: #4c4141; /* Ajustado levemente para melhor contraste no fundo gelo */
    margin-bottom: 35px;
    font-size: 15px;
}

/* Container principal que esconde os elementos fora da tela */
.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
    display: flex;
}

/* Linha contínua animada por CSS Keyframes */
.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollInfinito 45s linear infinite;
}

/* Pausa o looping quando o cliente passa o mouse por cima (Melhora a UX) */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Cada um dos dois blocos idênticos de 10 cards */
.carousel-group {
    display: flex;
    gap: 22px;
    padding-right: 22px;
}

/* Configuração individual de tamanho fixo para manter consistência */
.carousel-item {
    flex-shrink: 0;
    width: 280px;
}

.card-product {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(45, 37, 37, 0.06);
    position: relative;
    border: 1px solid #F3ECEC;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stock-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(45, 37, 37, 0.85);
    color: #ffffff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-product img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 18px;
    background-color: #ffffff;
}

.card-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--brand-dark);
}

.card-info p {
    font-size: 13px;
    color: #6B5E5E;
}

/* ==========================================================================
   SEÇÃO PASSO A PASSO
   ========================================================================== */
.steps-section {
    padding: 70px 0;
    background-color: #FAFAFA;
    border-top: 1px solid #F0E6E6;
}

.steps-section h2 {
    margin-bottom: 45px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    text-align: center;
    padding: 10px;
}

.step-number {
    width: 44px;
    height: 44px;
    background-color: var(--brand-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 10px rgba(224, 139, 155, 0.3);
}

.step-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-card p {
    font-size: 14px;
    color: #6B5E5E;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--brand-dark);
    color: #A69B9B;
    padding: 35px 0;
    font-size: 13px;
}

.main-footer .cnpj {
    margin-top: 6px;
    color: #736767;
    font-size: 11px;
}

/* ==========================================================================
   KEYFRAMES (ANIMAÇÕES)
   ========================================================================== */

/* Animação do carrossel: Desloca até -50% (fim do 1º grupo) e reseta sem dar salto visual */
@keyframes scrollInfinito {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Animação pulsar do botão do Whatsapp */
@keyframes pulseAnimation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { transform: scale(1.01); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE E ADAPTAÇÕES)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-section {
        padding: 40px 0 50px 0;
    }

    .video-block {
        order: -1; /* Força o vídeo da influencer a aparecer primeiro no celular */
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .bullet {
        justify-content: center;
        font-size: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        border-bottom: 1px solid #EBE2E2;
        padding-bottom: 25px;
    }
    
    .step-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Acelera levemente o carrossel em telas menores para melhor dinâmica visual */
    .carousel-track {
        animation: scrollInfinito 35s linear infinite;
    }
}