/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #5b2de8;
    --primary-light: #7c4df7;
    --accent: #00d4ff;
    --accent2: #ff6b35;
    --gold: #ffd700;
    --dark: #0b0d1a;
    --dark2: #12152b;
    --dark3: #1a1f3a;
    --surface: #1e2444;
    --surface2: #252b50;
    --text: #e8ecff;
    --text-muted: #8892b0;
    --green: #00e676;
    --red: #ff5252;
    --wa: #25D366;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(91, 45, 232, 0.25);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.badge-top {
    display: inline-block;
    background: linear-gradient(135deg, rgba(91, 45, 232, 0.3), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(91, 45, 232, 0.5);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(91, 45, 232, 0.45);
    letter-spacing: 0.3px;
}

.btn-primary small {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 4px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(91, 45, 232, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(91, 45, 232, 0.5), 0 8px 30px rgba(91, 45, 232, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(91, 45, 232, 0), 0 8px 30px rgba(91, 45, 232, 0.45);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(91, 45, 232, 0), 0 8px 30px rgba(91, 45, 232, 0.45);
    }
}

.pulse {
    animation: pulse-ring 2.2s infinite;
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px 12px 12px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: float-wa-bounce 3s ease-in-out infinite;
}

.float-wa svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.float-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.7);
}

@keyframes float-wa-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(91, 45, 232, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0b0d1a 0%, #12152b 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(91, 45, 232, 0.12);
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-sub strong {
    color: var(--accent);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-trust span {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0;
    background: var(--dark2);
}

.problem-section h2 {
    color: var(--text);
    margin-bottom: 40px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-card.bad {
    border-top: 3px solid var(--red);
}

.problem-card.good {
    border-top: 3px solid var(--green);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), var(--surface));
}

.problem-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.problem-card.good p {
    color: var(--text);
    font-size: 1.05rem;
}

/* ===== FLIPBOOK ===== */
.flipbook-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
}

.flipbook-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #0a0a15;
    border-radius: 40px;
    border: 6px solid #2a2a4a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0a0a15;
    border-radius: 12px;
    z-index: 10;
}

.phone-btn {
    position: absolute;
    right: -8px;
    top: 160px;
    width: 4px;
    height: 60px;
    background: #2a2a4a;
    border-radius: 4px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 34px;
}

.flipbook {
    width: 100%;
    height: 100%;
    position: relative;
}

.flip-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 40px 16px 16px;
}

.flip-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.flip-slide.exit {
    opacity: 0;
    transform: translateX(-60px);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.app-logo {
    font-size: 1.4rem;
}

.slide-content h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.slide-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.slide-content p strong {
    color: var(--text);
}

.mock-input {
    margin-bottom: 10px;
}

.mock-input label {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 3px;
}

.input-field {
    background: var(--surface2);
    border: 1px solid rgba(91, 45, 232, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text);
}

.fipe-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-align: center;
    margin-top: 12px;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.photo-thumb {
    background: var(--surface2);
    border: 1px dashed rgba(91, 45, 232, 0.5);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    font-size: 1.4rem;
}

.photo-thumb small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.photo-ok {
    border-color: var(--green);
    background: rgba(0, 230, 118, 0.1);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check {
    font-size: 1rem;
}

.report-preview {
    background: white;
    border-radius: 8px;
    padding: 10px;
    color: #333;
}

.report-header-mock {
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.report-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    padding: 2px 0;
    color: #555;
}

.report-row strong {
    color: #1a1a2e;
}

.sig-mock {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.share-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.share-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.share-btn.wa {
    background: rgba(37, 211, 102, 0.2);
    color: var(--green);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.share-btn.email {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.share-btn.drive {
    background: rgba(91, 45, 232, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(91, 45, 232, 0.3);
}

.report-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.flipbook-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flip-prev,
.flip-next {
    background: var(--surface);
    border: none;
    color: var(--text);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-prev:hover,
.flip-next:hover {
    background: var(--primary);
}

.flip-dots {
    display: flex;
    gap: 8px;
}

.flip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--surface2);
    transition: all 0.3s;
    cursor: pointer;
}

.flip-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.step-labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
}

.step-label {
    font-size: 0.8rem;
    padding: 6px 14px;
    background: var(--surface);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.step-label.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== REPORT SECTION ===== */
.report-section {
    padding: 100px 0;
    background: var(--dark2);
}

.report-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.report-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.report-card-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
}

.report-card-img {
    padding: 16px;
}

.report-card-img img {
    width: 100%;
    border-radius: 8px;
}

.report-placeholder {
    display: flex;
    background: white;
    border-radius: 8px;
    min-height: 280px;
    align-items: stretch;
}

.rp-content {
    padding: 12px;
    color: #333;
    width: 100%;
}

.rp-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a2e;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.rp-logo {
    font-size: 0.7rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.rp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.rp-field {
    font-size: 0.68rem;
    color: #555;
}

.rp-field span {
    font-weight: 700;
    color: #1a1a2e;
}

.rp-section {
    background: linear-gradient(135deg, rgba(91, 45, 232, 0.1), transparent);
    border-left: 3px solid var(--primary);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 10px 0 6px;
}

.rp-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.rp-photo {
    background: #f0f0f0;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    font-size: 0.65rem;
    color: #888;
}

.rp-check-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.rp-check {
    font-size: 0.72rem;
    padding: 3px 0;
}

.rp-check.ok {
    color: #2e7d32;
}

.rp-check.warn {
    color: #e65100;
}

.rp-photo-full {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.rp-photo-item {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.6rem;
    color: #666;
}

.rp-sig-area {
    padding: 16px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

.rp-sig-line {
    font-family: cursive;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.sig-underline {
    border-bottom: 1px solid #aaa;
    margin: 4px 20px;
}

.rp-contacts {
    font-size: 0.7rem;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rp-date {
    font-size: 0.68rem;
    color: #888;
    margin-top: 8px;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark3) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 45, 232, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 100px 0;
    background: var(--dark2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.trust-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-6px);
}

.trust-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 16px;
}

.trust-logo.google {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.trust-logo.supa {
    background: linear-gradient(135deg, #3ECF8E, #1a9a6c);
}

.trust-logo.hot {
    background: linear-gradient(135deg, #f30, #ff6600);
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.guarantee-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(91, 45, 232, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(91, 45, 232, 0.3);
    border-radius: var(--radius);
    padding: 28px 36px;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 6px;
}

.guarantee-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== EBOOK SECTION ===== */
.ebook-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%);
}

.ebook-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.ebook-image {
    position: relative;
    text-align: center;
}

.ebook-image img {
    max-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.ebook-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #1a1a2e;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 50px;
    transform: rotate(12deg);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
    animation: badge-wiggle 2s ease-in-out infinite;
}

@keyframes badge-wiggle {

    0%,
    100% {
        transform: rotate(12deg)
    }

    50% {
        transform: rotate(8deg) scale(1.05)
    }
}

.ebook-benefits {
    list-style: none;
    margin: 16px 0 24px;
}

.ebook-benefits li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form input {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.lead-form input:focus {
    border-color: var(--primary);
}

.lead-form input::placeholder {
    color: var(--text-muted);
}

.lead-form button {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
}

.lead-form small {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    margin: 28px auto;
    max-width: 400px;
    border: 1px solid rgba(91, 45, 232, 0.3);
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin: 8px 0;
}

.price-new strong {
    color: var(--green);
    font-size: 2.6rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.big-btn {
    font-size: 1.25rem;
    padding: 22px 44px;
    margin-top: 24px;
    width: 100%;
    max-width: 480px;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.cta-badges span {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--dark);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(91, 45, 232, 0.4);
}

.faq-item.open {
    border-color: rgba(91, 45, 232, 0.5);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 20px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: none;
}

.faq-a a {
    color: var(--accent);
}

.faq-item.open .faq-a {
    display: block;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: var(--dark2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.qr-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(91, 45, 232, 0.3);
}

.qr-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.qr-placeholder {
    background: white;
    border-radius: 8px;
    display: inline-flex;
    padding: 12px;
    margin-bottom: 12px;
}

.qr-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.qr-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-legal {
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--primary-light);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .ebook-wrapper {
        grid-template-columns: 1fr;
    }

    .ebook-image {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .qr-card {
        display: none;
    }

    .guarantee-banner {
        flex-direction: column;
        text-align: center;
    }

    .float-wa span {
        display: none;
    }

    .float-wa {
        padding: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }
}