/* =========================================================
   E-BOOK CAVALINHO DE BALANÇO EM AMIGURUMI
   Design System — Cozy & Premium
========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
    --primary-color: #05436c;
    --primary-dark: #05436c;
    --secondary-color: #b7cddc;
    --accent-color: #e68898;
    --accent-dark: #cc5e77;

    --text-dark: #05436c;
    --text-light: #3e6884;
    --bg-light: #faf8f5;
    --bg-blue-soft: #eef3f6;
    --bg-rose-soft: #faf1ee;
    --white: #ffffff;

    --primary-gradient: linear-gradient(135deg, #05436c, #05436c);
    --accent-gradient: linear-gradient(135deg, #cc5e77, #e68898);
    --success-gradient: linear-gradient(135deg, #4a9c7d, #2f6b52);

    --shadow-sm: 0 2px 12px rgba(44, 66, 81, 0.06);
    --shadow-soft: 0 10px 30px rgba(44, 66, 81, 0.08);
    --shadow-hover: 0 20px 50px rgba(44, 66, 81, 0.14);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;

    /* Curvas de easing refinadas (Atualizadas) */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito mola */
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1); /* Ultra suave */
    --transition: all 0.45s var(--ease-out);

    --content-max-width: 1120px;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

::selection {
    background: var(--accent-color);
    color: var(--white);
}

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

/* Compensa o header fixo na rolagem por âncoras */
section[id] {
    scroll-margin-top: 90px;
}

/* ---------- 3. ACESSIBILIDADE ---------- */
.skip-link {
    position: absolute;
    top: -70px;
    left: 16px;
    z-index: 3000;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- 4. BOTÕES ---------- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(219, 123, 112, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Brilho que atravessa o botão no hover */
.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-soft);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(219, 123, 112, 0.45);
}
.btn-cta:hover::after { left: 130%; }
.btn-cta:active { transform: translateY(-1px); }

.btn-buy {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 50px;
    border: none;
    background: var(--success-gradient);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0.9rem;
    box-shadow: 0 8px 30px rgba(47, 107, 82, 0.3);
    animation: pulse-green 2.2s infinite;
    transition: var(--transition);
}
.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(47, 107, 82, 0.4);
    animation-play-state: paused; /* Pausa o pulso no hover */
}

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(74, 156, 125, 0.55); }
    70%  { box-shadow: 0 0 0 16px rgba(74, 156, 125, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 156, 125, 0); }
}

/* ---------- 5. HEADER ---------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.1rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    border-bottom-color: rgba(44, 66, 81, 0.08);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 58px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.logo:hover img { transform: scale(1.04); }

/* ---------- 6. HERO ---------- */
.hero {
    min-height: 100vh;
    padding: 150px 0 90px;
    background-image: url('images/fundo_desktop.webp');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Textura sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Transição suave para a próxima seção */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(44, 66, 81, 0.2);
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    text-wrap: balance; /* Adicione esta linha */
}

.hero-text .highlight { color: var(--accent-color); }

.hero-text p {
    color: var(--text-dark);
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-text p strong,
.hero-text p .highlight-p {
    font-weight: 700;
    color: var(--accent-dark);
}

/* Selo de confiança abaixo do CTA */
.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.6rem;
    margin-top: 1.8rem;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}
.hero-trust i { color: var(--accent-color); }

.hero-visual {
    position: relative;
    text-align: center;
    animation: float 8s ease-in-out infinite;
}

/* Brilho difuso atrás dos mockups */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(219, 123, 112, 0.2), transparent 65%);
    z-index: 0;
}

.hero-mockup {
    width: min(100%, 500px);
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.22));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.hero-mockup:hover {
    transform: scale(1.04);
}
.scroll-down {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    color: var(--primary-color);
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    animation: bounce 2.4s infinite;
    z-index: 10;
    transition: var(--transition);
}
.scroll-down:hover {
    background: var(--white);
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

/* Flutuação orgânica com rotação sutil */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(-1deg); }
}

/* ---------- 7. SEÇÕES — BASE ---------- */
.ebook-section,
.audience-section,
.steps-section,
.guarantee-section,
.author-section,
.pricing-section,
.faq-section {
    padding: 96px 0;
    position: relative;
}

.ebook-section   { background: linear-gradient(180deg, var(--white), var(--bg-light)); }
.audience-section { background: linear-gradient(135deg, var(--bg-blue-soft), #bbdeef); }
.steps-section   { background: linear-gradient(135deg, var(--bg-rose-soft), #f7e9e6); }
.pricing-section { background: linear-gradient(135deg, var(--bg-blue-soft), #bbdeef); }
.faq-section     { background: linear-gradient(180deg, var(--white), var(--bg-light)); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-pre-title {
    display: inline-block;
    background: rgba(219, 123, 112, 0.12);
    color: var(--accent-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.1rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

.cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

/* ---------- 8. SEÇÃO DO E-BOOK ---------- */
.ebook-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.ebook-preview-container {
    text-align: center;
}

.ebook-preview-container img {
    width: 100%;
    max-width: 420px;
    display: inline-block;
    filter: drop-shadow(0 25px 35px rgba(44, 66, 81, 0.18));
    transition: var(--transition);
}
.ebook-preview-container:hover img {
    transform: translateY(-10px) rotate(-1deg);
}

.ebook-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.ebook-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 66, 81, 0.06);
    transition: var(--transition);
}
.ebook-benefit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(219, 123, 112, 0.35);
}

.ebook-benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(219, 123, 112, 0.3);
}

.ebook-benefit-item h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.ebook-benefit-item p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- 9. PARA QUEM É ---------- */
.target-audience-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--accent-color);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: var(--transition);
}
.target-audience-container:hover {
    box-shadow: var(--shadow-hover);
}

.target-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.target-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.target-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-top: 4px;
    box-shadow: 0 6px 16px rgba(44, 66, 81, 0.22);
}

.target-audience-list p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.08rem);
}
.target-audience-list p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.target-audience-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 520px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.audience-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s var(--ease-soft), transform 3.2s var(--ease-out);
    will-change: opacity, transform;
}
.audience-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Legenda abaixo do carrossel */
.audience-caption {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(44, 66, 81, 0.08);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}
.audience-caption i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* ---------- 10. ESTRUTURA (PASSOS) ---------- */
.steps-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.6rem 2rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(44, 66, 81, 0.05);
    position: relative;
    transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-smooth);
}
.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(219, 123, 112, 0.4);
    border: 3px solid var(--white);
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- 11. GARANTIA ---------- */
.guarantee-section {
    background-image: url('images/fundo_garantia.webp');
    background-position: center;
    background-size: cover;
}
.guarantee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 68, 102, 0.88), rgba(17, 68, 102, 0.78));
}

.guarantee-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--white);
}

.guarantee-seal-wrapper {
    text-align: center;
    animation: float 7s ease-in-out infinite;
}
.guarantee-seal-wrapper img {
    width: 220px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.guarantee-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.guarantee-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #f2b8b1;
    margin-bottom: 1.2rem;
}

.guarantee-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.88;
    margin-bottom: 1.5rem;
}

.guarantee-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.75rem 1.3rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* ---------- 12. AUTORA ---------- */
.author-section {
    background-image: url('images/bg_desktop_autor.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.author-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
}

.author-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.author-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2.8rem;
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.8rem;
}

.author-photo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--white);
}
.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.author-photo:hover img { transform: scale(1.05); }

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.author-bio .section-pre-title { margin-bottom: 0.6rem; }

.author-bio p {
    color: var(--text-dark);
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: 0.9rem;
}
.author-bio p:last-of-type { margin-bottom: 0; }

/* Estilização dos links do Instagram na seção da autora */
.author-content-wrapper ul a {
    color: var(--accent-dark); /* Aplica o rosa escuro do seu tema */
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.author-content-wrapper ul a:hover {
    color: var(--accent-color); /* Muda para um rosa mais claro ao passar o mouse */
    text-decoration: underline;
}

/* Remove as bolinhas da lista para um visual mais limpo (opcional) */
.author-content-wrapper ul {
    list-style-type: none;
    padding-left: 0;
}

.author-content-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* ---------- 13. PREÇO ---------- */
.pricing-container {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 25px 70px rgba(44, 66, 81, 0.18);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(219, 123, 112, 0.35);
    transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-smooth);
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 90px rgba(44, 66, 81, 0.24);
}

.price-badge {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.9rem 0;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-section {
    padding: 1.8rem 2rem 1.2rem;
    border-bottom: 1px solid #f0ebe6;
}

.price-original {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}
.price-original s { color: var(--accent-dark); font-weight: 600; }

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.price-currency {
    font-size: 1.6rem;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.price-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.price-savings {
    background: #e7f4ec;
    color: #2f6b52;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.features-section {
    padding: 1.6rem 2rem;
    border-bottom: 1px solid #f0ebe6;
}

.features-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    text-align: left;
}

.price-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.feature-item .fa-check {
    color: #2f6b52;
    width: 22px;
    height: 22px;
    background: #e7f4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-section { padding: 1.6rem 2rem 1.2rem; }

.urgency-text {
    color: #c0453a;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 1.6em;
}

.payment-methods {
    padding: 0.9rem 2rem;
    border-top: 1px solid #f0ebe6;
}
.payment-methods p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.guarantee-box {
    padding: 1.3rem 2rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: left;
}

.guarantee-seal {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.guarantee-text strong {
    color: var(--primary-color);
    display: block;
    font-size: 0.98rem;
}
.guarantee-text small {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ---------- 14. FAQ ---------- */
.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 66, 81, 0.06);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: rgba(219, 123, 112, 0.4);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent-dark); }

.faq-question i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: transform 0.6s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}
.faq-question[aria-expanded="true"] i {
    transform: rotate(135deg);
    background: var(--accent-color);
    color: var(--white);
}

/* Animação suave sem max-height fixo */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-answer[aria-hidden="false"] { grid-template-rows: 1fr; }

.faq-answer-inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.faq-answer[aria-hidden="false"] .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}
.faq-answer-inner p {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.97rem;
}

/* ---------- 15. FOOTER ---------- */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 2.2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    height: 48px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--transition);
}
.footer-logo img:hover { opacity: 1; }

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.75;
    font-style: italic;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.55;
}

/* ---------- 16. BARRA CTA FIXA (STICKY) ---------- */
.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translate(-50%, 160%);
    opacity: 0;
    width: min(700px, calc(100% - 28px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(44, 66, 81, 0.1);
    border-radius: 60px;
    box-shadow: 0 18px 45px rgba(44, 66, 81, 0.22);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px 12px 10px 26px;
    z-index: 900;
    transition: transform 0.65s var(--ease-out), opacity 0.5s var(--ease-out);
}
.sticky-cta.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex-grow: 1;
    min-width: 0;
}
.sticky-cta-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-cta-price { font-size: 0.8rem; color: var(--text-light); }
.sticky-cta-price s { margin-right: 6px; }
.sticky-cta-price strong {
    color: var(--accent-dark);
    font-size: 1.1rem;
    font-weight: 800;
}

.sticky-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-gradient);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(47, 107, 82, 0.35);
    transition: var(--transition);
}
.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 107, 82, 0.45);
}

.sticky-cta-close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(44, 66, 81, 0.07);
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.sticky-cta-close:hover {
    background: rgba(44, 66, 81, 0.15);
    color: var(--text-dark);
}

/* ---------- 17. ANIMAÇÕES DE ENTRADA ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    filter: blur(8px);
    transition: opacity 1s var(--ease-smooth), 
                transform 1s var(--ease-smooth), 
                filter 1s var(--ease-smooth);
    will-change: opacity, transform, filter;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---------- 18. RESPONSIVIDADE ---------- */
@media (min-width: 1024px) {
    .logo img { height: 66px; }

    .hero-content {
        grid-template-columns: 0.85fr 1.15fr;
    }
    .hero-text { max-width: 470px; }

    .hero-mockup {
        width: min(100%, 580px);
        transform: rotate(-2deg);
    }
    .hero-mockup:hover {
        transform: rotate(0deg) scale(1.04);
    }
}

@media (max-width: 1023px) {
    .ebook-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
}

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

    .hero {
        min-height: auto;
        padding: 125px 0 70px;
        background-image: url('images/fundo_movel.webp');
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text { max-width: 100%; }
    .hero-trust { justify-content: center; }
    .scroll-down { display: none; }

    .ebook-section, .audience-section, .steps-section,
    .guarantee-section, .author-section,
    .pricing-section, .faq-section {
        padding: 64px 0;
    }

    .target-audience-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.2rem;
    }
    .target-audience-visual { max-width: 300px; }

    .steps-grid { grid-template-columns: 1fr; }

    .author-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.8rem;
        padding: 2.2rem;
    }
    .author-photo { width: 170px; height: 170px; }

    .price { font-size: 3.2rem; }

    /* Sticky CTA vira barra inferior full-width */
    .sticky-cta {
        left: 0;
        bottom: 0;
        transform: translateY(160%);
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    }
    .sticky-cta.is-visible { transform: translateY(0); }
    .sticky-cta-title { display: none; }
    .sticky-cta-button { flex-grow: 1; justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 110px 0 55px; }
    .btn-cta { padding: 15px 28px; font-size: 0.92rem; }
    .target-audience-container { padding: 1.6rem; }
    .step-card { padding: 2.4rem 1.5rem 1.7rem; }
    .guarantee-card { padding: 2rem 1.4rem; }
    .guarantee-seal-wrapper img { width: 170px; }
    .author-content-wrapper { padding: 1.8rem 1.4rem; }
    .author-photo { width: 145px; height: 145px; }
    .price { font-size: 2.7rem; }
    .pricing-card { margin: 0 4px; }
    .faq-question { font-size: 0.95rem; padding: 1.15rem 1.2rem; }
}

/* ---------- 19. MOVIMENTO REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}