:root {
    --bg-body: #050816;
    --bg-section: #050816;
    --bg-section-alt: #020617;
    --primary: #6366f1;
    --primary-soft: rgba(99, 102, 241, 0.12);
    --primary-strong: #4f46e5;
    --accent: #22c55e;
    --text-main: #35404e;
    --text-soft: #35404e;
    --text-light: #ddd;
    --border-soft: rgba(243, 230, 199, 0.3);
    --card-bg: #dae7fc;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.7);
    --shadow-soft-light: 0 18px 40px rgba(15, 23, 42, 0.5);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3 {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


.container {
    width: 100%;
    max-width: 1120px;
    padding: 0 20px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #f9fafb;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.55);
    background: linear-gradient(135deg, #4338ca, #4f46e5);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-main);
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: #4f46e5;
    background: rgba(15, 23, 42, 0.9);
}

.btn-light {
    background: #f9fafb;
    color: #111827;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
}

.btn-light:hover {
    background: #e5e7eb;
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 64px 0 40px;
    min-height: 100vh;
    margin: 0;
    background: radial-gradient( circle at 70% 45%, rgba(59, 110, 214, 0.45) 0%, rgba(59, 110, 214, 0.25) 25%, rgba(59, 110, 214, 0.12) 40%, transparent 60% ), radial-gradient( circle at 25% 75%, rgba(236, 179, 33, 0.40) 0%, rgba(236, 179, 33, 0.22) 25%, rgba(236, 179, 33, 0.10) 45%, transparent 65% ), linear-gradient( 180deg, #f5f7fb 0%, #e9eef7 45%, #dde6f4 100% );
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 16px 0 16px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-soft);
    max-width: 520px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 12px;
    color: var(--text-light);
}

.hero-ctas {
    display: flex;
    gap: 10px;
    margin: 22px 0 18px;
    flex-wrap: wrap;
}

.hero-trust p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.hero-trust ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
}

.hero-trust li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
}

.hero-trust li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-card {
    background: #c5d4f1;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-soft);
}

.hero-card h3 {
    margin-top: 0;
    font-size: 16px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    font-size: 13px;
    color: var(--text-main);
}

.hero-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.hero-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-soft);
    font-size: 11px;
}

.hero-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-light)
}

.metric {
    flex: 1;
    min-width: 140px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft-light);
    color: var(--text-light)
}

.metric-number {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.metric-label {
    font-size: 12px;
}

/* SECTIONS BASE */

.section {
    padding: 56px 0;
    background: #f3ebd8;
}

.section-white {
    background: #fff;
}

.section-alt {
    background: #ecf3fd;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-soft);
}

.two-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

/* QUEM SOMOS / CARDS */

.card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.info-card {
    background: #c5d4f1;
    border-radius: var(--radius-md);
    padding: 16px 18px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft-light);
}

.info-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.info-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
}

/* COMO FUNCIONA / STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.step {
    border-radius: var(--radius-md);
    padding: 14px 14px 16px;
    border: 1px solid var(--border-soft);
    position: relative;
    box-shadow: var(--shadow-soft-light);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 12px;
    color: var(--text-soft);
}

.step h3 {
    font-size: 14px;
    margin: 0 0 8px;
}

.step p {
    font-size: 13px;
    margin: 0;
    color: var(--text-soft);
}

/* VANTAGENS */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.benefit {
    border-radius: var(--radius-md);
    padding: 16px 16px 18px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft-light);
}

.benefit h3 {
    font-size: 14px;
    margin: 0 0 8px;
}

.benefit p {
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
}

/* PARA QUEM É */

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    font-size: 14px;
    color: var(--text-soft);
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #6366f1;
}

.card-highlight {
    background: #f3e6c7;
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: var(--shadow-soft);
}

.card-highlight h3 {
    margin-top: 0;
    font-size: 16px;
}

.card-highlight p {
    font-size: 13px;
    color: var(--text-soft);
}

/* CTA STRIP */

.cta-strip {
    background: radial-gradient( circle at 70% 45%, rgba(59, 110, 214, 0.45) 0%, rgba(59, 110, 214, 0.25) 25%, rgba(59, 110, 214, 0.12) 40%, transparent 60% ), radial-gradient( circle at 25% 75%, rgba(236, 179, 33, 0.40) 0%, rgba(236, 179, 33, 0.22) 25%, rgba(236, 179, 33, 0.10) 45%, transparent 65% ), linear-gradient( 180deg, #f5f7fb 0%, #e9eef7 45%, #dde6f4 100% );
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* FAQ */

.faq-list {
    margin-top: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--shadow-soft);
}

.faq-item + .faq-item {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.faq-question {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--text-main);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
}

.faq-icon {
    margin-left: 12px;
    font-size: 18px;
    color: var(--text-soft);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0 0 14px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* CONTATO */

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--text-soft);
}

.contact-highlights li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.contact-highlights li::before {
    content: "✓";
    position: absolute;
    left: 2px;
    top: 0;
    font-size: 12px;
    color: #22c55e;
}

.contact-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 20px 18px;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

label {
    font-size: 13px;
}

input,
select,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 8px 10px;
    color: var(--text-main);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.5);
}

textarea {
    resize: vertical;
}

.form-note {
    margin: 6px 0 0;
    font-size: 11px;
    color: var(--text-soft);
}

/* FOOTER */

.footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    font-size: 13px;
    color: var(--text-soft);
    padding-bottom: 12px;
}

.footer-right {
    display: flex;
    gap: 32px;
}

.footer-col h4 {
    margin: 0 0 6px;
    font-size: 13px;
    color: #e5e7eb;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding: 10px 0;
    font-size: 12px;
    color: var(--text-soft);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    color: var(--text-soft);
}

/* RESPONSIVO */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-cols {
        grid-template-columns: 1fr;
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        height: 64px;
    }

    .nav {
        position: absolute;
        inset: 64px 16px auto;
        flex-direction: column;
        gap: 8px;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 16px;
        padding: 12px 16px 16px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        box-shadow: var(--shadow-soft);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-right {
        justify-content: space-between;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
    }
}
