/* --- Variables & Reset --- */
:root {
    /* New Palette: Creamy Fruit (Strawberry/Cream/Passion Fruit) */
    --color-pistachio: #FA8072;
    /* Salmon/Strawberry - Primary Brand Color */
    --color-pistachio-light: #FFE0E0;
    /* Light Pink - Backgrounds */
    --color-pistachio-dark: #D32F2F;
    /* Deep Red - Buttons/Accents */

    --color-chocolate: #4E342E;
    /* Warm Dark Brown - Text/Contrast */
    --color-chocolate-light: #795548;
    /* Lighter Brown */
    --color-chocolate-rich: #3E2723;
    /* Darker Brown */

    --color-cream: #FFF9C4;
    /* Light Yellow/Cream - Ice Cream feel */
    --color-off-white: #ffffff;
    /* Pure White (Safe) */
    --color-gold: #FFB300;
    /* Rich Yellow/Gold - Passion Fruit/Secondary */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    /* Smooth organic feel */

    --shadow-soft: 0 10px 30px -10px rgba(250, 128, 114, 0.15);
    --shadow-hover: 0 20px 40px -12px rgba(211, 47, 47, 0.2);
    --shadow-gold: 0 0 20px rgba(255, 179, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-chocolate);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.narrow {
    max-width: 800px;
}

/* --- Typography Utilities --- */
.highlight-text {
    color: var(--color-pistachio-dark);
    /* Deep Red */
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.4em;
    /* Increased size relative to h1 */
    position: relative;
    white-space: nowrap;
    display: inline-block;
    /* Needed for transform */
    animation: textPulse 1s ease-in-out infinite alternate;
}

@keyframes textPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.highlight-text::after {
    content: none;
    display: none;
}

/* --- Chocolate Drip Navbar --- */

/* Hidden Intro Overlay (User requested to keep code but fix space) */
#chocolate-drip-overlay {
    display: none !important;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Increased z-index */
    background-color: var(--color-chocolate);

    /* Mobile Notch Support */
    padding-top: max(var(--spacing-sm), env(safe-area-inset-top));
    /* Keep safe area padding */

    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.4);
}

/* Pseudo-element to cover bouncing/overscroll area at the top */
.navbar::before {
    content: "";
    position: absolute;
    top: -100vh;
    /* Extend way up */
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-chocolate);
    z-index: -1;
    /* Behind the content */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
    /* Space above drips */
}

.nav-drips {
    position: absolute;
    bottom: -40px;
    /* Hanging down */
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1;
    pointer-events: none;
}

.drip-svg-nav {
    width: 100%;
    height: 100%;
    display: block;
}

.drip-svg-nav path {
    fill: var(--color-chocolate);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-off-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    /* Bold text */
    text-transform: uppercase;

    /* Subtle Pulse Animation */
    animation: subtlePulse 2s infinite ease-in-out;
}

.nav-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold);
}

.nav-badge .icon {
    color: var(--color-gold);
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        border-color: var(--color-gold);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .pulse,
    .cta-button:hover {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* Hero */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Limit width for readability since it's centered */
    margin: 0 auto;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-pistachio-dark);
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* --- Chef & Business Upgrade --- */
.chef-note {
    font-family: 'Dancing Script', cursive;
    color: var(--color-chocolate);
    font-size: 1.5rem;
    transform: rotate(-5deg);
    display: inline-block;
}

.absolute-note {
    position: absolute;
    bottom: -25px;
    right: -10px;
    background: #fff9c4;
    padding: 2px 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

/* Grain Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Profit Breaking Card */
.profit-card {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 1px solid rgba(147, 197, 114, 0.3);
    animation: floatCard 4s ease-in-out infinite reverse;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.p-card-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.p-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-chocolate);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.p-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #666;
}

.p-val {
    font-weight: 600;
}

.p-val.negative {
    color: #d32f2f;
}

.p-val.positive {
    color: #388e3c;
}

.p-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.p-row.highlight {
    font-size: 1rem;
    color: var(--color-chocolate);
    margin-top: 5px;
}

.p-row.highlight .p-val {
    font-size: 1.1rem;
    color: var(--color-pistachio-dark);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.125rem;
    color: var(--color-chocolate-light);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    /* Increased slightly for better fit */
    margin-left: auto;
    /* Center the block */
    margin-right: auto;
    /* Center the block */
}

.trust-pills {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center align */
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.pill {
    background: rgba(147, 197, 114, 0.15);
    color: var(--color-chocolate);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pill.highlight-red {
    background: #D32F2F;
    /* Red background */
    color: white;
    /* White text */
    font-weight: 700;
    /* Bold */
    border: 1px solid #B71C1C;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
    /* Red Glow */
    transform: scale(1.05);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pistachio-dark), var(--color-pistachio));
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(147, 197, 114, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(147, 197, 114, 0.5);
}

.cta-button.big-btn {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 24px;
    background: linear-gradient(135deg, var(--color-chocolate-light), var(--color-chocolate));
    box-shadow: 0 10px 20px rgba(62, 39, 35, 0.3);
}

.cta-button.big-btn:hover {
    box-shadow: 0 15px 30px rgba(62, 39, 35, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 197, 114, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(147, 197, 114, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(147, 197, 114, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Visual (Image) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--color-pistachio);
    opacity: 0.15;
    filter: blur(50px);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-gold);
    opacity: 0.1;
    filter: blur(40px);
    bottom: 0;
    right: 0;
}

.image-container {
    position: relative;
    z-index: 5;
    width: 350px;
    height: 480px;
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    padding: 10px;
    background: linear-gradient(to bottom right, #fff, var(--color-cream));
    box-shadow:
        0 20px 40px rgba(62, 39, 35, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 190px 190px 15px 15px;
    /* Inner arch */
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .hero-img {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-weight: 700;
    border: 1px solid var(--color-gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
}

/* Gradient Flow between sections */
.features {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-cream) 100%);
}

.modules {
    background: linear-gradient(180deg, var(--color-cream) 0%, #fff 100%);
}

.audience {
    background: linear-gradient(180deg, #fff 0%, var(--color-off-white) 100%);
}

.offer {
    background: linear-gradient(180deg, var(--color-off-white) 0%, #F1F8E9 100%);
    /* Slight pistachio hint */
}

.faq {
    background: linear-gradient(180deg, #F1F8E9 0%, #fff 100%);
}

.alt-bg {
    background-color: transparent;
    /* Overridden by gradients */
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 10px auto 0;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Default to 2 columns */
    gap: var(--spacing-md);
}

/* Features Cards */
.card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card.highlight {
    background: linear-gradient(to bottom right, #fff, var(--color-cream));
    border: 1px solid var(--color-gold);
}

.badge-bonus {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-list {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: var(--color-pistachio-dark);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Product Gallery Marquee --- */
.p-gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 60px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.p-gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.p-slide {
    width: 280px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.15);
    background: white;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: perspective(1000px) rotateY(10deg);
    transition: 0.3s;
}

.p-slide:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.25);
    border-color: var(--color-gold);
}

.p-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (280px + 30px) * 7));
    }
}

.p-gallery-track:hover {
    animation-play-state: paused;
}

/* Modules Section */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* --- Interactive Book Hinge Animation --- */
.book-container-hinge {
    width: 300px;
    height: 420px;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    perspective: 1500px;
    /* Needed for 3D effect */
}

/* The Inside Page (Static Background) */
.book-inside-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px 20px 20px 5px;
    box-shadow:
        inset 10px 0 30px rgba(0, 0, 0, 0.1),
        /* Inner shadow for depth */
        0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-image:
        linear-gradient(90deg, #f5f5f5 0%, #fff 5%, #fff 100%);
}

.chapter-preview {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s ease;
    transition-delay: 0.2s;
    /* Wait for cover to open */
}

/* Reveal text when open */
.book-container-hinge.open .chapter-preview {
    opacity: 1;
    transform: translateY(0);
}

.chapter-preview h6 {
    color: #bbb;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.chapter-preview h5 {
    color: var(--color-pistachio-dark);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.chapter-preview p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.read-more {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
}

/* The Cover (Rotates) */
/* The Cover (Rotates) */
.book-cover-hinge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient instead of flat color for depth */
    background: linear-gradient(135deg, #CFE8C2 0%, #BCE2A6 100%);
    border-radius: 5px 20px 20px 5px;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    box-shadow:
        inset 5px 0 10px rgba(0, 0, 0, 0.05),
        10px 10px 30px rgba(0, 0, 0, 0.15);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Open State */
.book-container-hinge.open .book-cover-hinge {
    transform: rotateY(-130deg);
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.1);
}

.cover-design {
    /* Elegant Double Border */
    border: 3px double var(--color-chocolate);
    width: 85%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 2px;
    backface-visibility: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    /* Very subtle tint */
}

.cover-design .title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--color-chocolate);
    letter-spacing: -1px;
}

.cover-design .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-dark);
    font-weight: 600;
    margin-top: 5px;
    border-top: 1px solid var(--color-chocolate);
    padding-top: 10px;
    width: 60px;
    /* Small separator line visual */
}

.span-title {
    font-size: 2.5rem;
}

/* Helper if needed */

.spine-visual {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 39, 35, 0.1), transparent);
    border-radius: 5px 0 0 5px;
}

.click-hint-badge {
    position: absolute;
    bottom: 20px;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulseHint 2s infinite;
    backface-visibility: hidden;
}

@keyframes pulseHint {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Pages visual on the right */
.book-side-pages {
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 0;
    width: 15px;
    background: repeating-linear-gradient(to right, #eee, #eee 1px, #ddd 1px, #ddd 2px);
    z-index: 0;
    transform: skewY(-5deg) translateX(5px);
    border-radius: 0 5px 5px 0;
}

/* Modules Section - Timeline Redesign */
.module-list {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

/* Vertical Line */
.module-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;
    /* Center of the circle */
    width: 2px;
    background: linear-gradient(to bottom, var(--color-pistachio-dark) 0%, transparent 100%);
    opacity: 0.3;
}

.module-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.module-item:hover {
    transform: translateX(10px);
}

.mod-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-pistachio-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 0 5px white;
    /* Gap effect */
    border: 2px solid var(--color-pistachio-light);
}

.mod-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding-bottom: 25px;
    /* Extra space for the tag */
}

.bonus-floating-tag {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: #FFD700;
    /* Gold */
    color: #3E2723;
    /* Dark Brown */
    padding: 5px 15px;
    border-radius: 50px;
    font-family: var(--font-body);
    /* Changed to normal font */
    font-size: 0.9rem;
    /* Adjusted size for sans-serif */
    font-weight: 700;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
    border: 2px solid white;
}

/* Arrow pointing to circle */
.mod-info::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mod-info h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--color-chocolate);
    font-weight: 700;
    font-family: var(--font-body);
    /* Changed to Inter/Sans-serif */
}

.mod-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Audience */
.audience-box {
    padding: 40px;
    border-radius: var(--radius-md);
}

.for-you {
    background-color: var(--color-cream);
    color: var(--color-chocolate);
}

.not-for-you {
    background-color: #f0f0f0;
    color: #888;
}

.audience-box h3 {
    margin-bottom: 20px;
}

.audience-box ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Offer Section */
.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.15);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--color-gold);
}

.offer-header {
    background: var(--color-chocolate);
    color: white;
    padding: 20px;
}

.offer-header h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.offer-header .urgency {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

.offer-body {
    padding: 40px;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.current-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin: 10px 0;
}

.current-price-wrapper .currency {
    font-size: 1.2rem;
    font-weight: 500;
}

.current-price-wrapper .value {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-pistachio-dark);
}

.payment-info {
    font-size: 0.9rem;
    color: #666;
}

.guarantee-seal {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.seal-icon {
    font-size: 2rem;
}

/* FAQ */
.accordion-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-chocolate);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #fdfdfd;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Arbitrary enough height */
}

/* Footer */
.footer {
    background: var(--color-chocolate-rich);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* --- Urgency Offer Mode (Harmonious) --- */
.offer-card.urgency-mode {
    text-align: center;
    border: 1px solid var(--color-gold);
    background: #fff;
    overflow: hidden;
    /* Fix layout overflow */
    position: relative;
    padding-top: 60px;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.1);
    border-radius: 16px;
}

.urgency-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--color-pistachio-dark), var(--color-pistachio));
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(147, 197, 114, 0.2);
}

.urgency-title {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    font-size: 2.2rem;
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 0 15px;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: var(--color-chocolate);
    color: var(--color-gold);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.time-box #hours,
.time-box #minutes,
.time-box #seconds {
    font-size: 2.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-family: 'Inter', sans-serif;
    color: white;
}

.time-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 500;
    color: var(--color-pistachio-light);
}

.separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-pistachio-dark);
    margin-top: -25px;
    opacity: 0.6;
}

/* --- Redesigned Offer Section --- */
.offer-card.urgency-mode {
    padding-top: 0;
    /* Remove top padding as header handles it */
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.offer-header-redesign {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.scarcity-text {
    background: #ffebee;
    /* Light pink pill */
    color: #e53935;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid #ffcdd2;
}

.timer-compact {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.timer-digits {
    color: #333;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.social-proof {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff9800;
    /* Orange dot like reference */
    border-radius: 50%;
    display: inline-block;
    animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.offer-body-redesign {
    padding: 20px 30px 40px;
    text-align: center;
}

.plan-label {
    font-family: 'Inter', sans-serif;
    color: #e65100;
    /* Orange text */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-showcase {
    margin-bottom: 30px;
}

.old-price-small {
    display: inline-block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.big-price-huge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    /* Reduced from 5.5rem */
    /* Huge */
    color: var(--color-chocolate-rich);
    line-height: 1;
    margin: 10px 0;
    letter-spacing: -2px;
}

.discount-pill {
    display: inline-block;
    background: #fff3e0;
    /* Light orange bg */
    color: #e65100;
    /* Dark orange text */
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.price-analogy {
    font-size: 0.95rem;
    color: #777;
}

.benefits-list-redesign {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px;
    max-width: 400px;
    text-align: left;
}

.benefits-list-redesign li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list-redesign li strong {
    color: #000;
    font-weight: 700;
}

.benefits-list-redesign .check {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E7D32;
    /* Solid Green for Impact */
    color: #ffffff;
    /* White Check */
    width: 28px;
    /* Slightly larger */
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(46, 125, 50, 0.3);
}

.cta-button.pulse-fast {
    background: linear-gradient(135deg, var(--color-chocolate), #5D4037);
    border: 1px solid var(--color-gold);
    font-size: 1.3rem;
    padding: 24px 48px;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.2);
    animation: elegantButtonGlow 2s infinite;
    /* Faster pulses */
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes elegantButtonGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(212, 175, 55, 0.3);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
}

/* --- Social Proof Below CTA --- */
/* --- Social Proof Below CTA --- */
.bottom-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Default center */
    gap: 15px;
    margin-top: 25px;
}

.hero-social-proof {
    justify-content: center;
    /* Center align for hero now */
}

@media (max-width: 768px) {
    .hero-social-proof {
        justify-content: center;
        /* Center on mobile */
    }
}

.avatar-stack {
    display: flex;
    /* Removed transform to allow natural centering */
}

.avatar-circle {
    width: 28px;
    /* Reduced from 38px */
    height: 28px;
    /* Reduced from 38px */
    border-radius: 50%;
    border: 1.5px solid #fff;
    background-size: cover;
    background-position: center;
    margin-right: -10px;
    /* Adjusted overlap for smaller size */
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.avatar-circle:nth-child(1) {
    z-index: 4;
}

.avatar-circle:nth-child(2) {
    z-index: 3;
}

.avatar-circle:nth-child(3) {
    z-index: 2;
}

.avatar-circle:nth-child(4) {
    z-index: 1;
}

.join-text {
    font-size: 0.7rem !important;
    /* Force small size */
    color: #5d4037;
    margin: 0;
    line-height: 1.1;
    text-align: left;
    white-space: nowrap;
    /* Removed top: 2px to fix alignment issue */
}

.join-text strong {
    color: #e65100;
    /* Orange highlight */
    font-weight: 500;
}

.security-lock {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}



.links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 20px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fff 0%, var(--color-off-white) 100%);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    padding: 20px;
    /* Reduced padding for compactness */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(62, 39, 35, 0.1);
    border-color: var(--color-pistachio-light);
}

/* Big Quote Watermark */
.quote-watermark {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 4rem;
    /* Reduced size */
    line-height: 1;
    font-family: 'Playfair Display', serif;
    color: var(--color-pistachio);
    opacity: 0.15;
    pointer-events: none;
}

.test-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 15px;
    /* Reduced margin */
    font-size: 0.9rem;
    /* Smaller font */
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* User Image & Author Layout */
.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    font-size: 0.95rem;
    /* Reduced size */
    margin-bottom: 0;
    color: var(--color-chocolate);
    font-weight: 700;
}

.location {
    font-size: 0.75rem;
    /* Reduced size */
    color: #888;
    display: block;
}

/* --- Responsive --- */
@media (max-width: 768px) {

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

    /* Force testimonials side-by-side on mobile as requested */
    .testimonials .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .trust-pills {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    /* Hide complicated visual on mobile for speed/simplicity or replace */

    .hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .reverse-mobile {
        grid-template-columns: 1fr;
    }

    /* Ensure book is below text on mobile if needed, or adjust order */
    .row .col-visual {
        order: -1;
        margin-bottom: 30px;
    }
}

/* --- Utilities Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* --- Carousel Annotations (Modern Chef Style) --- */
.p-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-note {
    font-family: 'Dancing Script', cursive;
    color: var(--color-chocolate-rich);
    font-size: 1.1rem;
    /* Smaller */
    position: absolute;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;

    /* Bottom Right - adjusted */
    bottom: 15px;
    right: -10px;

    /* Modern Glassmorphic Look */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    /* Smaller padding */
    border-radius: 50px;
    border: 1px solid var(--color-gold);

    /* Shadow & Rotation - Straight (no rotation) */
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.1);
    transform: none;

    /* Tweak text */
    font-weight: 700;
    line-height: 1;

    min-width: 80px;
    text-align: center;

    /* Animation: Vertical float only */
    animation: floatNote 4s ease-in-out infinite;
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        /* Ensure safe padding on edges */
    }

    .hero h1 {
        font-size: 2.2rem;
        /* Drastic reduction from 3.5rem */
        line-height: 1.2;
        word-wrap: break-word;
        /* Prevent overflow */
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-container {
        gap: 20px;
        /* Reduce gaps */
        width: 100%;
        /* Ensure it doesn't overflow */
    }

    .trust-pills {
        gap: 8px;
        /* Tighter pills */
    }

    .pill {
        font-size: 0.8rem;
        /* Smaller pills */
        padding: 4px 10px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        /* Global Header Resize */
    }

    /* Force 3-line layout on mobile too */
    .hero-title span {
        display: block;
        line-height: 1.2;
    }
}

/* --- Hero Guarantee Badge --- */
.hero-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Reduced gap */
    margin-top: 15px;
    /* Reduced top margin */
    padding: 6px 16px;
    /* Reduced padding */
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    cursor: default;
}

.hero-guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.hero-guarantee-badge .guarantee-icon {
    font-size: 0.95rem;
    /* Reduced icon size */
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.hero-guarantee-badge .guarantee-text {
    font-size: 0.75rem;
    /* Reduced text size */
    font-weight: 700;
    color: var(--color-chocolate);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Specific Hero Title Styling to Force Lines */
.hero-title span {
    display: block;
    /* Forces each span to a new line */
    line-height: 1.1;
    /* Tights line height */
}

/* Adjust highlight spacing if needed */
.highlight-text {
    display: inline-block;
    padding: 0 5px;
}

/* --- Alcoholic Section (New) --- */
.special-alcoholic .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.special-alcoholic .col-text {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.special-alcoholic .col-visual-drink {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* --- Improved Gradients for Flow --- */
/* --- Improved Gradients for Flow --- */
.features {
    background: #ffffff !important;
    background-image: none !important;
}

/* --- Alcoholic Section (New) --- */
.special-alcoholic {
    /* Solid Yellow Background as requested */
    background: #FFF176;
    color: var(--color-chocolate);
    position: relative;
    padding-top: 0;
    /* Removing top padding to let wave sit flush */
    padding-bottom: var(--spacing-xl);
}

/* Wave Separator */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
    /* Remove gaps */
    position: relative;
    z-index: 10;
    /* Ensure it sits on top */
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    /* Rotation removed to keep 'Top Filled' orientation */
}

.wave-divider .shape-fill {
    fill: #ffffff;
    /* White to match previous section and 'cut into' the yellow */
}

/* Bottom Wave */
.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-bottom .shape-fill {
    fill: #FFD54F;
    /* Matches Modules Start Color */
}

/* Adjust text colors inside yellow section */
.special-alcoholic h2 {
    color: var(--color-chocolate);
    text-shadow: none;
}

.special-alcoholic h3 {
    color: var(--color-chocolate);
    font-weight: 600;
}

.highlight-text-alt {
    font-family: 'Dancing Script', cursive;
    color: #1B5E20;
    /* Deep Green for Caipirinha contrast */
    text-shadow: none;
    font-size: 1.1em;
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    /* Deep Green Gradient */
    border: 2px solid #FFD54F;
    /* Gold Border */
    color: #ffffff;
    /* White Text */
    padding: 12px 30px;
    /* Larger padding */
    border-radius: 50px;
    font-size: 1.1rem;
    /* Larger font */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
    /* Green Shadow */
    font-weight: 800;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gold Variant for White Backgrounds */
.special-badge-gold {
    background: #ff0000;
    /* Flashy Yellow */
    color: #000;
    /* Black Text */
    border-color: #ff2a00;
    box-shadow: 0 5px 15px rgb(217, 222, 81);
}

/* Shine effect */
.special-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: badgeShine 3s infinite;
    z-index: -1;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Cleaned up broken CSS */

.drink-list li {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.drink-list li:hover {
    background: white;
    border-color: var(--color-chocolate);
}

.drink-list strong {
    color: var(--color-chocolate);
}

.modules {
    /* Transition from Yellow (Alcoholic) to White */
    background: linear-gradient(180deg, #FFD54F 0%, #FFF9C4 30%, #fff 100%);
}

.audience {
    background: linear-gradient(180deg, #fff 0%, #FFFDE7 100%);
}

.offer {
    background: linear-gradient(180deg, #FFFDE7 0%, #E8F5E9 100%);
}

/* Background Pattern/Noise */
.special-alcoholic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.2), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.2), transparent 40%);
    z-index: 1;
}

.special-alcoholic .container {
    position: relative;
    z-index: 2;
}

.special-alcoholic h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 10px;
}

.special-alcoholic h3 {
    color: #FFF9C4;
    /* Light Yellow Core */
    text-shadow:
        0 0 5px #FFF59D,
        0 0 10px #FFF176,
        0 0 20px #FFD700,
        0 0 40px #FFC107,
        0 0 80px #FFAB00,
        0 0 90px #FFD700;
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* No animation */
    text-align: center;
    line-height: 1.2;
}

.highlight-text-alt {
    font-family: 'Dancing Script', cursive;
    color: #00E676;
    /* Neon Green for Caipirinha vibe */
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.special-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(5px);
}

.drink-list {
    margin: var(--spacing-md) 0;
}

.drink-list li {
    display: flex;
    flex-direction: column;
    /* Stack icon and text */
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.drink-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--color-gold);
}

.drink-list .icon {
    font-size: 2.5rem;
}

.drink-list strong {
    font-size: 1.2rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
}

.profit-highlight {
    background: linear-gradient(90deg, #FFD700, #FFA000);
    color: #3E2723;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.profit-highlight span {
    font-size: 1.2em;
    font-weight: 900;
}

.col-visual-drink {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 30px 0;
}

.drink-image-container {
    position: relative;
    width: 350px;
    height: 450px;
}

.drink-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotate(3deg);
    transition: 0.5s;
}

.drink-image-container:hover .drink-img {
    transform: rotate(0deg) scale(1.02);
}

.floating-drink-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #D32F2F;
    color: white;
    padding: 15px 25px;
    font-family: var(--font-body);
    /* Changed to normal font */
    font-size: 1.2rem;
    /* Adjusted size */
    font-weight: 700;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* --- Mobile First & Layout Updates (User Requested) --- */
.centered-row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.center-mobile-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.center-mobile-content p {
    margin-left: auto;
    margin-right: auto;
}

.module-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items for mobile */
    gap: 20px;
    margin-top: 40px;
}

.module-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 500px;
    /* Limit width */
    display: flex;
    align-items: center;
    text-align: left;
    /* Keep text inside aligned left */
    gap: 15px;
    transition: 0.3s;
}

.module-item:hover {
    transform: translateY(-5px);
    border: 1px solid var(--color-gold);
}

@media (max-width: 768px) {
    .module-item {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Modules Section Specifics --- */
.modules h2,
.special-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
    /* Extra bold */
    font-family: var(--font-body);
    /* Switching to Sans-Serif (Inter) for cleaner numbers */
    letter-spacing: -1px;
    /* Tighter spacing for headline look */
    text-align: center;
    /* Ensure centering */
}

.highlight-bonus {
    color: var(--color-pistachio-dark);
    /* Red */
    font-weight: 900;
    font-size: 1.1em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    animation: textPulse 1.5s infinite alternate;
    display: inline-block;
}

/* Removed old gradients block */

/* --- Interactive Book Hinge Animation (Restored) --- */
.book-container-hinge {
    width: 300px;
    height: 420px;
    position: relative;
    margin: 0 auto 60px;
    /* Added margin-bottom spacing */
    cursor: pointer;
    perspective: 1500px;
}

.book-inside-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px 20px 20px 5px;
    box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chapter-preview h6 {
    color: #999;
    letter-spacing: 2px;
    font-size: 0.8em;
    margin-bottom: 5px;
}

.chapter-preview h5 {
    font-family: var(--font-heading);
    color: var(--color-chocolate-rich);
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.2;
}

.chapter-preview p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    background: #f9f9f9;
    padding: 15px;
    border-left: 3px solid var(--color-pistachio);
    margin-bottom: 20px;
}

.read-more {
    font-size: 0.8em;
    font-weight: 700;
    color: var(--color-pistachio-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Rotating Cover */
.book-cover-hinge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Leather Texture Simulator */
    background-color: #4E342E;
    background-image:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.1), transparent 70%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: cover, 100px 100px;
    border-radius: 5px 20px 20px 5px;
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
    /* Sharp borders and shadows */
    box-shadow:
        inset 3px 0 5px rgba(0, 0, 0, 0.2),
        inset -5px 0 10px rgba(0, 0, 0, 0.1),
        5px 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    /* Increased padding */
    backface-visibility: hidden;
    border: 2px solid #3E2723;
    /* Subtle edge */
}

/* Open State (Toggled by JS) */
.book-container-hinge.open .book-cover-hinge {
    transform: rotateY(-140deg);
}

.cover-design {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    /* Gold Frame */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px 15px 15px 5px;
    position: relative;
}

.cover-design .title {
    font-family: var(--font-heading);
    color: #FFECB3;
    /* Cream Gold */
    font-size: 2.2rem;
    /* Reduced from 3.5rem */
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    /* CRISP Text Shadow - Reduced blur for sharpness */
    text-shadow: 2px 2px 0px #3E2723;
    letter-spacing: 0;
    text-align: center;
    /* Ensure internal text align */
    width: 100%;
}

.cover-design .subtitle {
    font-family: var(--font-body);
    color: #FFD54F;
    /* Gold */
    letter-spacing: 4px;
    /* Elegant spacing */
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding: 5px 0;
}

.spine-visual {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.click-hint-badge {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounceHint 2s infinite;
}

@keyframes bounceHint {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Bonus Selection Styles */
.bonus-selectable {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    /* Added */
    flex-direction: column;
    /* Added */
    align-items: center;
    /* Default center */
}

.bonus-selectable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bonus-selectable.selected {
    border-color: #2E7D32;
    /* Green border when selected */
    background: #F1F8E9;
    /* Light green background */
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.3);
}

.bonus-selectable.selected .badge-bonus {
    background: #2E7D32;
    color: white;
}

/* Fix Badge Overlap - Absolute Positioning */
.bonus-selectable .badge-bonus {
    position: absolute !important;
    top: 15px;
    left: 15px;
    margin: 0;
    align-self: auto;
    z-index: 5;
}

/* Add padding to card top */
.bonus-selectable {
    padding-top: 70px !important;
    /* Push content down significantly */
}

.checkbox-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

/* Hide default checkbox */
.bonus-check {
    display: none;
}

/* Custom Checkbox Design */
.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: white;
}

/* Checked State */
.bonus-check:checked+.custom-checkbox {
    background: #2E7D32;
    border-color: #2E7D32;
}

/* Checkmark Icon */
.bonus-check:checked+.custom-checkbox::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Utility for centering badges (Flexbox) */
/* Utility for centering badges (Flexbox) */
.centered-badge-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Remove margin from badge when inside container */
.centered-badge-container .special-badge {
    margin-bottom: 0;
}

.badge-subtext {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888;
    margin-top: -2px;
    /* Pull closer */
    font-weight: 500;
}

/* Creative Speech Bubble */
.customer-speech-bubble {
    background: #fff;
    border-radius: 30px 30px 30px 5px;
    padding: 15px 30px;
    display: inline-block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #E0E0E0;
    margin-bottom: 5px;
    /* Close to the title */
    position: relative;
    max-width: 90%;
    margin-top: 40px;
}

.customer-speech-bubble .emoji {
    font-style: normal;
    margin-right: 10px;
}

/* Speech Bubble Tail */
.customer-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-bottom: 2px solid #E0E0E0;
    border-right: 2px solid #E0E0E0;
    transform: rotate(45deg);
}

/* Ensure container centers it */
.features .container {
    text-align: center;
}

.glow {
    color: #ffcc00;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6),
        0 0 5px rgba(255, 204, 0, 0.5),
        0 0 6px rgba(255, 204, 0, 0.4);
}

.bonus-highlight-title {
    font-family: 'Playfair Display', serif;
    /* Elegant and premium */
    color: #1B5E20;
    /* Deep Green */
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.bonus-highlight-title span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    text-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}