/* === VARIABLES === */
:root {
    /* === BRAND TOKENS — Manual ID GTN === */
    --color-cream:        #EFECEA;
    --color-blue-bright:  #037FF7;
    --color-blue-mid:     #305CD8;
    --color-blue-deep:    #002FB6;
    --color-navy:         #202960;

    /* === ALIASES SEMÁNTICOS === */
    --color-primary:      var(--color-blue-deep);
    --color-dark:         var(--color-navy);
    --color-accent:       var(--color-blue-bright);
    --color-accent-hover: var(--color-blue-mid);
    --color-accent-mid:   var(--color-blue-mid);
    --color-white:        #FFFFFF;
    --color-gray-light:   var(--color-cream);
    --color-text:         var(--color-navy);
    --color-error:        #ff8a8a;

    --font-family:        'Manrope', system-ui, -apple-system, sans-serif;
    --container-max:      1200px;
    --nav-height:         70px;
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem); }

/* === SCREEN READER ONLY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* === FOCUS VISIBLE === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* === SECTION COMMON === */
.section {
    padding: 4rem 0;
}

.section__title {
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}

/* === SECTION HEADER (EDITORIAL) === */
.section__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.section__heading {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.2;
}

.section__kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-blue-bright);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Override en secciones con fondo oscuro: mantiene el bright para contraste AA */
.servicios .section__kicker,
.contacto .section__kicker {
    color: var(--color-blue-bright);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.navbar-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

/* === ADMIN BAR FIX === */
.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }

    .admin-bar .navbar__menu {
        top: 46px;
        height: calc(100vh - 46px);
        height: calc(100dvh - 46px);
    }

    .admin-bar .navbar__overlay {
        top: 46px;
    }
}

@media (min-width: 783px) {
    .admin-bar .navbar__menu.open {
        top: 32px;
    }
}

.navbar-logo-text {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.navbar__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__menu a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar__menu a:hover {
    color: var(--color-accent);
}

.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.navbar__menu a:hover::after {
    width: 100%;
}

.navbar__menu a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
}

.navbar__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === NAVBAR OVERLAY (mobile) === */
.navbar__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.navbar__overlay.active {
    display: block;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__bg--reduced-motion {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero__video {
        display: none;
    }
    .hero__bg--reduced-motion {
        display: block;
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(32, 41, 96, 0.85) 0%, rgba(32, 41, 96, 0.7) 50%, rgba(32, 41, 96, 0.9) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 920px;
    width: 100%;
    padding: 7rem 1.25rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue-bright);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(3, 127, 247, 0.1);
    border: 1px solid rgba(3, 127, 247, 0.25);
    border-radius: 999px;
}

.hero__kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-blue-bright);
    box-shadow: 0 0 0 3px rgba(3, 127, 247, 0.25);
}

.hero__title {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    max-width: 18ch;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 50ch;
}

/* === HERO STATS === */
.hero__stats {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stats-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.hero__stat {
    flex: 1 1 0;
    text-align: left;
    padding: 0.5rem 1rem;
    position: relative;
}

.hero__stat + .hero__stat {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2px;
    letter-spacing: -0.03em;
}

.hero__stat-number {
    font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero__stat-plus {
    font-size: clamp(1.25rem, 0.9rem + 1.6vw, 1.75rem);
    font-weight: 800;
    color: var(--color-blue-bright);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.btn--lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 8px;
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* === QUIENES SOMOS === */
.quienes-somos {
    background: var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

.quienes-somos::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(3, 127, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.quienes-somos .container {
    position: relative;
    z-index: 1;
}

.qs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.qs__text {
    font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
    line-height: 1.75;
    color: var(--color-text);
    letter-spacing: -0.005em;
}

.qs__text p {
    margin-bottom: 1rem;
}

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

.qs__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qs__card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--color-white);
    border: 1px solid rgba(32, 41, 96, 0.08);
    border-radius: 14px;
    padding: 1.75rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qs__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 127, 247, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.qs__card:hover {
    border-color: rgba(3, 127, 247, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(32, 41, 96, 0.08);
}

.qs__card:hover::after {
    opacity: 1;
}

.qs__card__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: rgba(3, 127, 247, 0.1);
    border: 1px solid rgba(3, 127, 247, 0.2);
    border-radius: 12px;
    color: var(--color-blue-bright);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.qs__card:hover .qs__card__icon {
    background: rgba(3, 127, 247, 0.18);
    border-color: rgba(3, 127, 247, 0.4);
}

.qs__card__icon svg {
    width: 24px;
    height: 24px;
}

.qs__card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.qs__card__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.375rem;
}

.qs__card__titulo {
    color: var(--color-dark);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem;
}

.qs__card p {
    color: rgba(32, 41, 96, 0.75);
    line-height: 1.65;
    font-size: 0.9375rem;
    margin: 0;
}

.qs__cobertura {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem 1.75rem;
    background: var(--color-white);
    border: 1px solid rgba(32, 41, 96, 0.08);
    border-radius: 14px;
}

.qs__cobertura__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    flex: 0 0 auto;
}

.qs__cobertura__list {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    flex: 1 1 auto;
    min-width: 0;
}

.qs__cobertura__list span {
    color: rgba(32, 41, 96, 0.35);
    margin: 0 0.5rem;
}

/* === SERVICIOS === */
.servicios {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.servicios::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(3, 127, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.servicios .container {
    position: relative;
    z-index: 1;
}

.servicios .section__title,
.contacto .section__title {
    color: var(--color-white);
}

/* === SERVICIOS — EJES ESTRATÉGICOS === */
.servicios__ejes {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.eje__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.eje__numero {
    font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-blue-bright);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.eje__divider {
    flex: 0 0 auto;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.eje__titulo {
    font-size: clamp(1.25rem, 1rem + 1.5vw, 1.875rem);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.1;
}

.eje__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.servicio-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servicio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 127, 247, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.servicio-card:hover {
    border-color: rgba(3, 127, 247, 0.45);
    background: rgba(3, 127, 247, 0.04);
    transform: translateY(-3px);
}

.servicio-card:hover::after {
    opacity: 1;
}

.servicio-card__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: rgba(3, 127, 247, 0.12);
    border: 1px solid rgba(3, 127, 247, 0.22);
    border-radius: 12px;
    color: var(--color-blue-bright);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.servicio-card:hover .servicio-card__icon {
    background: rgba(3, 127, 247, 0.2);
    border-color: rgba(3, 127, 247, 0.4);
}

.servicio-card__icon svg {
    width: 26px;
    height: 26px;
}

.servicio-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.servicio-card__titulo {
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    letter-spacing: -0.005em;
}

.servicio-card__desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* === CLIENTES === */
.clientes {
    background: var(--color-white);
    overflow: hidden;
    position: relative;
}

.clientes::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 50%;
    height: 55%;
    background: radial-gradient(circle, rgba(3, 127, 247, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.clientes .container {
    position: relative;
    z-index: 1;
}

/* === CLIENTES TICKER === */
.clientes__ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(32, 41, 96, 0.08);
    border-bottom: 1px solid rgba(32, 41, 96, 0.08);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clientes__ticker {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}

.clientes__ticker:hover {
    animation-play-state: paused;
}

.cliente-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    min-width: 160px;
    flex-shrink: 0;
}

.cliente-item img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.cliente-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cliente-item__text {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    min-height: 56px;
    border: 1px solid rgba(32, 41, 96, 0.14);
    border-radius: 0.625rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 236, 234, 0.55) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.8125rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0.72;
    transition: opacity 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.cliente-item__text::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-blue-bright);
    transform: rotate(45deg);
    opacity: 0.75;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.cliente-item:hover .cliente-item__text {
    opacity: 1;
    color: var(--color-blue-deep);
    border-color: rgba(3, 127, 247, 0.4);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 20px rgba(3, 127, 247, 0.14);
}

.cliente-item:hover .cliente-item__text::before {
    transform: rotate(45deg) scale(1.25);
    background: var(--color-blue-bright);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* === CONTACTO === */
.contacto {
    background: var(--color-dark);
    position: relative;
    clip-path: inset(0);
}

.contacto::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(3, 127, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contacto .container {
    position: relative;
    z-index: 1;
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contacto__form {
    order: -1;
}

.contacto__info {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contacto__grupo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto__grupo-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-blue-bright);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contacto__grupo-label::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.contacto__persona {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contacto__persona + .contacto__persona {
    margin-top: 0.75rem;
}

.contacto__persona::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 127, 247, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contacto__persona:hover {
    border-color: rgba(3, 127, 247, 0.4);
    background: rgba(3, 127, 247, 0.04);
    transform: translateY(-2px);
}

.contacto__persona:hover::after {
    opacity: 1;
}

.contacto__persona-avatar {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(3, 127, 247, 0.12);
    border: 1px solid rgba(3, 127, 247, 0.22);
    border-radius: 11px;
    color: var(--color-blue-bright);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.contacto__persona:hover .contacto__persona-avatar {
    background: rgba(3, 127, 247, 0.22);
    border-color: rgba(3, 127, 247, 0.45);
}

.contacto__persona-body {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.contacto__persona-nombre {
    display: block;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.contacto__dato {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
}

.contacto__dato + .contacto__dato {
    margin-top: 0.35rem;
}

.contacto__dato svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-blue-bright);
    opacity: 0.8;
}

.contacto__dato a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 32px;
}

.contacto__dato a:hover {
    color: var(--color-white);
}

.contacto__oficina {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
}

.contacto__oficina .contacto__dato {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
}

.contacto__oficina .contacto__dato svg {
    width: 16px;
    height: 16px;
}

/* === CF7 STYLES === */
.contacto__form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto__form .wpcf7-form label,
.contacto__form .wpcf7-form p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 1rem;
}

.contacto__form .wpcf7-form input[type="text"],
.contacto__form .wpcf7-form input[type="email"],
.contacto__form .wpcf7-form input[type="tel"],
.contacto__form .wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contacto__form .wpcf7-form input[type="text"]:focus,
.contacto__form .wpcf7-form input[type="email"]:focus,
.contacto__form .wpcf7-form input[type="tel"]:focus,
.contacto__form .wpcf7-form textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.12);
}

.contacto__form .wpcf7-form input::placeholder,
.contacto__form .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contacto__form .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contacto__form .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 6px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.contacto__form .wpcf7-form input[type="submit"]:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.contacto__form .wpcf7-not-valid-tip {
    color: var(--color-error);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.contacto__form .wpcf7-response-output {
    border-color: var(--color-accent) !important;
    color: var(--color-white);
    margin: 1rem 0 0;
    padding: 0.75rem;
    border-radius: 6px;
}

/* === FOOTER === */
.site-footer {
    background: var(--color-dark);
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
}

.site-footer__address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

.site-footer__address a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.site-footer__address a:hover {
    color: var(--color-white);
}

.site-footer__credit {
    margin-top: 1rem;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.site-footer__credit a:hover {
    color: var(--color-accent);
}

/* === 404 / FALLBACK === */
.section--404 {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.section--404__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section--404__inner h1 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section--404__inner p {
    margin-bottom: 2rem;
    color: rgba(32, 41, 96, 0.75);
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .skip-link {
        transition: none;
    }

    .clientes__ticker {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        gap: 1.5rem;
    }

    .clientes__ticker-wrap {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .cliente-item[aria-hidden="true"] {
        display: none;
    }
}

/* === RESPONSIVE — TABLET (768px+) === */
@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .qs__grid {
        grid-template-columns: 1fr 1fr;
    }

    .eje__grid[data-count="2"],
    .eje__grid[data-count="3"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .eje__grid[data-count="1"] {
        max-width: 560px;
    }

    .contacto__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contacto__info {
        order: 0;
    }

    .contacto__form {
        order: 0;
        position: sticky;
        top: calc(var(--nav-height) + 2.5rem);
        height: fit-content;
        align-self: start;
    }

    .hero__stats {
        padding: 2rem;
    }

    .hero__stats-inner {
        gap: 2rem;
    }

    .hero__stat {
        padding: 0.5rem 1.5rem;
    }
}

/* === RESPONSIVE — DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }

    .eje__grid[data-count="3"] {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__stats-inner {
        gap: 4rem;
    }
}

/* === RESPONSIVE — MOBILE NAV (max 768px) === */
@media (max-width: 767px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__menu a {
        color: var(--color-white);
        font-size: 1.125rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .navbar__menu a:hover {
        color: var(--color-accent);
    }

    .navbar__toggle.open .navbar__toggle-bar {
        background: var(--color-white);
    }

    .navbar-logo-img {
        height: 36px;
    }

    .hero__stats-inner {
        flex-wrap: nowrap;
    }

    .hero__stat {
        padding: 0.5rem 0.875rem;
    }

    .hero__stat:first-child {
        padding-left: 0;
    }

    .hero__stat:last-child {
        padding-right: 0;
    }
}
