@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --bg: #080915;
    --bg-soft: #111323;
    --panel: rgba(20, 21, 38, 0.86);
    --panel-strong: rgba(31, 28, 48, 0.94);
    --line: rgba(231, 197, 116, 0.28);
    --text: #F7F0DF;
    --muted: #CFC5AF;
    --gold: #E7C574;
    --gold-deep: #B98D3A;
    --violet: #7B5EB7;
    --whatsapp: #25D366;
    --danger: #FCA5A5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 8%, rgba(123, 94, 183, 0.34), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(231, 197, 116, 0.18), transparent 24%),
        linear-gradient(180deg, #070813 0%, #10111f 46%, #090a14 100%);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 19px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(247, 240, 223, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231, 197, 116, 0.04), transparent 45%, rgba(123, 94, 183, 0.05));
    background-size: 86px 86px, 100% 100%;
    opacity: 0.18;
    z-index: -1;
}

body.quiz-open {
    overflow: hidden;
}

h1, h2, h3 {
    line-height: 1.15;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(8, 9, 21, 0.86);
    border-bottom: 1px solid rgba(231, 197, 116, 0.18);
    backdrop-filter: blur(16px);
}

header .container,
.brand-wrap,
.header-btns {
    display: flex;
    align-items: center;
}

header .container {
    justify-content: space-between;
    gap: 20px;
}

.brand-wrap,
.header-btns {
    gap: 16px;
}

.logo {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(231, 197, 116, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.85rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #41E58A;
    box-shadow: 0 0 14px rgba(65, 229, 138, 0.8);
    animation: blink 1.5s infinite;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.btn:disabled,
.quiz-form.is-submitting .btn {
    cursor: wait;
    opacity: 0.72;
    pointer-events: none;
}

.btn-primary {
    color: #17110A;
    background: linear-gradient(135deg, #FFE6A0 0%, var(--gold) 42%, #B9822E 100%);
    box-shadow: 0 12px 34px rgba(231, 197, 116, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(231, 197, 116, 0.38);
}

.cta-attention {
    animation: pulse-gold 2.4s infinite;
}

.btn-whatsapp {
    color: white;
    background: var(--whatsapp);
}

.btn-large {
    min-height: 58px;
    padding: 16px 34px;
    font-size: 1.08rem;
}

.pulse {
    animation: pulse-green 2s infinite;
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: "☉";
    position: absolute;
    right: -80px;
    top: 120px;
    color: rgba(231, 197, 116, 0.08);
    font-size: 28rem;
    line-height: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(231, 197, 116, 0.28);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(231, 197, 116, 0.08);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.45rem, 5vw, 4.75rem);
    color: #FFF7DD;
    text-shadow: 0 0 34px rgba(231, 197, 116, 0.12);
}

.hero p {
    max-width: 780px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-actions span {
    color: var(--muted);
    font-size: 0.96rem;
}

.hero-bullets,
.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.hero-bullets {
    max-width: 760px;
}

.hero-bullets li,
.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
}

.hero-bullets li::before,
.check-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
}

.mystic-card {
    position: relative;
    padding: 42px;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(231, 197, 116, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(231, 197, 116, 0.12), rgba(123, 94, 183, 0.12)),
        rgba(18, 19, 34, 0.82);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.mystic-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(231, 197, 116, 0.16);
    border-radius: 50%;
}

.sun-symbol {
    width: 170px;
    height: 170px;
    margin: 0 auto 32px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background:
        radial-gradient(circle, rgba(255, 230, 160, 0.95) 0 25%, transparent 26%),
        repeating-conic-gradient(from 0deg, rgba(231, 197, 116, 0.95) 0 8deg, transparent 8deg 20deg);
    box-shadow: 0 0 60px rgba(231, 197, 116, 0.28);
}

.moon-line {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    color: var(--gold);
    text-align: center;
    font-size: 2rem;
}

.mystic-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    color: var(--text);
}

section {
    position: relative;
}

.self-check-section,
.info-section,
.reason-section,
.process-section,
.authority-block,
.whatsapp-card-section,
.testimonials-section,
.faq-section,
.form-section {
    padding: 95px 0;
}

.self-check-section,
.process-section,
.testimonials-section,
.form-section {
    background: rgba(255, 255, 255, 0.015);
}

.reason-section,
.faq-section {
    background: rgba(123, 94, 183, 0.08);
}

.section-title {
    margin-bottom: 44px;
    color: #FFF7DD;
    text-align: center;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.text-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.text-panel .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.text-panel p,
.text-panel h3 {
    margin-bottom: 18px;
}

.text-panel p,
.info-card p,
.faq-item p,
.testimonial-card p,
.authority-info p,
.form-intro,
.privacy-note {
    color: var(--muted);
}

.strong-line {
    color: #FFF0C2 !important;
    font-weight: 700;
}

.benefit-list {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.info-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.info-card,
.faq-item,
.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.benefit-list .info-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
}

.info-grid .info-card,
.testimonial-card,
.faq-item {
    padding: 30px;
}

.info-card h3,
.faq-item h3 {
    margin-bottom: 12px;
    color: #FFF0C2;
    font-size: 1.2rem;
}

.icon,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(231, 197, 116, 0.34);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(231, 197, 116, 0.08);
    font-size: 1.5rem;
    font-weight: 800;
}

.step-number {
    margin-bottom: 20px;
}

.authority-card {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 36px;
    align-items: start;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-strong);
    box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34);
}

.expert-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
    border: 1px solid rgba(231, 197, 116, 0.24);
    filter: saturate(0.82) contrast(1.04);
}

.authority-info h2 {
    margin-bottom: 18px;
    color: #FFF7DD;
}

.authority-info h3 {
    margin-bottom: 8px;
    color: var(--gold);
}

.expert-role {
    margin-bottom: 20px;
    color: #FFF0C2 !important;
    font-weight: 700;
}

.wa-card {
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(231, 197, 116, 0.26);
    border-radius: 18px;
    background: #1B241F;
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
}

.wa-screenshot-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.wa-screenshot-card {
    overflow: hidden;
    border: 1px solid rgba(231, 197, 116, 0.26);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
}

.wa-screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: white;
    background: #075E54;
}

.wa-avatar {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #1A1208;
    font-size: 0.75rem;
    font-weight: 800;
}

.wa-name {
    font-weight: 800;
}

.wa-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.wa-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.wa-msg {
    max-width: 90%;
    padding: 12px 14px;
    border-radius: 12px;
    color: #1E293B;
    background: #F8F2E6;
    font-size: 0.94rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.wa-msg.out {
    align-self: flex-end;
    color: #0F2D1E;
    background: #DCF8C6;
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
    color: var(--gold);
}

.faq-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-strong);
    box-shadow: 0 26px 84px rgba(0, 0, 0, 0.38);
}

.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.quiz-modal.active {
    display: flex;
}

.quiz-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(123, 94, 183, 0.28), transparent 38%),
        rgba(3, 4, 12, 0.82);
    backdrop-filter: blur(10px);
}

.quiz-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(88vh, 760px);
    overflow-y: auto;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 10%, rgba(231, 197, 116, 0.12), transparent 28%),
        var(--panel-strong);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
}

.quiz-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(231, 197, 116, 0.24);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.quiz-progress {
    height: 8px;
    margin: 8px 40px 28px 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.quiz-progress span {
    display: block;
    height: 100%;
    width: 25%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), #FFF0C2);
    transition: width 0.25s ease;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-count {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quiz-step h2 {
    margin-bottom: 22px;
    color: #FFF7DD;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.choice-grid {
    display: grid;
    gap: 12px;
}

.choice-grid label {
    display: block;
    cursor: pointer;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid span {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(231, 197, 116, 0.24);
    border-radius: 12px;
    color: var(--text);
    background: rgba(6, 7, 16, 0.64);
    transition: var(--transition);
}

.choice-grid input:checked + span,
.choice-grid label:hover span {
    border-color: var(--gold);
    background: rgba(231, 197, 116, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.quiz-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.quiz-actions .btn {
    flex: 1;
}

.quiz-prev {
    color: var(--text);
    border: 1px solid rgba(231, 197, 116, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.form-container h2 {
    margin-bottom: 12px;
    color: #FFF7DD;
    text-align: center;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.form-intro {
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFF0C2;
    font-weight: 700;
}

input,
select {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(231, 197, 116, 0.3);
    border-radius: 12px;
    color: var(--text);
    background: rgba(6, 7, 16, 0.72);
    font: inherit;
}

input::placeholder {
    color: rgba(247, 240, 223, 0.48);
}

input:focus,
select:focus {
    outline: 2px solid rgba(231, 197, 116, 0.32);
    border-color: var(--gold);
}

select option {
    color: #1F2937;
}

.submit-btn {
    width: 100%;
    min-height: 60px;
    margin-top: 12px;
    text-transform: uppercase;
}

.form-error {
    min-height: 1.35em;
    margin-top: 8px;
    color: var(--danger);
    font-size: 0.9rem;
    font-weight: 700;
}

.privacy-note {
    margin-top: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2000;
    padding: 12px 16px;
    border-top: 1px solid rgba(231, 197, 116, 0.2);
    background: rgba(8, 9, 21, 0.9);
    backdrop-filter: blur(14px);
}

.sticky-cta .btn {
    width: 100%;
}

footer {
    padding: 46px 0;
    border-top: 1px solid rgba(231, 197, 116, 0.18);
    color: var(--muted);
    background: #060710;
    text-align: center;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s ease-out;
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 12px 34px rgba(231, 197, 116, 0.28); }
    50% { box-shadow: 0 14px 42px rgba(255, 230, 160, 0.5), 0 0 0 8px rgba(231, 197, 116, 0.1); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 980px) {
    .hero-content,
    .authority-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        order: -1;
    }

    .mystic-card {
        min-height: 320px;
    }

    .info-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .authority-card,
    .text-panel,
    .form-container {
        padding: 30px;
    }

    .expert-img {
        max-width: 340px;
        height: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 17px;
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    header .container {
        justify-content: center;
    }

    .online-counter,
    .header-btns {
        display: none;
    }

    .logo {
        font-size: 1rem;
    }

    .hero {
        padding: 96px 0 62px;
    }

    .hero-content {
        gap: 30px;
    }

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

    .hero p {
        font-size: 1.04rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .mystic-card {
        padding: 28px 20px;
        min-height: 270px;
    }

    .sun-symbol {
        width: 120px;
        height: 120px;
        margin-bottom: 18px;
    }

    .moon-line {
        font-size: 1.45rem;
    }

    .self-check-section,
    .info-section,
    .reason-section,
    .process-section,
    .authority-block,
    .whatsapp-card-section,
    .testimonials-section,
    .faq-section,
    .form-section {
        padding: 64px 0;
    }

    .text-panel .section-title {
        text-align: left;
    }

    .benefit-list .info-card {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .icon {
        margin: 0 auto;
    }

    .wa-msg {
        max-width: 100%;
    }

    .wa-screenshot-carousel {
        display: flex;
        width: 400%;
        gap: 0;
        animation: waReviewSlide 16s infinite;
    }

    .whatsapp-card-section .container {
        overflow: hidden;
    }

    .wa-screenshot-card {
        flex: 0 0 25%;
        max-width: calc(100vw - 28px);
        margin: 0;
        border-radius: 18px;
    }

    .form-container {
        padding: 26px 18px;
    }

    .authority-card {
        gap: 24px;
    }

    .expert-img {
        max-width: 300px;
        height: 360px;
    }

    .quiz-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .quiz-dialog {
        width: 100%;
        max-height: 92vh;
        padding: 28px 18px 22px;
        border-radius: 18px;
    }

    .quiz-progress {
        margin-right: 42px;
        margin-bottom: 22px;
    }

    .quiz-actions {
        flex-direction: column;
    }

    .choice-grid {
        gap: 10px;
    }

    .sticky-cta {
        display: block;
    }

    footer {
        padding-bottom: 86px;
    }
}

@keyframes waReviewSlide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}
