:root {
    --bg: #050816;
    --bg-alt: #070b1e;
    --primary: #00e0ff;
    --primary-soft: rgba(0, 224, 255, 0.08);
    --accent: #7c3aed;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: #1f2933;
    --radius-xl: 1.25rem;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
    --transition-fast: 0.18s ease-out;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0b1023 0, #020617 52%, #000 100%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 100% ancho */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3vw;
}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.85), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a {
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.55rem 1.35rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: radial-gradient(circle at top left, var(--primary), var(--accent));
    border-color: rgba(56, 189, 248, 0.5);
    color: #020617;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 42px rgba(56, 189, 248, 0.55);
}

.btn-ghost {
    border-color: rgba(148, 163, 184, 0.45);
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.7);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--text);
    background: rgba(15, 23, 42, 0.9);
}

main {
    flex: 1;
}

.hero {
    padding: 3rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 3vw;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.8),
    rgba(30, 64, 175, 0.75)
    );
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.2);
}

.hero-title {
    font-size: clamp(2.3rem, 3.2vw, 3.3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 130px;
}

.hero-highlight strong {
    font-size: 1.2rem;
}

.hero-highlight span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-note strong {
    color: var(--primary);
    font-weight: 500;
}

.hero-panel {
    border-radius: calc(var(--radius-xl) * 1.1);
    background: radial-gradient(circle at top, #0b1120, #020617 55%, #020617 100%);
    padding: 1.7rem 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.17), transparent 58%),
    radial-gradient(circle at 90% 10%, rgba(129, 140, 248, 0.17), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.12), transparent 58%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3rem;
}

.panel-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.panel-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.7);
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.85);
}

.panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: flex-start;
}

.mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
}

.mini-tag span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}

.panel-main-text {
    font-size: 0.86rem;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.panel-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.chip {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
}

.chip.primary {
    border-color: rgba(56, 189, 248, 0.8);
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.95);
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.metric-card {
    padding: 0.6rem 0.7rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.86);
    font-size: 0.78rem;
}

.metric-label {
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.metric-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.metric-trend {
    font-size: 0.72rem;
    color: #4ade80;
}

.panel-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.tile {
    padding: 0.6rem 0.65rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.74rem;
}

.tile-title {
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.tile-text {
    color: var(--text-muted);
    font-size: 0.73rem;
}

.trust {
    padding: 1rem 0 0.5rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.trust-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.pill {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.85);
}

section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
    max-width: 40rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    border-radius: var(--radius-xl);
    padding: 1.2rem 1.1rem;
    background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.96)
    );
    border: 1px solid var(--border-subtle);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
    circle at top right,
    rgba(56, 189, 248, 0.12),
    transparent 55%
    );
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 0.9rem;
    background: radial-gradient(circle at 30% 10%, var(--primary), var(--accent));
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.25),
    0 12px 30px rgba(37, 99, 235, 0.55);
}

.feature-title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.feature-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.feature-tag {
    font-size: 0.7rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 3vw;
    align-items: center;
}

.steps-list {
    display: grid;
    gap: 1rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
    align-items: flex-start;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.95);
}

.step-title {
    font-size: 0.94rem;
    margin-bottom: 0.2rem;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.steps-note {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.steps-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(to bottom, var(--primary-soft), #020617 70%);
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 1.3rem 1.4rem;
    font-size: 0.85rem;
    box-shadow: 0 18px 40px rgba(8, 47, 73, 0.75);
}

.steps-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.steps-card ul {
    list-style: none;
    padding-left: 0;
}

.steps-card li {
    margin-bottom: 0.3rem;
}

.steps-card li::before {
    content: "•";
    margin-right: 0.35rem;
    color: var(--primary);
}

.cta {
    padding: 3rem 0 3.5rem;
}

.cta-card {
    border-radius: calc(var(--radius-xl) * 1.3);
    background: radial-gradient(circle at top left, #0f172a, #020617 55%);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: center;
}

.cta-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin-bottom: 1rem;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.cta-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.9);
}

.cta-whatsapp {
    display: grid;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.cta-whatsapp p {
    color: var(--text-muted);
}

.cta-whatsapp .btn-primary {
    justify-content: center;
}

.cta-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
}

footer {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.5rem 0 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .hero {
    padding-top: 2.4rem;
    }

    .hero-panel {
    order: -1;
    }

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

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

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

@media (max-width: 720px) {
    .nav-links {
    display: none;
    }

    .nav {
    padding-inline: 0;
    }

    .container {
    padding-inline: 4vw;
    }

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

    .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    }

    .cta-card {
    padding: 1.6rem 1.25rem;
    }
}

/* Estilos para sección ¿Cómo iniciar? */
.start-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3vw;
    align-items: center;
}
.start-steps {
    display: grid;
    gap: 1.2rem;
}
.start-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: flex-start;
}
.start-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.8);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    background: rgba(15, 23, 42, 0.95);
    color: #e0f2fe;
}
.start-title {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.start-text {
    font-size: 0.86rem;
    color: var(--text-muted);
}
.start-note {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.start-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, var(--primary-soft), #020617 70%);
    border: 1px solid rgba(56, 189, 248, 0.6);
    padding: 1.5rem 1.6rem;
    box-shadow: 0 20px 48px rgba(8, 47, 73, 0.9);
    font-size: 0.86rem;
}
.start-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.start-card p {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}
.start-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0;
}
.start-card li {
    margin-bottom: 0.25rem;
}
.start-card li::before {
    content: "•";
    margin-right: 0.35rem;
    color: var(--primary);
}
.start-card .btn-primary {
    margin-top: 0.8rem;
    width: 100%;
    justify-content: center;
}

@media (max-width: 960px) {
    .start-grid {
    grid-template-columns: minmax(0, 1fr);
    }
}
/* Cookie / Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(100% - 2.5rem, 600px);
    z-index: 50;
    background: rgba(15, 23, 42, 0.97);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
    padding: 1rem 1.1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(16px);
}

.cookie-banner-title {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cookie-banner-text {
    margin-bottom: 0.75rem;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cookie-btn {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.18s ease-out;
}

.cookie-btn-primary {
    background: radial-gradient(circle at top left, var(--primary), var(--accent));
    color: #020617;
    font-weight: 600;
    border-color: rgba(56, 189, 248, 0.6);
}

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

.cookie-btn-secondary {
    border-color: rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
}

.cookie-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--text);
}

@media (max-width: 480px) {
    .cookie-banner {
    bottom: 0.75rem;
    padding: 0.9rem 0.9rem;
    width: min(100% - 1.5rem, 600px);
    }

    .cookie-banner-actions {
    justify-content: flex-start;
    }
}