/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    /* Brand Colors - Warm Junina + Health/Trust Green */
    --primary-orange: hsl(20, 100%, 50%);
    --primary-orange-hover: hsl(15, 100%, 45%);
    --primary-yellow: hsl(40, 100%, 52%);
    --primary-gradient: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    
    --health-green-dark: hsl(142, 72%, 20%);
    --health-green-light: hsl(142, 60%, 38%);
    --health-green-hover: hsl(142, 65%, 32%);
    --health-bg-light: hsl(140, 24%, 96%);
    --health-gradient: linear-gradient(135deg, var(--health-green-light) 0%, var(--health-green-dark) 100%);

    /* Neutrals */
    --dark-wood: hsl(20, 24%, 10%); /* Warm dark brown chocolate */
    --dark-wood-light: hsl(20, 20%, 15%);
    --light-cream: hsl(35, 40%, 98%); /* Cozy off-white straw theme */
    --light-gray: hsl(210, 12%, 95%);
    --white: hsl(0, 0%, 100%);
    
    /* Text Colors */
    --text-dark: hsl(20, 24%, 12%);
    --text-light: hsl(35, 20%, 98%);
    --text-muted: hsl(20, 10%, 46%);
    
    /* UI Polish */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(38, 28, 20, 0.08), 0 4px 6px -2px rgba(38, 28, 20, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(38, 28, 20, 0.12), 0 10px 10px -5px rgba(38, 28, 20, 0.06);
    --shadow-glow: 0 10px 30px rgba(255, 111, 0, 0.25);
    --shadow-green-glow: 0 10px 30px rgba(46, 125, 50, 0.15);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle overall texture mimicking delicate straw/canvas */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-gray) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.max-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.spacer-t-30 { margin-top: 30px; }
.spacer-t-40 { margin-top: 40px; }

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.btn-primary.pulse-animation::before {
    animation: lightSweep 3.5s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 111, 0, 0.4);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--health-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green-glow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
    filter: brightness(1.08);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   1. URGENCY BAR (Topo)
   ========================================================================== */
.urgency-bar {
    background-color: var(--dark-wood);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-orange);
}

.bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bar-tag {
    background: var(--primary-orange);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.bar-text {
    margin: 0;
    letter-spacing: 0.2px;
}

.timer-digits {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--primary-yellow);
    background: rgba(255, 193, 7, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-left: 4px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 80px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, hsl(35, 45%, 95%) 0%, var(--light-cream) 100%);
    overflow: hidden;
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.flags-decor {
    width: 100%;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    z-index: 5;
}

.kicker {
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--health-green-light);
    background-color: var(--health-bg-light);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(46, 125, 50, 0.15);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 60%, var(--health-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 400;
}

.subheadline strong {
    color: var(--health-green-light);
}

.hero-actions {
    margin-bottom: 40px;
}

.micro-copy {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.micro-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--health-green-light);
}

.badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(38, 28, 20, 0.08);
    padding-top: 24px;
}

.support-badge {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.badge-icon.green {
    background-color: rgba(46, 125, 50, 0.08);
    color: var(--health-green-light);
}

.badge-icon.orange {
    background-color: rgba(255, 111, 0, 0.08);
    color: var(--primary-orange);
}

.support-badge h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.support-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Hero Book Mockup */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.2) 0%, rgba(255, 255, 255, 0) 75%);
    z-index: -1;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    filter: drop-shadow(15px 25px 35px rgba(38, 28, 20, 0.25));
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-mockup-img:hover {
    transform: translateY(-12px) rotate(2deg) scale(1.04);
    filter: drop-shadow(25px 35px 45px rgba(38, 28, 20, 0.35));
}

.discount-sticker {
    position: absolute;
    top: 40px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-glow);
    transform: rotate(12deg);
    z-index: 10;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    animation: rotateSlow 20s linear infinite;
}

.sticker-off {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
}

.sticker-sub {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   3. SEÇÃO DE PROBLEMA ("O Drama do Arraiá")
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.problem-section {
    background-color: var(--health-bg-light);
    border-top: 1px solid rgba(46, 125, 50, 0.06);
    border-bottom: 1px solid rgba(46, 125, 50, 0.06);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(38, 28, 20, 0.04);
}

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

.card-pain {
    border-top: 4px solid var(--primary-orange);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 87, 34, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(0, 80%, 55%);
    margin-bottom: 24px;
}

.cross-icon {
    width: 24px;
    height: 24px;
}

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

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   4. VITRINE DE RECEITAS
   ========================================================================== */
.product-section {
    background-color: var(--white);
}

.recipe-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recipe-image-placeholder {
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
}

/* Beautiful custom CSS pattern backgrounds for cards */
.maize-pattern {
    background: radial-gradient(var(--primary-yellow) 15%, transparent 16%) 0 0,
                radial-gradient(var(--primary-yellow) 15%, transparent 16%) 8px 8px,
                radial-gradient(rgba(255,255,255,0.1) 15%, transparent 20%) 0 1px,
                radial-gradient(rgba(255,255,255,0.1) 15%, transparent 20%) 8px 9px;
    background-color: hsl(40, 100%, 94%);
    background-size: 16px 16px;
}

.canjica-pattern {
    background: radial-gradient(circle at 100% 150%, hsl(20, 40%, 90%) 24%, var(--light-cream) 25%, var(--light-cream) 28%, hsl(20, 40%, 90%) 29%, hsl(20, 40%, 90%) 36%, var(--light-cream) 36%, var(--light-cream) 40%, transparent 40%, transparent);
    background-color: hsl(20, 40%, 96%);
    background-size: 20px 20px;
}

.pipoca-pattern {
    background: radial-gradient(ellipse at center, rgba(255, 143, 0, 0.1) 0%, rgba(255, 143, 0, 0) 70%);
    background-color: hsl(30, 70%, 96%);
}

.moleque-pattern {
    background: repeating-linear-gradient(45deg, rgba(215, 125, 50, 0.05), rgba(215, 125, 50, 0.05) 10px, rgba(255,255,255,0.9) 10px, rgba(255,255,255,0.9) 20px);
    background-color: hsl(25, 60%, 96%);
}

.arroz-pattern {
    background: radial-gradient(circle at top right, rgba(46, 125, 50, 0.08), transparent);
    background-color: hsl(140, 30%, 96%);
}

.pamonha-pattern {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(255, 235, 59, 0.1) 100%);
    background-color: hsl(60, 40%, 96%);
}

.recipe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.recipe-card:hover .recipe-image {
    transform: scale(1.06);
}

.recipe-tags {
    position: absolute;
    bottom: 12px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.tag {
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.tag-zero {
    background-color: var(--health-green-light);
    color: var(--white);
}

.tag-gluten {
    background-color: var(--dark-wood-light);
    color: var(--white);
}

.recipe-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recipe-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.recipe-card p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.glicemia-meter {
    margin-top: auto;
    border-top: 1px dashed rgba(38, 28, 20, 0.08);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.meter-label {
    color: var(--text-muted);
    font-weight: 500;
}

.meter-value {
    font-weight: 700;
}

.value-low {
    color: var(--health-green-light);
}

/* ==========================================================================
   5. QUALIFICATION (Checklist)
   ========================================================================== */
.checklist-section {
    background-color: var(--light-cream);
}

.interactive-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    user-select: none;
}

.checklist-card:hover {
    transform: translateX(4px);
    border-color: rgba(46, 125, 50, 0.15);
}

.checkbox-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--health-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--health-green-light);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.check-tick {
    width: 18px;
    height: 18px;
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
    transition: var(--transition-smooth);
}

.checklist-card p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

/* State when clicked (checked/unchecked toggle action) */
.checklist-card.is-unchecked .checkbox-circle {
    background-color: transparent;
    border-color: var(--light-gray);
    color: transparent;
}

.checklist-card.is-unchecked p {
    color: var(--text-muted);
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
}

.checklist-summary-card {
    background-color: rgba(46, 125, 50, 0.05);
    border: 1px dashed rgba(46, 125, 50, 0.2);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.summary-highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--health-green-dark);
    display: block;
    margin-bottom: 6px;
}

/* ==========================================================================
   6. SEÇÃO DE OFERTA & PREÇO (Conversão)
   ========================================================================== */
.offer-section {
    background-color: var(--dark-wood);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.offer-bg-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
}

.offer-box {
    position: relative;
    z-index: 5;
}

.offer-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 8px 0;
}

.offer-badge {
    background: var(--primary-gradient);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.offer-deliverables-full {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 36px 40px;
    margin-bottom: 40px;
}

.offer-deliverables-full h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.deliverables-list-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.deliverables-list-grid li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.5;
}

.delivery-check {
    width: 22px;
    height: 22px;
    color: var(--health-green-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverables-list-grid strong {
    color: var(--primary-yellow);
}

/* 2-Plan Comparison Grid */
.offer-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

/* Plan Card Styles */
.plan-card {
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-basico {
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-premium {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tag-muted {
    background-color: var(--light-gray);
    color: var(--text-muted);
}

.tag-highlight {
    background: var(--primary-gradient);
    color: var(--white);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Visual Mockups inside Plans */
.product-visuals-plan {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-mockup-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(38, 28, 20, 0.12);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.plan-card:hover .plan-mockup-img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(38, 28, 20, 0.18);
}

/* Price block */
.price-container {
    text-align: center;
    margin-bottom: 24px;
}

.old-price {
    display: block;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.current-price {
    display: block;
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin: 6px 0;
}

.plan-premium .current-price {
    color: var(--primary-orange);
}

.plan-basico .current-price {
    color: var(--health-green-dark);
}

.payment-terms {
    display: block;
    font-size: 0.85rem;
    color: var(--health-green-light);
    font-weight: 700;
}

/* Plan Features List */
.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-check-icon {
    width: 18px;
    height: 18px;
    color: var(--health-green-light);
    flex-shrink: 0;
}

.plan-cross-icon {
    width: 18px;
    height: 18px;
    color: hsl(0, 70%, 55%);
    flex-shrink: 0;
}

.plan-features-list li.excluded {
    color: var(--text-muted);
    opacity: 0.65;
    text-decoration: line-through;
}

.plan-features-list li.highlight-feature {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-guarantees {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 500;
}

.trust-badge-footer {
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px dashed rgba(38, 28, 20, 0.08);
    padding-top: 16px;
    text-align: center;
    font-weight: 500;
}

/* ==========================================================================
   7. SEÇÃO DE GARANTIA
   ========================================================================== */
.guarantee-section {
    background-color: var(--white);
    border-bottom: 1px solid rgba(38, 28, 20, 0.04);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--health-bg-light);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(46, 125, 50, 0.1);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.guarantee-badge-container {
    flex-shrink: 0;
    color: var(--health-green-light);
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 6px 12px rgba(46,125,50,0.15));
}

.guarantee-text h2 {
    font-size: 1.5rem;
    color: var(--health-green-dark);
    margin-bottom: 12px;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================================================
   8. FAQ / ACORDEÃO
   ========================================================================== */
.faq-section {
    background-color: var(--light-cream);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(38, 28, 20, 0.04);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Custom detailing reset & decoration */
.faq-question {
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none; /* Hide default summary arrow */
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
    display: none; /* Safari summary arrow reset */
}

.faq-question:hover {
    color: var(--health-green-light);
    background-color: rgba(46, 125, 50, 0.02);
}

.faq-icon-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Custom CSS plus/minus icons in details summary */
.faq-icon-toggle::before,
.faq-icon-toggle::after {
    content: "";
    position: absolute;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Horizontal line */
.faq-icon-toggle::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon-toggle::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

/* State when details is open */
.faq-item[open] .faq-question {
    border-bottom: 1px solid rgba(38, 28, 20, 0.04);
    color: var(--health-green-light);
}

.faq-item[open] .faq-icon-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon-toggle::before {
    background-color: var(--health-green-light);
}

.faq-answer {
    padding: 24px;
    background-color: var(--white);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

/* ==========================================================================
   9. STICKY FLOATING CTA
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--dark-wood);
    border-top: 3px solid var(--primary-orange);
    padding: 12px 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    z-index: 90;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.is-visible {
    bottom: 0;
}

.floating-cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-cta-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

.floating-cta-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin: 0;
}

.float-timer {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-left: 8px;
}

/* ==========================================================================
   10. RODAPÉ (Footer)
   ========================================================================== */
.footer {
    background-color: var(--dark-wood);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 40px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.footer-logo svg {
    color: var(--primary-orange);
}

.copyright {
    margin-bottom: 24px;
    color: rgba(255,255,255,0.4);
}

.disclaimer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(255, 111, 0, 0.25); }
    50% { transform: scale(1.02); box-shadow: 0 15px 30px rgba(255, 111, 0, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(255, 111, 0, 0.25); }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateY(-3px) rotate(0deg); }
    20%, 60% { transform: translateY(-3px) rotate(-1.5deg); }
    40%, 80% { transform: translateY(-3px) rotate(1.5deg); }
}

.hover-shake:hover {
    animation: shake 0.4s ease-in-out;
}

@keyframes rotateSlow {
    0% { transform: rotate(12deg); }
    50% { transform: rotate(8deg); }
    100% { transform: rotate(12deg); }
}

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

@keyframes lightSweep {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

@keyframes glowPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Highlight text visual underline effect */
.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--health-green-light);
    -webkit-text-fill-color: var(--health-green-light); /* Fix transparent gradient inheritance */
    z-index: 1;
    white-space: nowrap;
}

.highlight-text::after {
    content: "";
    position: absolute;
    left: -2%;
    bottom: 6px;
    width: 104%;
    height: 10px;
    background-color: rgba(76, 175, 80, 0.18);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* Scroll Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Upsell Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 18, 12, 0.85); /* Deep dark wood transparent overlay */
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    width: 92%;
    max-width: 600px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-orange);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    color: var(--text-dark);
}

.modal-overlay.is-open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge {
    display: inline-block;
    background-color: rgba(255, 111, 0, 0.1);
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
}

.modal-highlight-text {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.modal-comparison {
    background-color: var(--health-bg-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(46, 125, 50, 0.1);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.comp-icon {
    font-size: 1.25rem;
    line-height: 1.2;
}

.comparison-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.comparison-item.lose h4 {
    color: hsl(0, 70%, 50%);
}

.comparison-item.win h4 {
    color: var(--health-green-dark);
}

.comparison-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.modal-copy-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 28px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.modal-decline-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-decline-link:hover {
    color: var(--primary-orange);
}

/* ==========================================================================
   5.5 PROVA SOCIAL (Testimonials Section)
   ========================================================================== */
.testimonials-section {
    background-color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
}

.carousel-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding: 20px 5px;
    width: 100%;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background-color: var(--white);
    border: 1px solid rgba(38, 28, 20, 0.08);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.user-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.user-avatar-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.user-avatar-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}

.user-info {
    flex-grow: 1;
    text-align: left;
}

.user-info h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.star-rating {
    font-size: 1rem;
    color: #FFD700;
}

.testimonial-body {
    text-align: left;
}

.testimonial-body p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

/* Controls */
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(38, 28, 20, 0.1);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(38, 28, 20, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--primary-orange);
    width: 24px;
    border-radius: 10px;
}

@media (min-width: 769px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px); /* Show 2 cards at a time on desktop */
    }
}

@media (max-width: 768px) {
    .carousel-outer {
        padding: 0 10px;
    }
    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .modal-box {
        padding: 24px 20px;
    }
    .modal-header h2 {
        font-size: 1.25rem;
    }
    .modal-highlight-text {
        font-size: 0.95rem;
    }
    .modal-actions .btn-lg {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   MEDIA QUERIES (Responsivity)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .offer-plans-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }
    
    .hero {
        padding: 40px 0 60px 0;
    }
    
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .hero-content {
        display: contents; /* Make children direct grid items */
    }

    .kicker {
        order: 1;
        align-self: center;
    }

    .hero h1 {
        order: 2;
        font-size: 2.25rem !important;
        margin-bottom: 12px;
    }

    .hero-image-wrapper {
        order: 3;
        margin: 10px 0 20px 0;
        display: flex;
        justify-content: center;
    }

    .subheadline {
        order: 4;
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        order: 5;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .micro-copy {
        justify-content: center;
    }
    
    .badge-row {
        order: 6;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }
    
    .support-badge {
        text-align: left;
    }
    
    .hero-image-wrapper {
        margin-top: 20px;
    }
    
    .discount-sticker {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 10px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .deliverables-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer-deliverables-full {
        padding: 28px 24px;
        margin-bottom: 30px;
    }

    .offer-plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plan-card {
        padding: 30px 24px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .floating-cta-info h4 {
        font-size: 0.85rem;
    }
    
    .floating-cta-info p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .urgency-bar {
        font-size: 0.8rem;
    }
    
    .checklist-card {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .checklist-card p {
        font-size: 0.85rem;
    }
    
    .checkbox-circle {
        width: 24px;
        height: 24px;
    }
    
    .check-tick {
        width: 14px;
        height: 14px;
    }

    /* Product visual sizes on very small mobile screens */
    .product-visuals-plan {
        height: auto;
        margin-bottom: 16px;
    }
    
    .plan-mockup-img {
        max-width: 260px;
    }
    
    .current-price {
        font-size: 2.75rem;
    }
    
    /* Floating bottom CTA mobile optimizations */
    .floating-cta-container {
        padding: 0 16px;
        gap: 8px;
    }
    
    .floating-cta-info h4 {
        font-size: 0.8rem;
    }
    
    .floating-cta-info p {
        font-size: 0.7rem;
    }
    
    .floating-cta .btn-primary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}
