/* 
   🎨 Landing Page Style System
   Based on style.md
*/

:root {
    /* Core Colors */
    --dark-bg-primary: #1A2A18;
    --dark-bg-secondary: #2F4A2C;
    --light-bg-primary: #F4F7E9;
    --light-bg-secondary: #E8F5C8;
    --accent-primary: #D6F05A;
    --accent-hover: #F0E87A;
    --text-dark: #1A2A18;
    --text-light: #E8F5C8;
    --text-muted: #8FAE6A;
    --border-color: rgba(214, 240, 90, 0.15);
    /* Imagem de fundo partilhada (hero, secções claras, rodapé) */
    --maze-bg-image: url('../assets/maze.jpg');
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glow-accent: 0 0 15px rgba(214, 240, 90, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif; /* Modern premium typography */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg-primary);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

/* 🌙 Hero Section (Dark) — fundo em camada para parallax ao scroll */
.hero {
    min-height: 90vh;
    background-color: var(--dark-bg-primary);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    padding: 72px 5% 48px;
    overflow: hidden;
}

.hero__parallax-bg {
    position: absolute;
    left: 0;
    top: -14%;
    width: 100%;
    height: 128%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    background-image:
        linear-gradient(135deg, rgba(26, 42, 24, 0.9), rgba(47, 74, 44, 0.88)),
        var(--maze-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
    .hero__parallax-bg {
        transform: translate3d(0, 0, 0) scale(1.04);
        will-change: auto;
    }
}

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

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
        "lead video"
        "below video";
    align-items: center;
    gap: 40px;
}

.hero-content-lead {
    grid-area: lead;
    z-index: 2;
}

.hero-content-below {
    grid-area: below;
    z-index: 2;
    align-self: start;
}

.hero-content-below .hero-actions {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
}

.hero-content-below > p:first-of-type {
    margin-bottom: 24px;
    max-width: 600px;
}

.hero-video {
    grid-area: video;
    align-self: center;
    display: flex;
    justify-content: center;
    flex: unset;
    min-width: 0;
}

/* Hero without video — single column, no empty slot */
.hero-layout--no-video {
    grid-template-columns: 1fr;
    grid-template-areas:
        "lead"
        "below";
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    color: #FFF;
    text-shadow: 0 0 20px rgba(214, 240, 90, 0.2);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero .hero-trust {
    font-size: 0.9rem !important;
    opacity: 0.7 !important;
    margin-bottom: 0 !important;
    margin-top: 20px;
}

/* ☀️ Light Sections */
.section {
    padding: 60px 5%;
    position: relative;
}

.section-light-1 { background-color: var(--light-bg-primary); }
.section-light-2 { background-color: var(--light-bg-secondary); }

/* Secções claras: labirinto + overlay garantidos (::before / ::after evitam bugs de camadas) */
.section--maze-backdrop {
    position: relative;
    overflow: hidden;
}

.section--maze-backdrop.section-light-1 {
    background-color: var(--light-bg-primary);
    background-image: none;
}

.section--maze-backdrop.section-light-2 {
    background-color: var(--light-bg-secondary);
    background-image: none;
}

.section--maze-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--maze-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none;
}

.section--maze-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.section--maze-backdrop.section-light-1::after {
    background: linear-gradient(
        180deg,
        rgba(244, 247, 233, 0.93) 0%,
        rgba(244, 247, 233, 0.9) 45%,
        rgba(244, 247, 233, 0.93) 100%
    );
}

.section--maze-backdrop.section-light-2::after {
    background: linear-gradient(
        180deg,
        rgba(232, 245, 200, 0.92) 0%,
        rgba(244, 247, 233, 0.88) 50%,
        rgba(232, 245, 200, 0.93) 100%
    );
}

.section--maze-backdrop .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .section--maze-backdrop::before {
        background-attachment: scroll;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section--maze-backdrop::before {
        background-attachment: scroll;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* 🔘 Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-dark);
    box-shadow: var(--glow-accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(214, 240, 90, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: rgba(214, 240, 90, 0.1);
}

/* 🃏 Cards */
.card {
    background: #FFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 240, 90, 0.1);
    transition: var(--transition-smooth);
}

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

/* “Este livro ajuda quando você está” — pain points, tom acolhedor (paleta do site) */
.helps-when-head {
    text-align: center;
    margin-bottom: 28px;
}

.helps-when-title {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.helps-when-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    text-align: left;
    max-width: 1040px;
    margin: 0 auto;
}

.helps-when-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem 1.15rem 1.2rem;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 247, 233, 0.88) 48%, rgba(232, 245, 200, 0.35) 100%);
    border: 1px solid rgba(26, 42, 24, 0.1);
    box-shadow:
        0 2px 8px rgba(26, 42, 24, 0.04),
        0 14px 36px rgba(26, 42, 24, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.helps-when-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), rgba(214, 240, 90, 0.25), var(--dark-bg-primary));
    opacity: 0.9;
}

.helps-when-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 240, 90, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.helps-when-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 240, 90, 0.45);
    box-shadow:
        0 8px 20px rgba(26, 42, 24, 0.06),
        0 22px 48px rgba(47, 74, 44, 0.11);
}

.helps-when-card__icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(214, 240, 90, 0.42), rgba(214, 240, 90, 0.12));
    color: var(--dark-bg-primary);
    border: 1px solid rgba(214, 240, 90, 0.42);
    box-shadow: 0 2px 8px rgba(26, 42, 24, 0.06);
}

.helps-when-card__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.25px;
}

.helps-when-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.4;
    opacity: 0.9;
    padding-top: 6px;
}

@media (max-width: 480px) {
    .helps-when-grid {
        grid-template-columns: 1fr;
    }
}

/* 3 passos — número grande no canto superior direito */
.method-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.method-step-card {
    position: relative;
    overflow: hidden;
    /* Extra top/right: room for the oversized step number without hugging the border */
    padding: 44px 40px 40px 36px !important;
}

.method-step-card__num {
    position: absolute;
    top: max(14px, 0.9rem);
    right: max(16px, 1rem);
    margin: 0;
    padding: 0.12em 0.08em 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4.5rem, 16vw, 8rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: rgba(214, 240, 90, 0.28);
    user-select: none;
    pointer-events: none;
}

.method-step-card__icon {
    display: block;
    width: 48px;
    height: 48px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.method-step-card__title {
    position: relative;
    z-index: 1;
    color: var(--text-light) !important;
    font-size: 1.35rem;
    margin-bottom: 14px;
    /* Keeps copy clear of the number; scales with the clamped num size */
    padding-right: clamp(4.75rem, 24vw, 7.5rem);
    line-height: 1.25;
}

.method-step-card__desc {
    position: relative;
    z-index: 1;
    color: var(--text-light) !important;
    opacity: 0.85;
    margin: 0;
    line-height: 1.55;
    padding-right: clamp(1rem, 5vw, 1.75rem);
}

/* 🎯 Experiences Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 15px;
    padding: 10px;
}

.experience-tag {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.exp-number {
    background: var(--dark-bg-primary);
    color: var(--accent-primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.exp-name {
    font-weight: 600;
    color: var(--text-dark);
}

.experience-tag:hover {
    background: #FFF;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Experiências: filas 2+3+3+2; cada cartão com a mesma largura que em filas de 3 */
.experiences-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
    padding: 10px 0;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.pain-experience-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 22px;
}

@media (max-width: 1023px) {
    .pain-experience-row {
        flex-direction: column;
        align-items: center;
    }

    .pain-experience-row .pain-experience-card {
        width: 100%;
        max-width: 560px;
    }
}

@media (min-width: 1024px) {
    .pain-experience-row {
        flex-wrap: nowrap;
    }

    .pain-experience-row .pain-experience-card {
        flex: 0 0 calc((100% - 44px) / 3);
        width: calc((100% - 44px) / 3);
        max-width: calc((100% - 44px) / 3);
    }
}

.pain-experience-card {
    position: relative;
    margin: 0;
    padding: 1.35rem 1.25rem 1.45rem 1.35rem;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 12.5rem;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 247, 233, 0.88) 48%, rgba(232, 245, 200, 0.35) 100%);
    border: 1px solid rgba(26, 42, 24, 0.1);
    box-shadow:
        0 2px 8px rgba(26, 42, 24, 0.04),
        0 14px 36px rgba(26, 42, 24, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pain-experience-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), rgba(214, 240, 90, 0.25), var(--dark-bg-primary));
    opacity: 0.9;
}

.pain-experience-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 240, 90, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.pain-experience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 240, 90, 0.45);
    box-shadow:
        0 8px 20px rgba(26, 42, 24, 0.06),
        0 22px 48px rgba(47, 74, 44, 0.11);
}

.pain-experience-card__num {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    font-size: clamp(2.35rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(26, 42, 24, 0.07);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.pain-experience-card__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(145deg, rgba(214, 240, 90, 0.42), rgba(214, 240, 90, 0.12));
    color: var(--dark-bg-primary);
    border: 1px solid rgba(214, 240, 90, 0.42);
    box-shadow: 0 2px 8px rgba(26, 42, 24, 0.06);
}

.pain-experience-card__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.25px;
}

.pain-experience-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 0.55rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    line-height: 1.2;
    padding-right: 2.5rem;
}

.pain-experience-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.82;
}

.pain-experience-card--catalog {
    min-height: 12.5rem;
}

.pain-experience-card--catalog .pain-experience-card__title {
    margin-bottom: 0.55rem;
}

/* 100-experiences catalog slider */
.experiences-slider {
    position: relative;
    margin-top: 32px;
    padding: 0 56px 40px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.experiences-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.experiences-slider__track {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    touch-action: pan-y;
}

.experiences-slider__slide {
    flex: 0 0 var(--exp-slide-width, 100%);
    width: var(--exp-slide-width, 100%);
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
    box-sizing: border-box;
}

.experiences-slider__slide .pain-experience-card {
    width: 100%;
    max-width: min(560px, 100%);
    min-width: 0;
}

@media (min-width: 768px) {
    .experiences-slider__slide .pain-experience-card {
        max-width: none;
    }
}

.experiences-slider__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(26, 42, 24, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(26, 42, 24, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.experiences-slider__arrow:hover:not(:disabled),
.experiences-slider__arrow:focus-visible:not(:disabled) {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    outline: none;
}

.experiences-slider__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.experiences-slider__arrow--prev {
    left: 0;
}

.experiences-slider__arrow--next {
    right: 0;
}

.experiences-slider__arrow svg {
    width: 22px;
    height: 22px;
}

.experiences-slider__status {
    margin: 20px 0 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.72;
}

@media (max-width: 640px) {
    .experiences-slider {
        padding: 0 44px 36px;
    }

    .experiences-slider__arrow {
        width: 40px;
        height: 40px;
        top: 38%;
    }
}

/* ⬅️ ➡️ Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-bg-primary);
    color: var(--accent-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-arrow:hover {
    background: var(--dark-bg-secondary);
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev { left: 10px; }
.arrow-next { right: 10px; }

/* 📱 Carousel Responsive */
@media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

/* 🏷️ Tiers / Offer */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

/* 🙋 FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;
}

/* ✍️ Author Section */
.author-content {
    flex: 1.5; /* Give more space to the text */
    min-width: 320px;
}

.author-image-container {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.author-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    background: var(--dark-bg-secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 6px solid var(--accent-primary);
    box-shadow: var(--shadow-soft);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 💊 Highlight Pills (Rounded Containers) */
.highlight-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: rgba(214, 240, 90, 0.1);
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px auto 40px;
    gap: 15px;
    box-shadow: var(--shadow-soft);
    line-height: 1.2;
}

.highlight-pill i {
    color: var(--dark-bg-primary);
    flex-shrink: 0;
}

.highlight-pill--trust {
    align-items: center;
    text-align: left;
    max-width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.highlight-pill__stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.35;
}

.highlight-pill__stack-line {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
}

.highlight-pill__stack-line--muted {
    font-weight: 600;
    font-size: 0.98rem;
    opacity: 0.88;
}

.highlight-pill-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: rgba(214, 240, 90, 0.08);
    border: 2px solid rgba(214, 240, 90, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    gap: 15px;
    line-height: 1.2;
    margin: 0 auto 10px;
}

.highlight-pill-dark i {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* 📦 Rounded Containers */
.rounded-highlight {
    background: var(--light-bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    padding: 20px 40px;
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.rounded-highlight i {
    color: var(--dark-bg-primary);
    flex-shrink: 0;
}

/* Rodapé e secção escura (3 passos): cor sólida de base + labirinto + overlay em pseudoelementos */
.section-parallax,
footer {
    position: relative;
    background-color: var(--dark-bg-primary);
    background-image: none;
    color: var(--text-light);
    border-top: 1px solid rgba(214, 240, 90, 0.12);
    border-bottom: 1px solid rgba(214, 240, 90, 0.1);
    overflow: hidden;
    padding: 72px 5% 48px;
}

.section-parallax::before,
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--maze-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    pointer-events: none;
}

.section-parallax::after,
footer::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 42, 24, 0.94) 0%,
        rgba(26, 42, 24, 0.91) 50%,
        rgba(47, 74, 44, 0.9) 100%
    );
    pointer-events: none;
}

.section-parallax .container,
footer .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .section-parallax::before,
    footer::before {
        background-attachment: scroll;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-parallax::before,
    footer::before {
        background-attachment: scroll;
    }
}

.section.section-parallax {
    padding: 60px 5%;
}

footer .footer-wrap {
    max-width: 1040px;
    margin: 0 auto;
}

/* Bloco principal: capa + copy */
.footer-brand {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-brand {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        text-align: left;
        gap: 40px 48px;
    }
}

@media (min-width: 960px) {
    .footer-brand {
        grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
        gap: 48px 56px;
    }
}

.footer-cover {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 240px;
}

@media (min-width: 768px) {
    .footer-cover {
        max-width: none;
        width: 100%;
    }
}

.footer-cover-img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 6 / 9;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .footer-cover-img {
        max-width: 100%;
        margin: 0;
    }
}

.footer-brand-content {
    width: 100%;
    max-width: 34rem;
}

@media (min-width: 768px) {
    .footer-brand-content {
        max-width: 36rem;
    }
}

.footer-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.35rem, 3.8vw, 2rem);
    font-weight: 700;
    line-height: 1.18;
    color: #d4eba8;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    margin: 0 0 16px;
    text-wrap: balance;
}

.footer-subtitle {
    font-size: clamp(1.02rem, 2.2vw, 1.15rem);
    line-height: 1.62;
    margin: 0 0 24px;
    color: rgba(232, 245, 200, 0.94);
    font-weight: 400;
    max-width: 38ch;
}

@media (min-width: 768px) {
    .footer-subtitle {
        max-width: none;
    }
}

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

@media (min-width: 768px) {
    .footer-actions {
        align-items: flex-start;
    }
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.88rem;
    padding: 16px 32px;
    width: 100%;
    max-width: 22rem;
}

@media (min-width: 768px) {
    .footer-cta {
        width: auto;
        max-width: none;
    }
}

.footer-cta i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-trust {
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(232, 245, 200, 0.65);
    letter-spacing: 0.02em;
}

/* Avisos legais — Meta, Google e TikTok Ads */
.footer-ads-disclaimer {
    width: 100%;
    margin-top: 48px;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(214, 240, 90, 0.12);
    background: rgba(0, 0, 0, 0.22);
    text-align: left;
}

.footer-ads-disclaimer__title {
    margin: 0 0 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(214, 240, 90, 0.85);
}

.footer-ads-disclaimer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.footer-ads-disclaimer__col {
    min-width: 0;
}

@media (min-width: 768px) {
    .footer-ads-disclaimer__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 40px;
        row-gap: 0;
    }
}

.footer-ads-disclaimer__col p {
    margin: 0 0 12px;
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(232, 245, 200, 0.62);
}

.footer-ads-disclaimer__col p:last-child {
    margin-bottom: 0;
}

.footer-ads-disclaimer strong {
    color: rgba(232, 245, 200, 0.82);
    font-weight: 600;
}

.footer-ads-disclaimer em {
    font-style: italic;
    color: rgba(232, 245, 200, 0.72);
}

@media (min-width: 768px) {
    .footer-ads-disclaimer {
        padding: 32px 36px;
    }

    .footer-ads-disclaimer__col p {
        font-size: 0.8rem;
    }
}

/* Rodapé legal */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-copyline {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(232, 245, 200, 0.55);
    order: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    order: 2;
}

@media (min-width: 640px) {
    .footer-nav {
        justify-content: flex-end;
        order: 2;
    }

    .footer-copyline {
        order: 1;
    }
}

.footer-nav a {
    color: rgba(232, 245, 200, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent-primary);
    opacity: 1;
}

.text-light-override h2, 
.text-light-override p, 
.text-light-override h3 {
    color: var(--text-light) !important;
}

.text-light-override p {
    opacity: 0.9 !important;
}

/* ✨ Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero cover image — 6×9 in portrait ratio (6:9) */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 6 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background-color: var(--dark-bg-secondary);
}

.hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    background: #000;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-image-container--video {
    aspect-ratio: 16 / 9;
    min-height: 200px;
}

.hero-video-mount {
    width: 100%;
    height: 100%;
}

/* 📚 3D Book Effect */
.book-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.book-3d {
    width: 280px;
    aspect-ratio: 6 / 9;
    height: auto;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg);
    transition: transform 0.6s ease;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.2);
}

.book-3d:hover {
    transform: rotateY(-10deg);
}

.book-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 5px 5px 2px;
}

.book-3d::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 100%;
    left: -20px;
    top: 0;
    background: #222;
    transform: rotateY(-90deg);
    transform-origin: right;
    box-shadow: inset -10px 0 20px rgba(0,0,0,0.5);
}

.book-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 36px;
        text-align: center;
        background-position: center top;
        background-image:
            linear-gradient(135deg, rgba(26, 42, 24, 0.92), rgba(0, 0, 0, 0.78)),
            url('../assets/maze.jpg');
    }
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lead"
            "video"
            "below";
        justify-items: center;
        gap: 16px;
    }
    .hero-layout--no-video {
        grid-template-areas:
            "lead"
            "below";
    }
    .hero-content-lead,
    .hero-content-below {
        width: 100%;
        max-width: 100%;
    }
    /* Tighter, smaller lead block so the video sits higher */
    .hero .hero-content-lead .highlight-pill-dark {
        font-size: 0.9rem !important;
        padding: 7px 16px !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.5px !important;
    }
    .hero .hero-content-lead h1 {
        font-size: clamp(1.5rem, 6.4vw, 2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
    }
    .hero-content-below {
        margin-top: 4px;
    }
    .hero-content-below > p:first-of-type {
        font-size: 1.05rem !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }
    .hero-content-below .hero-actions {
        justify-content: center;
    }
    .hero .hero-trust {
        margin-top: 14px !important;
    }
    .pricing-card.featured { transform: scale(1); }
}

/* 🤖 AI Chat Agent */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Floating chat desativado — remover .chat-widget--disabled do HTML para reativar */
.chat-widget.chat-widget--disabled {
    display: none !important;
    pointer-events: none;
    visibility: hidden;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: pulse-chat 3s infinite;
}

@keyframes pulse-chat {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214, 240, 90, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(214, 240, 90, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214, 240, 90, 0); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(26, 42, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 240, 90, 0.2);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chat-window.active {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

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

.chat-header {
    background: var(--accent-primary);
    color: var(--dark-bg-primary);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.4;
}

.msg-ai {
    background: rgba(214, 240, 90, 0.1);
    color: var(--text-light);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(214, 240, 90, 0.1);
}

.msg-user {
    background: var(--accent-primary);
    color: var(--dark-bg-primary);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 15px;
    color: white;
    outline: none;
}

.chat-send {
    background: var(--accent-primary);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 📱 Chat Mobile Responsive */
@media (max-width: 500px) {
    .chat-window {
        position: fixed;
        width: auto;
        left: 20px !important;
        right: 20px !important;
        bottom: 100px !important;
        height: 60vh !important;
        transform-origin: bottom center;
    }
}

/* 📜 Extracts Slider */
.extracts-section {
    background: var(--dark-bg-primary);
    color: var(--text-light);
    padding: 60px 5%;
    overflow: hidden;
}

.extracts-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.extract-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.extract-slide.active {
    display: block;
}

.extract-text {
    font-size: 1.8rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--accent-primary);
    margin-bottom: 30px;
}

.extract-meta {
    font-size: 1rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.extract-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(214, 240, 90, 0.3);
    color: var(--accent-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.extract-arrow:hover {
    background: var(--accent-primary);
    color: var(--dark-bg-primary);
}

.extract-prev { left: -10px; }
.extract-next { right: -10px; }

@media (max-width: 768px) {
    .extract-text { font-size: 1.4rem; }
    .extracts-container { padding: 0 40px; }
}

/* 🎙️ Voice agent page (agent.html) */
.mic-permission-alert {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 193, 7, 0.12);
    border: 2px solid rgba(230, 150, 40, 0.5);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.mic-permission-alert__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 42, 24, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg-primary);
}

.mic-permission-alert h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--text-dark);
}

.mic-permission-alert p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.9;
    margin: 0;
}

.agent-voice-section {
    padding-bottom: 120px;
    min-height: 40vh;
}

.agent-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.agent-back-link:hover {
    color: var(--dark-bg-secondary);
}

@media (max-width: 768px) {
    .mic-permission-alert {
        flex-direction: column;
        align-items: stretch;
    }
}

/* 📋 Modal — reserva (Brevemente) */
.order-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.order-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 42, 24, 0.72);
    backdrop-filter: blur(6px);
}

.order-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: min(92vh, 720px);
    overflow-y: auto;
    padding: 36px 28px 32px;
    border-radius: 24px;
    background: var(--light-bg-primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(214, 240, 90, 0.25);
}

.order-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 42, 24, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s ease;
}

.order-modal__close:hover {
    background: rgba(26, 42, 24, 0.12);
}

.order-modal__badge {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--accent-primary);
}

.order-modal__title {
    margin: 0 0 8px;
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.order-modal__lead {
    margin: 0 0 24px;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.75;
}

.order-form__field {
    margin-bottom: 16px;
}

.order-form__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.order-form__field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(26, 42, 24, 0.15);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form__field input:focus {
    outline: none;
    border-color: var(--dark-bg-secondary);
    box-shadow: 0 0 0 3px rgba(214, 240, 90, 0.35);
}

.order-form__error {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: #b42318;
}

.order-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.order-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

.order-form__success {
    text-align: center;
    padding: 12px 0 4px;
    color: var(--text-dark);
}

.order-form__success i,
.order-form__success svg {
    width: 48px;
    height: 48px;
    color: var(--dark-bg-secondary);
    margin-bottom: 12px;
}

.order-form__success p {
    margin: 0;
    line-height: 1.6;
}

/* 🎉 Floating Promo Banner */
/* ── Animation states ── */
.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity 0.35s ease,
                visibility 0.35s ease;
    pointer-events: none;
}

.promo-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.promo-banner.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease-in,
                opacity 0.2s ease,
                visibility 0.2s ease;
}

/* ── Hidden URL holder ── */
.promo-banner__link-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Inner row ── */
.promo-banner__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 70px 24px 36px; /* Huge padding for taller banner */
    background: linear-gradient(
        100deg,
        rgba(22, 36, 20, 0.92) 0%,
        rgba(35, 58, 32, 0.90) 55%,
        rgba(22, 36, 20, 0.92) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid rgba(214, 240, 90, 0.4); /* Thicker border */
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* ── Left: offer block ── */
.promo-banner__offer {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Badge */
.promo-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(214, 240, 90, 0.15);
    border: 2px solid rgba(214, 240, 90, 0.5);
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-banner__badge svg {
    width: 18px;
    height: 18px;
}

/* Promo text */
.promo-banner__text {
    margin: 0;
    font-size: 1.25rem; /* Huge text */
    line-height: 1.5;
    color: rgba(232, 245, 200, 0.95);
    min-width: 0;
}

.promo-banner__text strong {
    color: #fff;
    font-weight: 800;
}

.promo-banner__price-old {
    font-weight: 700;
    color: rgba(232, 245, 200, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 80, 60, 0.85);
    text-decoration-thickness: 2px;
    margin-left: 8px;
}

.promo-banner__price-arrow {
    color: rgba(214, 240, 90, 0.6);
    margin: 0 6px;
    font-weight: 700;
}

.promo-banner__price-new {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-primary);
    text-shadow: 0 0 16px rgba(214, 240, 90, 0.5);
    letter-spacing: -0.01em;
}

/* ── Right: action buttons ── */
.promo-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Primary CTA */
.promo-banner__cta.btn {
    padding: 14px 32px;
    font-size: 1.15rem;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.3;
    font-weight: 800;
}

.promo-banner__cta.btn svg {
    width: 20px;
    height: 20px;
}

/* Share button */
.promo-banner__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid rgba(214, 240, 90, 0.4);
    background: rgba(214, 240, 90, 0.1);
    color: var(--accent-primary);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.promo-banner__share-btn:hover {
    background: rgba(214, 240, 90, 0.2);
    border-color: rgba(214, 240, 90, 0.6);
}

.promo-banner__share-btn.is-copied {
    background: rgba(214, 240, 90, 0.3);
    color: #fff;
    border-color: rgba(214, 240, 90, 0.7);
}

.promo-banner__share-btn svg {
    width: 20px;
    height: 20px;
}

/* ── Close button ── */
.promo-banner__close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(232, 245, 200, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.promo-banner__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.promo-banner__close svg {
    width: 20px;
    height: 20px;
}

/* ── Body padding compensation ── */
body:has(.promo-banner.is-visible) {
    padding-bottom: 90px;
}

/* ── Tablet: hide share button label ── */
@media (max-width: 990px) {
    .promo-banner__share-btn span {
        display: none;
    }
    .promo-banner__share-btn {
        padding: 14px 18px;
    }
    .promo-banner__text {
        font-size: 1.1rem;
    }
    body:has(.promo-banner.is-visible) {
        padding-bottom: 98px;
    }
}

/* ── Mobile: two-row layout ── */
@media (max-width: 650px) {
    .promo-banner__inner {
        flex-wrap: wrap;
        padding: 20px 44px 20px 20px;
        gap: 16px;
    }

    .promo-banner__offer {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .promo-banner__text {
        font-size: 1rem;
        width: 100%;
        line-height: 1.4;
    }
    
    .promo-banner__price-new {
        font-size: 1.3rem;
    }

    .promo-banner__actions {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .promo-banner__cta.btn {
        flex: 1;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .promo-banner__share-btn {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .promo-banner__share-btn span {
        display: inline;
    }

    .promo-banner__close {
        top: 14px;
        transform: none;
    }

    body:has(.promo-banner.is-visible) {
        padding-bottom: 140px;
    }
}

/* 📱 Read + Listen / Any device — format showcase */
.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.format-card {
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.format-card__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark-bg-primary);
}

.format-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.format-card:hover .format-card__media img {
    transform: scale(1.05);
}

.format-card__body {
    padding: 24px 24px 28px;
}

.format-card__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.format-card__text {
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.78;
    margin: 0;
}

@media (max-width: 600px) {
    .format-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .format-card__body {
        padding: 16px 16px 20px;
    }

    .format-card__title {
        font-size: 1rem;
    }

    .format-card__text {
        font-size: 0.88rem;
    }
}

/* 🧾 Pricing card — "what you get" checklist */
.pricing-card__features {
    list-style: none;
    text-align: left;
    margin: 18px 0 4px;
    padding: 0;
    display: grid;
    gap: 11px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.pricing-card__features li i {
    color: #2F4A2C;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 2px;
}


/* ✅ Hero trust row — readable checkmarked items (overrides small faint line) */
.hero .hero-trust {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px !important;
    margin-bottom: 0 !important;
    font-size: 1.08rem !important;
    opacity: 1 !important;
}
.hero .hero-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 1;
    white-space: nowrap;
    line-height: 1.3;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(214, 240, 90, 0.38);
    border-radius: 999px;
    padding: 9px 18px;
}
.hero .hero-trust__item i,
.hero .hero-trust__item svg {
    width: 18px;
    height: 18px;
    color: #D6F05A;
    stroke: #D6F05A;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .hero .hero-trust { justify-content: center; }
}

/* ── How it works / steps ── */
.steps-section .section-title { margin-bottom: 44px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}
.steps-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(47, 74, 44, 0.12);
    border-radius: 20px;
    padding: 38px 26px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47, 74, 44, 0.06);
}
.steps-card__num {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: var(--dark-bg-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.steps-card__icon {
    width: 34px;
    height: 34px;
    color: #2F4A2C;
    margin-bottom: 14px;
}
.steps-card__title { font-size: 1.15rem; margin-bottom: 10px; }
.steps-card__text {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-dark);
    opacity: 0.82;
    margin: 0;
}
.steps-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 40px auto 0;
    padding: 16px 24px;
    background: rgba(214, 240, 90, 0.16);
    border: 1px solid rgba(214, 240, 90, 0.5);
    border-radius: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}
.steps-note i { color: #2F4A2C; width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 32px; max-width: 420px; }
    .steps-note { flex-direction: column; }
}

/* ── Merged two-column section (audience + origin) ── */
.merge-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.merge-2col__col { min-width: 0; }
.quote-card-sm {
    position: relative;
    background: var(--dark-bg-primary);
    padding: 20px 22px;
    border-radius: 16px;
    overflow: hidden;
}
.quote-card-sm i,
.quote-card-sm svg {
    color: var(--accent-primary);
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    opacity: 0.5;
}
.quote-card-sm p {
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 860px) {
    .merge-2col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Book showcase: tighter height ── */
.book-showcase { padding-top: 38px; padding-bottom: 38px; }
.book-showcase .book-3d { width: 230px; }
@media (max-width: 768px) {
    .book-showcase { padding-top: 28px; padding-bottom: 28px; }
}

/* ── Mobile overflow safety (prevent horizontal scroll on small screens) ── */
html { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }
.section-title, h1, h2, h3, p { overflow-wrap: break-word; word-break: break-word; }

/* ── Pricing card: struck-through old price ── */
.price__old {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 80, 60, 0.9);
    text-decoration-thickness: 3px;
    margin-bottom: 4px;
}
.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 2px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(220, 80, 60, 0.12);
    border: 1px solid rgba(220, 80, 60, 0.45);
    color: #C0392B;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.price-pill i, .price-pill svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.5px;
}

/* ── Hero VSL video player ── */
.hero-vsl {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 480 / 608; /* match video resolution */
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.hero-vsl__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-vsl__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.40));
    transition: opacity 0.35s ease;
}
.hero-vsl.is-playing .hero-vsl__overlay {
    opacity: 0;
    pointer-events: none;
}
.hero-vsl__play {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background 0.25s ease;
}
.hero-vsl__overlay:hover .hero-vsl__play {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.28);
}
.hero-vsl__play i,
.hero-vsl__play svg {
    width: 32px;
    height: 32px;
    color: #fff;
    fill: #fff;
    margin-left: 4px;
}
.hero-vsl__text {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    max-width: 84%;
    padding: 11px 20px;
    border-radius: 16px;
    background: rgba(20, 30, 18, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

/* ── Offer section: combo banner image ── */
.offer-combo-img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 8px auto 0;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(26, 42, 24, 0.16);
}
