@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap");

:root {
    --navy-950: #04101d;
    --navy-900: #061321;
    --navy-850: #071a2d;
    --navy-800: #0b1f33;
    --navy-700: #123b65;
    --blue-700: #0f5fd7;
    --blue-600: #1677ff;
    --blue-500: #2a86ff;
    --blue-400: #55a2ff;
    --turquoise-600: #00a990;
    --turquoise-500: #00c2a8;
    --turquoise-400: #22d3bd;
    --white: #ffffff;
    --background: #f4f7fb;
    --surface: #ffffff;
    --border: #dce5ee;
    --text: #172033;
    --text-soft: #526175;
    --text-light: #c9d5e4;
    --font-heading: "Poppins", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --container: 1180px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 10px 30px rgba(6, 17, 31, 0.08);
    --shadow-md: 0 20px 55px rgba(6, 17, 31, 0.14);
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.16;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-soft);
}

ul,
ol {
    margin-top: 0;
}

::selection {
    background: var(--turquoise-500);
    color: var(--navy-950);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-label {
    margin-bottom: 16px;
    color: var(--blue-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 52px;
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 4px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(22, 119, 255, 0.26);
}

.button-primary:hover {
    box-shadow: 0 18px 34px rgba(22, 119, 255, 0.36);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-600);
    font-weight: 800;
    transition: color var(--transition), gap var(--transition);
}

.text-link:hover {
    gap: 14px;
    color: var(--turquoise-600);
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 86% 20%, rgba(22, 119, 255, 0.18), transparent 30%),
        linear-gradient(110deg, var(--navy-950), var(--navy-850) 58%, #082446);
}

.page-hero::after {
    position: absolute;
    top: -180px;
    right: -100px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(0, 194, 168, 0.16);
    border-radius: 50%;
    content: "";
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero .section-label {
    color: var(--turquoise-400);
}

.page-hero h1 {
    margin-bottom: 24px;
    color: var(--white);
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 32px;
    color: var(--text-light);
    font-size: 1.08rem;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

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

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

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

.info-card {
    padding: 30px;
}

.info-card h3 {
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    color: var(--text-soft);
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--turquoise-600);
    content: "✓";
    font-weight: 900;
}

.cta-band {
    padding: 80px 0;
    background: linear-gradient(125deg, var(--blue-700), var(--blue-600) 55%, var(--turquoise-600));
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band h2 {
    margin-bottom: 12px;
    color: var(--white);
}

.cta-band p {
    max-width: 670px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.cta-band .button {
    flex-shrink: 0;
    background: var(--white);
    color: var(--blue-700);
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy-950);
    font-weight: 700;
}

.skip-link:focus {
    top: 20px;
}

@media (max-width: 900px) {
    .section {
        padding: 78px 0;
    }

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

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

    .cta-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 66px 0;
    }

    .section-heading,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 78px 0 70px;
    }

    .page-actions,
    .page-actions .button,
    .cta-band .button {
        width: 100%;
    }

    .page-actions {
        flex-direction: column;
    }
}
/* ==========================================================
   PASO 13 · AJUSTES MÓVILES GENERALES
========================================================== */

a,
button {
    touch-action: manipulation;
}

h1,
h2,
h3 {
    overflow-wrap: break-word;
}

@media (max-width: 620px) {

    .button,
    .text-link {
        min-height: 44px;
    }

    .text-link {
        display: inline-flex;
        align-items: center;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .section-heading {
        margin-bottom: 38px;
        gap: 20px;
    }

    .cta-band-inner {
        gap: 24px;
    }

}
