/* ============================================================
   DessosaPro — CSS Global da Landing Page
   Design System: Dark Premium + #F06523 Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ─── RESET & VARIÁVEIS ─────────────────────────────────── */
:root {
    --orange: #C4161C;
    --orange-dark: #8E0E12;
    --orange-glow: rgba(196, 22, 28, 0.3);
    --bg: #0F0F10;
    --surface: #1C1C1E;
    --surface2: #252527;
    --border: rgba(255, 255, 255, 0.08);
    --text: #FFFFFF;
    --text-muted: #B3B3B3;
    --text-dim: #666;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 40px rgba(196, 22, 28, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── UTILITÁRIOS ───────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange {
    color: var(--orange);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── BOTÕES ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    box-shadow: 0 4px 24px var(--orange-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--orange-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(196, 22, 28, 0.05);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8B2FC9 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floatOrb 12s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 22, 28, 0.12);
    border: 1px solid rgba(196, 22, 28, 0.3);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-trust span {
    font-size: 13px;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.trust-item svg {
    color: var(--orange);
}

.hero-visual {
    position: relative;
}

.hero-card-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-glow), 0 40px 80px rgba(0, 0, 0, 0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.preview-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
}

.preview-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.preview-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.preview-metric {
    background: var(--surface2);
    border-radius: var(--radius);
    padding: 16px;
}

.preview-metric-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.preview-metric-value {
    font-size: 22px;
    font-weight: 800;
}

.preview-metric-value.orange {
    color: var(--orange);
}

.preview-metric-value.green {
    color: #22c55e;
}

.preview-metric-value.blue {
    color: #60a5fa;
}

.preview-metric-trend {
    font-size: 11px;
    color: #22c55e;
    margin-top: 2px;
}

.preview-chart {
    background: var(--surface2);
    border-radius: var(--radius);
    padding: 16px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    overflow: hidden;
}

.preview-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--orange), rgba(240, 101, 35, 0.3));
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* ─── SEÇÃO GERAL ───────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(196, 22, 28, 0.1);
    border: 1px solid rgba(196, 22, 28, 0.2);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
}

/* ─── PROBLEMA ──────────────────────────────────────────── */
.problema-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.problema-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}

.problema-card:hover {
    border-color: rgba(240, 101, 35, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.problema-card:hover::before {
    opacity: 1;
}

.problema-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.problema-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.problema-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ─── COMO FUNCIONA ─────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px var(--orange-glow);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 15px;
}

.step-connector {
    position: absolute;
    top: 32px;
    left: 60%;
    right: -40%;
    height: 1px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    z-index: 0;
}

/* ─── PLANOS ────────────────────────────────────────────── */
.plans-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}

.plans-toggle span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.plans-toggle span.active {
    color: var(--text);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--surface2);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--orange);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 4px;
    transition: var(--transition);
}

.toggle-switch.active::after {
    left: 26px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.plan-card.featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(196, 22, 28, 0.05), var(--surface));
    box-shadow: var(--shadow-glow);
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}

.plan-price-value {
    font-size: 52px;
    font-weight: 800;
}

.plan-price-period {
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: #22c55e;
    font-size: 16px;
}

.plan-features .x {
    color: var(--text-dim);
    font-size: 16px;
}

/* ─── DEPOIMENTOS ───────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(240, 101, 35, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(240, 101, 35, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--surface2);
}

.faq-icon {
    color: var(--orange);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--surface);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ─── CTA FINAL ─────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(196, 22, 28, 0.1), rgba(196, 22, 28, 0.02));
    border: 1px solid rgba(196, 22, 28, 0.2);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    margin: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 16px 24px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.cta-input:focus {
    border-color: var(--orange);
}

.cta-input::placeholder {
    color: var(--text-dim);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

/* ─── RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 30px;
    }

    .problema-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .cta-section {
        padding: 48px 24px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
    }
}