:root {
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --secondary: #f97316;
    --bg: #020617;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0b1120, #020617 40%, #000000 100%);
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.9);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero {
    padding: 42px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 3.2vw + 1rem, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.highlight {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-badges span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-card {
    background: radial-gradient(circle at top, #0b1120, #020617 55%);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-card h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.card-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #0b1120;
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(56, 189, 248, 0.5);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.4);
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.7);
}

.btn-outline {
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: transparent;
    color: var(--text);
    padding-inline: 18px;
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.5);
}

.btn-small {
    padding-inline: 16px;
    padding-block: 8px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    margin-top: 4px;
}

.section {
    padding: 40px 0;
}

.section-alt {
    background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000000 100%);
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
    text-align: left;
}

.section-subtitle {
    color: var(--muted);
    margin-bottom: 22px;
}

.section-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 10px;
}

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

.step-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--radius-md);
    padding: 18px 16px 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.step-number {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(56, 189, 248, 0.25);
    color: var(--primary-light);
    margin-bottom: 10px;
}

.step-card h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: flex-start;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 4px;
    font-size: 0.95rem;
}

.benefits-highlight {
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
    font-size: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

.benefits-highlight h3 {
    margin-bottom: 10px;
}

.benefits-highlight ul {
    padding-left: 16px;
    margin-bottom: 10px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
}

.form-group input,
.form-group textarea {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    padding: 9px 11px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    background: rgba(15, 23, 42, 0.85);
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
    background: #020617;
}

.form-info {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
}

.form-wide {
    margin-top: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

.form-column h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.faq {
    display: grid;
    gap: 8px;
}

.faq-item h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--muted);
}

.footer {
    background: #000000;
    color: #e5e7eb;
    padding: 22px 0 10px;
    margin-top: 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-text {
    color: #9ca3af;
    margin-top: 4px;
}

.footer-info p {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.9);
    margin-top: 16px;
    padding-top: 8px;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .topbar-content {
        flex-direction: row;
        gap: 8px;
    }

    .hero {
        padding-top: 32px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .logo-img {
        height: 32px;
    }
}
