/* ==========================================================================
   RESET E VARIÁVEIS GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-beige: #FFF7E7;
    --bg-sage: #D9DEC6;
    --primary-green: #4A6B38;
    --btn-bright-green: #27AE60; /* Verde brilhante para alta conversão */
    --alert-red: #E63946;
    --text-dark: #2C3E25;
    
    --font-heading: 'Caveat', cursive;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-beige);
    line-height: 1.5;
    width: 100%;
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES GERAIS
   ========================================================================== */
section {
    padding: 2rem 1.5rem;
    width: 100%;
}

.container {
    max-width: 600px; /* Mantém com aspecto de coluna (mobile focus) no Desktop */
    margin: 0 auto;
}

.bg-beige { background-color: var(--bg-beige); }
.bg-sage { background-color: var(--bg-sage); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 2rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }

.img-fluid {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 8px 16px rgba(0,0,0,0.1); }

.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   BOTÕES (CTAS)
   ========================================================================== */
.btn {
    display: block;
    width: 100%;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-green);
    color: #FFF;
    box-shadow: 0 4px 0 #2A401E; /* Botão estilo 3D sutil */
	animation: pulse 2s infinite;
}

.btn-buy {
    background-color: var(--btn-bright-green);
    color: #FFF;
    font-size: 1.4rem;
    box-shadow: 0 4px 0 #1E8449;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   SEÇÕES ESPECÍFICAS
   ========================================================================== */

/* Hero */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 0rem;
}

.logo-cursive {
    font-family: var(--font-heading);
    font-size: 6.5rem; /* Deixa a palavra "saladas" bem grande */
    color: var(--primary-green);
    line-height: 0.65;
    margin-left: -3rem; /* Desloca um pouco para a esquerda para alinhar o peso visual */
    position: relative;
    z-index: 1;
}

.logo-bottom-row {
    display: flex;
    align-items: flex-end;
    margin-top: -0.2rem; /* Puxa o texto de baixo para colar/sobrepor o de cima */
    position: relative;
    z-index: 2;
}

.logo-sans {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF; /* Preenchimento branco */
    -webkit-text-stroke: 2.5px var(--primary-green); /* Borda verde característica da imagem */
    paint-order: stroke fill;
    text-transform: lowercase; /* Força o minúsculo bloco como na imagem */
    line-height: 0.8;
    letter-spacing: -2px; /* Letras mais unidas */
}

.logo-extra {
    font-family: var(--font-heading); /* Usa a mesma fonte cursiva para o estilo manual */
    font-size: 1.8rem;
    color: #1A1A1A; /* Texto mais escuro */
    margin-left: 8px;
    margin-bottom: 2px;
    text-decoration: underline;
    text-decoration-style: solid; 
    border-bottom: 2px solid #1A1A1A; /* Simula as duas linhas da imagem em conjunto com o underline */
    line-height: 0.9;
}

.headline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Benefícios & Dores */
.benefit-list, .pain-list {
    list-style: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 1rem;
}
.benefit-list li, .pain-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
	color: #000000;
}
.icon-check { color: var(--primary-green); font-size: 1.2rem; }
.icon-x { color: var(--alert-red); font-size: 1.4rem; font-weight: bold; }

/* Grid de Receitas e Bônus */
.recipe-grid, .bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.recipe-card, .bonus-card {
    padding: 1rem;
}
.recipe-card h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}
.recipe-card p {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.5rem;
}
.price-strike {
    color: var(--alert-red);
    font-weight: 600;
    text-decoration: line-through;
    margin-top: 0.5rem;
}

.sauce-gallery {
	margin: 1rem;
}

.video-container {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	border: 3px solid #3C342B;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Offer Stack */
.offer-card {
    padding: 2rem 1.5rem;
    background-color: var(--bg-beige);
    border: 3px solid #A8B8A0; /* Linha sólida verde claro */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(74, 107, 56, 0.25); /* Sombra bem destacada com um fundo levemente esverdeado */
    position: relative;
    transform: scale(1.02); /* Mantém o leve destaque da caixa em relação ao resto da tela */
}
.offer-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
}
.deliverables {
    list-style: none;
    font-weight: 600;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.deliverables li {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}
.pricing {
    margin: 1rem 0;
}
.old-price {
    color: var(--alert-red);
    font-weight: 600;
    font-size: 1.1rem;
}
.installments {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-top: 0.5rem;
}
.main-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}
.cash-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.scarcity {
    color: var(--alert-red);
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 1rem;
}
.bio-text {
	margin-top: 1rem;
}

/* ==========================================================================
   CARROSSEL DE DEPOIMENTOS (COM AUTOPLAY E SCROLL SNAP)
   ========================================================================== */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    gap: 15px;
    padding: 20px 5px; /* CORREÇÃO DA SOMBRA: 20px em cima e embaixo para a sombra não ser cortada */
}

.carousel-track::-webkit-scrollbar {
    display: none; 
}

.carousel-slide {
    flex: 0 0 100%; 
    scroll-snap-align: center; 
    display: flex;
    justify-content: center;
}

.carousel-card {
    width: 100%; 
    padding: 10px;
}

.carousel-card img {
    user-select: none; /* Impede a seleção do elemento */
    -webkit-user-drag: none; /* Força o bloqueio no Chrome/Safari */
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(74, 107, 56, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-green);
}

/* FAQ / Acordeão */
.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0rem;
}
.faq-header hr {
    flex-grow: 1;
    border: none;
    border-top: 2px solid var(--primary-green);
    opacity: 0.3;
}
.accordion details {
    border-bottom: 1px solid rgba(74, 107, 56, 0.2);
    padding: 1rem 0;
}
.accordion summary {
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none; /* Remove seta padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
}
.accordion summary::-webkit-details-marker {
    display: none; /* Remove seta Safari/Chrome antigos */
}
.accordion summary::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.accordion details[open] summary::after {
    transform: rotate(180deg);
}
.accordion p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #444;
}