/* ============================================================
   E-book Landing Page — CSS
   ============================================================ */

:root {
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-soft: rgba(124, 58, 237, 0.08);
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #faf5ff;
    --bg-dark: #1a0f2e;

    --text: #1e1b2e;
    --text-dim: #6b6379;
    --text-bright: #ffffff;
    --text-light: #c4b8d4;

    --border: #ede9f5;
    --border-strong: #ddd4ea;

    --font-head: 'Sora', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
    --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.15);
    --shadow-primary: 0 12px 40px rgba(124, 58, 237, 0.35);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.6rem); margin-bottom: 1rem; font-weight: 700; }
h3 { font-size: 1.25rem; }

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

/* ---------- Top bar ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--primary), #a855f7);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    border-radius: 100px;
    font-family: 'SF Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
}
.countdown strong {
    color: var(--accent);
    font-weight: 700;
    min-width: 22px;
    text-align: center;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.logo-text em {
    display: block;
    font-style: normal;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 4px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav a {
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--t);
}
.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.45);
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    color: #b45309;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-desc strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.feature-icon { font-size: 16px; }

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

.hero-info {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-info-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.hero-info-item span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---------- Hero image / e-book ---------- */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.hero-image-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulseBg 4s ease-in-out infinite;
}
@keyframes pulseBg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.ebook-cover {
    position: relative;
    width: 320px;
    max-width: 80%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow:
        -20px 20px 60px rgba(124, 58, 237, 0.3),
        20px -10px 40px rgba(251, 191, 36, 0.15);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
}
.ebook-cover:hover {
    transform: rotateY(0) rotateX(0);
}

.ebook-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 16px 22px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}
.ebook-badge strong {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.ebook-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-10px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-title {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 600;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dim);
    opacity: 0.5;
    letter-spacing: -0.5px;
    transition: opacity var(--t);
}
.trust-logo:hover { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- Capítulos ---------- */
.capitulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.capitulo {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.capitulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.capitulo:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.capitulo:hover::before { transform: scaleX(1); }

.capitulo-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-soft);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.capitulo h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
}
.capitulo p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ---------- Para quem é ---------- */
.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.para-quem-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--t);
    border: 1px solid var(--border);
}
.para-quem-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.para-quem-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 18px;
}
.para-quem-item h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
}
.para-quem-item p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ---------- Autor ---------- */
.autor-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.autor-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.autor-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.autor-text h2 {
    margin-bottom: 24px;
}
.autor-text h2 em {
    font-style: normal;
    color: var(--primary);
}
.autor-text p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.autor-text strong { color: var(--text); font-weight: 700; }

.autor-conquistas {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 12px;
}
.autor-conquistas li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.autor-conquistas li:last-child { border-bottom: none; }
.autor-conquistas svg { color: var(--primary); flex-shrink: 0; }

/* ---------- Baixar / Form ---------- */
.baixar-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.baixar-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.baixar-text h2 {
    margin-bottom: 20px;
}
.baixar-text h2 em {
    font-style: normal;
    color: var(--primary);
}
.baixar-text > p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.baixar-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}
.baixar-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.baixar-list svg { color: var(--primary); flex-shrink: 0; }

.baixar-garantia {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.baixar-garantia svg { color: var(--primary); flex-shrink: 0; }
.baixar-garantia strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 700;
}
.baixar-garantia span {
    font-size: 13px;
    color: var(--text-dim);
}

.baixar-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    position: relative;
}
.baixar-form::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}
.baixar-form::before { content: '⬇ DOWNLOAD GRATUITO'; }

.form-header {
    text-align: center;
    margin-bottom: 28px;
}
.form-badge {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.form-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}
.form-header p {
    color: var(--text-dim);
    font-size: 14.5px;
}

.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
}
.form-field label > span {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all var(--t);
}
.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
    justify-content: center;
}
.form-privacy svg { color: var(--primary); }

/* ---------- Depoimentos ---------- */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.depoimento:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.depoimento .stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}
.depoimento p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--text);
    flex-grow: 1;
}
.depoimento-autor strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.depoimento-autor span {
    font-size: 13px;
    color: var(--text-dim);
}

/* ---------- Bônus ---------- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.bonus-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px dashed var(--border-strong);
    transition: all var(--t);
    position: relative;
}
.bonus-item:hover {
    border-color: var(--primary);
    border-style: solid;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.bonus-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}
.bonus-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 18px;
}
.bonus-item h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
}
.bonus-item p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}
.bonus-valor {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.6;
}

.bonus-total {
    background: linear-gradient(135deg, var(--primary), #a855f7);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bonus-total > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.bonus-total strong {
    font-size: 1.1rem;
    font-weight: 700;
}
.bonus-total-valor {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: line-through;
}
.bonus-total-hoje {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.bonus-total-hoje span {
    font-size: 1rem;
    opacity: 0.9;
}
.bonus-total-hoje strong {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: all var(--t);
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item p strong { color: var(--text); }

/* ---------- CTA Final ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a1a4a 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-final .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-final h2 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}
.cta-final h2 em {
    font-style: normal;
    color: var(--accent);
}
.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-light);
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-final .btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.35);
}
.cta-final .btn-primary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 24px;
}
.cta-note svg { color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: var(--text-light);
}
.footer h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
}
.footer a:hover { color: var(--accent); }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: var(--accent); }
.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--accent);
    font-weight: 700;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-image { min-height: auto; }
    .ebook-cover { transform: none; }
    .ebook-badge { top: 0; right: 10%; }

    .autor-grid { grid-template-columns: 1fr; gap: 50px; }
    .autor-image { max-width: 400px; margin: 0 auto; }

    .baixar-grid { grid-template-columns: 1fr; gap: 50px; }
    .bonus-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; }

    .top-bar-inner { flex-direction: column; gap: 12px; text-align: center; }
    .countdown { font-size: 12px; }

    .hero-features { gap: 14px; }
    .hero-info { gap: 24px; }
    .hero-info-item strong { font-size: 1.3rem; }

    .ebook-cover { width: 220px; }
    .ebook-badge { width: 80px; height: 80px; padding: 12px; }
    .ebook-badge strong { font-size: 1.5rem; }
    .ebook-badge span { font-size: 9px; }

    .trust-logos { gap: 24px; }
    .trust-logo { font-size: 1.1rem; }

    .baixar-form { padding: 32px 22px; }
    .bonus-total { padding: 24px 22px; text-align: center; justify-content: center; }
    .bonus-total-hoje strong { font-size: 1.6rem; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
}