/* ==========================================================================
   Design System: Litúrgico Nobre (Catedral Digital / Ariel Lazari)
   ========================================================================== */
:root {
    /* Superfícies & Fundos (Dark Sacro Nobre) */
    --color-bg-primary: #0b0f0d;
    --color-bg-secondary: #111714;
    --color-bg-tertiary: #161e1a;
    --color-bg-card: rgba(255, 255, 255, 0.035);
    --color-bg-card-hover: rgba(255, 255, 255, 0.065);

    /* Acentos Sacros & Litúrgicos */
    --color-primary: #c9a859;           /* Dourado Sacro Real */
    --color-primary-light: #e5cd8d;     /* Dourado Champagne */
    --color-primary-dark: #9f7e34;      /* Dourado Envelhecido */
    
    --color-liturgical-red: #b91c1c;    /* Vermelho Carmesim Litúrgico */
    --color-liturgical-red-light: #ef4444;
    --color-liturgical-red-bg: rgba(185, 28, 28, 0.12);

    /* Conversão (CTA) */
    --color-cta: #16a34a;               /* Verde Esmeralda */
    --color-cta-light: #22c55e;
    --color-cta-dark: #15803d;
    --shadow-cta: 0 10px 30px rgba(34, 197, 94, 0.35);
    --shadow-cta-hover: 0 14px 40px rgba(34, 197, 94, 0.55);

    /* Tipografia & Contrastes */
    --color-text-main: #f8fafc;
    --color-text-muted: #cbd5e1;
    --color-text-dim: #94a3b8;

    /* Bordas */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.14);
    --color-border-gold: rgba(201, 168, 89, 0.25);
    --color-border-gold-hover: rgba(201, 168, 89, 0.6);

    /* Fontes */
    --font-titles: 'Cormorant Garamond', 'Roboto Slab', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Sombras & Efeitos */
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.45);
    --shadow-card-hover: 0 25px 50px rgba(0, 0, 0, 0.65);
    --shadow-gold-glow: 0 0 35px rgba(201, 168, 89, 0.15);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Raios */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   Reset & Estilos Globais
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.small-container {
    max-width: 840px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    align-items: center;
}

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

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

.highlight-gold {
    color: var(--color-primary);
}

.highlight-red {
    color: var(--color-liturgical-red-light);
}

/* ==========================================================================
   Componente: Botão CTA (Alta Conversão & Glow Animado)
   ========================================================================== */
.cta-block {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cta-block.center-block {
    align-items: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-cta-dark) 0%, var(--color-cta) 50%, var(--color-cta-light) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.8px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-cta);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    width: fit-content;
    max-width: 100%;
    text-transform: uppercase;
    animation: cta-pulse-glow 2.2s infinite ease-in-out;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cta-light) 0%, var(--color-cta) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-cta-hover);
    color: #ffffff;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-cta .btn-text {
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}

.btn-cta .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.btn-cta:hover .btn-icon {
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.4);
}

@keyframes cta-pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================================================
   1. Hero Section (Exatamente 1 Dobra Inteira — 100dvh)
   ========================================================================== */
.section-hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    box-sizing: border-box;
}

.hero-bg-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    height: auto;
    max-height: 92dvh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(201, 168, 89, 0.08);
    border: 1px solid var(--color-border-gold);
    color: var(--color-primary-light);
    font-size: clamp(0.72rem, 0.95vh, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: clamp(10px, 1.6vh, 18px);
}

.hero-badge i {
    color: var(--color-primary);
    font-size: 0.75rem;
}

.hero-title {
    font-family: var(--font-titles);
    font-size: clamp(2.3rem, 3.4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.4vh, 14px);
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: var(--font-titles);
    font-size: clamp(2.3rem, 3.4vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-primary-light);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.5px;
    margin-bottom: clamp(12px, 1.8vh, 18px);
}

.hero-checks {
    list-style: none;
    display: flex;
    gap: 16px;
    margin-top: clamp(12px, 1.8vh, 18px);
    margin-bottom: 0;
}

.hero-checks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1vw, 0.98rem);
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
}

.hero-checks li i {
    color: var(--color-cta-light);
}

.hero-paragraph-lead {
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: clamp(6px, 1vh, 12px);
}

/* ==========================================================================
   2. Section: Passo a Passo (Gatilho da Atenção)
   ========================================================================== */
.section-step {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.step-text-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.12rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.step-text-body p strong {
    color: #ffffff;
}

.access-highlight-box {
    background: linear-gradient(135deg, rgba(201, 168, 89, 0.1) 0%, rgba(201, 168, 89, 0.03) 100%);
    border-left: 3px solid var(--color-primary);
    padding: 18px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.2rem;
    font-family: var(--font-titles);
    font-style: italic;
    color: #ffffff;
    font-weight: 600;
    margin: 10px 0;
}

.step-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-gold);
    height: 100%;
    position: relative;
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.step-image-wrapper:hover img {
    transform: scale(1.02);
}

/* ==========================================================================
   3. Section: Comparativo Sem Livro vs Com Livro
   ========================================================================== */
.section-comparative {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
}

.compare-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.compare-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.compare-card--bad {
    border-color: rgba(239, 68, 68, 0.25);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.compare-card--good {
    border-color: var(--color-border-gold);
    background: linear-gradient(180deg, rgba(201, 168, 89, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: var(--shadow-gold-glow);
}

.compare-title {
    font-family: var(--font-titles);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.compare-card--bad .compare-title {
    color: var(--color-liturgical-red-light);
}

.compare-card--good .compare-title {
    color: var(--color-primary);
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.compare-card--bad .compare-icon {
    color: var(--color-liturgical-red-light);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.compare-card--good .compare-icon {
    color: var(--color-cta-light);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ==========================================================================
   4. Section: Oferta Especial
   ========================================================================== */
.section-offer {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.offer-card {
    background: linear-gradient(180deg, rgba(201, 168, 89, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-gold-glow), var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-mockup-wrapper {
    margin-bottom: 20px;
    max-width: 260px;
    display: flex;
    justify-content: center;
}

.offer-mockup-wrapper img {
    max-height: 280px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    animation: mockup-float 4s ease-in-out infinite;
}

@keyframes mockup-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.offer-tag {
    display: inline-block;
    background: rgba(201, 168, 89, 0.15);
    border: 1px solid var(--color-primary);
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.offer-title {
    font-family: var(--font-titles);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.offer-payments {
    margin-top: 24px;
}

/* ==========================================================================
   5. Section: Garantia
   ========================================================================== */
.section-warranty {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
}

.warranty-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.warranty-badge img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.warranty-title {
    font-family: var(--font-titles);
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

/* ==========================================================================
   6. Section: Autores
   ========================================================================== */
.section-author {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.author-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
    margin-top: 48px;
}

.author-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.author-image-wrapper {
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-gold);
    width: 100%;
    max-width: 100%;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.author-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-smooth);
}

.author-card:hover .author-image-wrapper img {
    transform: scale(1.03);
}

.author-name {
    font-family: var(--font-titles);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-handle {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.author-bullets {
    line-height: 1.7;
    color: var(--color-text-muted);
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.02rem;
}

.author-bio {
    line-height: 1.7;
    color: var(--color-text-muted);
    font-size: 1.02rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   7. Section: FAQ Accordion
   ========================================================================== */
.section-faq {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
}

.faq-section-title {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}

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

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
    border-color: var(--color-border-gold);
    background: var(--color-bg-card-hover);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    gap: 16px;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: var(--color-bg-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}

.faq-item.active .faq-content {
    max-height: 400px;
}

.faq-content-inner {
    padding: 0 28px 24px 28px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.page-footer {
    padding: 40px 0;
    background-color: var(--color-bg-primary);
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* ==========================================================================
   Modal de Ofertas (Físico vs Ebook)
   ========================================================================== */
.roteiro-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.roteiro-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.roteiro-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.roteiro-modal__dialog {
    position: relative;
    z-index: 2;
    background: #111714;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.roteiro-modal.is-visible .roteiro-modal__dialog {
    transform: scale(1);
}

.roteiro-modal__toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
}

.roteiro-modal__close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.roteiro-modal__close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.roteiro-modal__header {
    text-align: center;
    margin-bottom: 32px;
}

.roteiro-modal__eyebrow {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.roteiro-modal__header h2 {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
}

.roteiro-modal__subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 6px;
}

.roteiro-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.roteiro-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.roteiro-option:hover {
    border-color: var(--color-border-gold);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.roteiro-option__label {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.roteiro-option__image-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.roteiro-option__image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.roteiro-option__button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--color-cta-dark) 0%, var(--color-cta) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.roteiro-option__button:hover {
    background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-light) 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.roteiro-option__price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-light);
}

.roteiro-option__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-dim);
}

.roteiro-modal__footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

/* Trava de scroll ao abrir modal */
html.roteiro-modal-open,
body.roteiro-modal-open {
    overflow: hidden !important;
}

/* ==========================================================================
   Media Queries & Responsividade Mobile
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .grid-2 {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-hero {
        height: 100vh;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        padding: 0;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-container {
        height: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: clamp(20px, 3.5vh, 32px);
    }

    .hero-bg-img {
        opacity: 1;
        object-position: center bottom;
    }

    .hero-text-block {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .hero-badge {
        margin: 0 auto 10px auto;
        font-size: 0.78rem;
        padding: 4px 14px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.05rem);
        line-height: 1.18;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: clamp(1.6rem, 5.5vw, 2.05rem);
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .hero-paragraph-lead {
        font-size: clamp(0.92rem, 3.3vw, 1.05rem);
        line-height: 1.5;
        margin-bottom: 18px;
        max-width: 98%;
        color: var(--color-text-muted);
    }

    .cta-block {
        margin-top: 0;
        margin-bottom: 10px;
        width: auto;
        max-width: 100%;
        align-items: center;
    }

    .btn-cta {
        padding: 11px 22px;
        font-size: 0.9rem;
        gap: 10px;
        width: fit-content;
        max-width: 100%;
    }

    .btn-cta .btn-text {
        font-size: 0.9rem;
    }

    .btn-cta .btn-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .hero-checks {
        position: absolute;
        bottom: 14px;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        margin: 0;
        z-index: 5;
    }

    .hero-checks li {
        font-size: 0.82rem;
        padding: 5px 12px;
        gap: 6px;
        background: rgba(11, 15, 13, 0.75);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-step,
    .section-comparative,
    .section-offer,
    .section-warranty,
    .section-author,
    .section-faq {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-text-body {
        font-size: 1.05rem;
        text-align: left;
    }

    .step-image-wrapper img {
        min-height: 320px;
    }

    .compare-card {
        padding: 30px 20px;
    }

    .offer-card {
        padding: 32px 20px;
    }

    .offer-mockup-wrapper {
        max-width: 190px;
        margin-bottom: 16px;
    }

    .offer-mockup-wrapper img {
        max-height: 200px;
    }

    .offer-title {
        font-size: 1.85rem;
    }

    .warranty-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .authors-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .author-card {
        padding: 24px 20px;
        text-align: left;
    }

    .author-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 240px;
        margin: 0 0 20px 0;
    }

    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .faq-trigger {
        padding: 18px 20px;
        font-size: 1.02rem;
    }

    .faq-content-inner {
        padding: 0 20px 20px 20px;
        font-size: 0.98rem;
    }

    .roteiro-modal__dialog {
        padding: 32px 20px;
    }

    .roteiro-modal__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-cta {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
