
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* I2C Brand Colors — azul marino + naranja ámbar */
    --i2c-navy: #004eaa;
    --i2c-navy-mid: #163352;
    --i2c-navy-light: #1e4068;
    --i2c-navy-xlight: #ebf0f7;
    --i2c-orange: #9569c6;
    --i2c-orange-dark: #8660B2;
    --i2c-orange-light: #E0C6FF;
    --i2c-orange-mid: #B18FD8;
    /* Accents */
    --teal: #0b7a6e;
    --teal-light: #e4f5f3;
    --gold: #c49a2b;
    --gold-light: #fdf6e3;
    /* Neutrals */
    --text: #0f1923;
    --text-muted: #5a6472;
    --text-light: #9aa3ae;
    --border: rgba(12, 35, 64, 0.1);
    --bg: #f5f7fa;
    --white: #ffffff;
    --serif: "Syne", sans-serif;
    --sans: "DM Sans", system-ui, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── AVISO TOP BANNER ─── */
.top-banner {
    background: var(--gold-light);
    border-bottom: 1px solid rgba(196, 154, 43, 0.25);
    padding: 9px 3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-banner-pill {
    background: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.top-banner-text {
    font-size: 13px;
    color: #7d6008;
    font-weight: 400;
}
.top-banner-link {
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-left: auto;
    white-space: nowrap;
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 250, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 3rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo-i2c {
    display: flex;
    align-items: center;
    gap: 0;
}
/* SVG diamond logo I2C */
.nav-logo-i2c img {
    height: 53px;
    width: auto;
}
.nav-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}
.nav-fecti {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 800;
    color: var(--i2c-navy);
    letter-spacing: 0.04em;
}
.nav-fecti img {
    margin-top: 10px;
    height: 53px;
    width: auto;
}
.nav-tagline {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 200px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--i2c-navy);
}
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-ghost-nav {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--i2c-navy);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-ghost-nav:hover {
    border-color: var(--i2c-navy);
    background: var(--i2c-navy-xlight);
}
.btn-cta-nav {
    background: var(--i2c-orange);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-cta-nav:hover {
    background: var(--i2c-orange-dark);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    background: var(--i2c-navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    overflow: hidden;
    position: relative;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 105, 198, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-left {
    position: relative;
    z-index: 2;
    padding: 5.5rem 3.5rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149, 105, 198, 0.15);
    border: 1px solid rgba(149, 105, 198, 0.3);
    color: var(--i2c-orange-mid);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    width: fit-content;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--i2c-orange);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    font-weight: 700;
    color: white;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}
.hero h1 .hi {
    color: var(--i2c-orange);
}
.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-hero-main {
    background: var(--i2c-orange);
    color: white;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-hero-main:hover {
    background: var(--i2c-orange-dark);
    transform: translateY(-1px);
}
.btn-hero-ghost {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.btn-hero-ghost:hover {
    color: white;
}
/* Hero stats bar */
.hero-stats-bar {
    display: flex;
    gap: 0;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hstat {
    flex: 1;
    padding-right: 2rem;
}
.hstat + .hstat {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.hstat-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}
.hstat-num .o {
    color: var(--i2c-orange);
}
.hstat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 300;
}

/* Hero right — quad grid */
.hero-right {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.hquad {
    background: var(--i2c-navy);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.hquad::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--i2c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.hquad:hover {
    background: rgba(255, 255, 255, 0.03);
}
.hquad:hover::before {
    transform: scaleX(1);
}
.hquad.featured {
    background: rgba(149, 105, 198, 0.1);
    border: 1px solid rgba(149, 105, 198, 0.15);
}
.hquad.featured::before {
    transform: scaleX(1);
}
.hquad-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
}
.hquad-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.hquad-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hquad.featured .hquad-icon {
    background: rgba(149, 105, 198, 0.25);
}
.hquad.featured .hquad-icon svg {
    stroke: var(--i2c-orange-mid);
}
.hquad h3 {
    font-size: 13.5px;
    color: rgba(255, 255, 255);
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--serif);
}
.hquad p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.5;
}

/* ─── SECTION BASE ─── */
section {
    padding: 5rem 3rem;
}
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--i2c-orange);
    margin-bottom: 1rem;
}
.sec-tag::before {
    content: "";
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--i2c-orange);
}
.sec-title {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    color: var(--i2c-navy);
    font-weight: 700;
    line-height: 1.18;
}
.sec-title em {
    font-style: italic;
    color: var(--text-muted);
    font-weight: 500;
}
.sec-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
    margin-top: 0.85rem;
}

/* ─── AVISO LEGAL ─── */
.aviso-sec {
    background: var(--white);
}
.aviso-card {
    border: 1px solid rgba(196, 154, 43, 0.3);
    border-radius: 12px;
    background: var(--gold-light);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}
.aviso-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(196, 154, 43, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.aviso-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}
.aviso-card h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: #7d6008;
    margin-bottom: 0.75rem;
}
.aviso-card p {
    font-size: 13.5px;
    color: #8d6e13;
    font-weight: 300;
    line-height: 1.75;
}

/* ─── ANUNCIOS ─── */
.anuncios-sec {
    background: var(--bg);
}
.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}
.sec-link {
    color: var(--i2c-orange);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}
.anuncios-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr;
    gap: 1rem;
}
.anuncio-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
}
.anuncio-card:hover {
    border-color: rgba(149, 105, 198, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.06);
}
.anuncio-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.anuncio-img.tall {
    aspect-ratio: 16/8;
}
.anuncio-body {
    padding: 1.25rem;
}
.anuncio-tag {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--i2c-orange);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.anuncio-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--i2c-navy);
    line-height: 1.45;
    margin-bottom: 8px;
    font-family: var(--serif);
}
.anuncio-date {
    font-size: 12px;
    color: var(--text-light);
}

/* ─── CONVOCATORIAS ─── */
.conv-sec {
    background: var(--white);
}
.conv-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
}
.conv-table thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--border);
}
.conv-table tbody tr {
    transition: background 0.15s;
    cursor: pointer;
}
.conv-table tbody tr:hover {
    background: var(--bg);
}
.conv-table tbody td {
    padding: 1.1rem 1rem;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.badge.open {
    background: var(--teal-light);
    color: var(--teal);
}
.badge.soon {
    background: var(--i2c-orange-light);
    color: var(--i2c-orange-dark);
}
.badge.closed {
    background: #f1f3f5;
    color: #6b7280;
}
.conv-name {
    font-weight: 600;
    color: var(--i2c-navy);
    font-size: 14px;
    font-family: var(--serif);
}
.conv-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.conv-arr {
    color: var(--text-light);
    font-size: 18px;
    text-align: right;
}
.conv-table tbody tr:hover .conv-arr {
    color: var(--i2c-orange);
}

/* ─── ÁREAS PRIORITARIAS ─── */
.areas-sec {
    background: var(--bg);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.area-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--i2c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.area-card:hover {
    border-color: rgba(149, 105, 198, 0.2);
    transform: translateY(-2px);
}
.area-card:hover::after {
    transform: scaleX(1);
}
.area-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--i2c-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.area-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--i2c-orange-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.area-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--i2c-navy);
    margin-bottom: 5px;
    font-family: var(--serif);
}
.area-card p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.55;
}

/* ─── PROCESO ─── */
.proceso-sec {
    background: var(--i2c-navy);
    padding: 5.5rem 3rem;
}
.proceso-sec .sec-tag {
    color: rgba(149, 105, 198, 0.85);
}
.proceso-sec .sec-tag::before {
    background: rgba(149, 105, 198, 0.85);
}
.proceso-sec .sec-title {
    color: white;
}
.proceso-sec .sec-desc {
    color: rgba(255, 255, 255, 0.4);
}
.proceso-inner {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3.5rem;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    z-index: 0;
}
.pstep {
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}
.pstep-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--i2c-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}
.pstep:first-child .pstep-num {
    background: var(--i2c-orange);
    border-color: var(--i2c-orange);
}
.pstep h4 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--serif);
}
.pstep p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── VIDEO TUTORIAL ─── */
.video-sec {
    background: var(--white);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.video-player {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    background: var(--i2c-navy-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.video-player:hover {
    background: #dce6f2;
}
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--i2c-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.video-player:hover .play-btn {
    transform: scale(1.07);
}
.play-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
    margin-left: 3px;
}
.video-caption {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}
.video-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}
.vstep {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.2s;
    cursor: default;
}
.vstep:hover {
    border-color: rgba(149, 105, 198, 0.2);
    background: var(--i2c-orange-light);
}
.vstep-n {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--i2c-orange-light);
    border: 1px solid rgba(149, 105, 198, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--i2c-orange-dark);
    flex-shrink: 0;
}
.vstep h4 {
    font-size: 13.5px;
    color: var(--i2c-navy);
    font-weight: 600;
    margin-bottom: 3px;
    font-family: var(--serif);
}
.vstep p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.55;
}

/* ─── ACCESOS RÁPIDOS ─── */
.access-sec {
    background: var(--bg);
}
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.access-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.access-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--i2c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.access-card:hover {
    border-color: rgba(149, 105, 198, 0.2);
    transform: translateY(-2px);
}
.access-card:hover::after {
    transform: scaleX(1);
}
.access-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--i2c-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.access-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--i2c-orange-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.access-card h3 {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--i2c-navy);
}
.access-card p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}
.access-cta {
    font-size: 13px;
    color: var(--i2c-orange);
    font-weight: 500;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--i2c-orange);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-family: var(--serif);
    font-size: 2rem;
    color: white;
    font-weight: 700;
    max-width: 520px;
    line-height: 1.2;
}
.cta-band h2 em {
    font-style: italic;
    font-weight: 500;
    opacity: 0.85;
}
.cta-band-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-cta-white {
    background: white;
    color: var(--i2c-orange-dark);
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cta-white:hover {
    background: var(--i2c-orange-light);
    transform: translateY(-1px);
}
.btn-cta-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ─── FOOTER ─── */
footer {
    background: var(--i2c-navy);
    color: rgba(255, 255, 255, 0.42);
    padding: 4rem 3rem 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.fbrand h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 4px;
}
.fbrand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}
.fbrand p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}
.fbrand address {
    font-style: normal;
    font-size: 12px;
    margin-top: 0.75rem;
    font-weight: 300;
    line-height: 1.65;
}
.fcol h5 {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.fcol ul {
    list-style: none;
}
.fcol li {
    margin-bottom: 8px;
}
.fcol a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.2s;
}
.fcol a:hover {
    color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
}
.footer-badges {
    display: flex;
    gap: 8px;
}
.fbadge {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

@media (max-width: 900px) {
    .top-banner,
    .nav-links,
    .nav-tagline {
        display: none;
    }
    nav {
        padding: 0 1.5rem;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .hero-left {
        padding: 3.5rem 1.5rem;
    }
    section,
    .proceso-sec,
    .video-sec {
        padding: 3.5rem 1.5rem;
    }
    .anuncios-grid,
    .areas-grid,
    .access-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .steps-grid::before {
        display: none;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .proceso-inner {
        grid-template-columns: 1fr;
    }
    .cta-band {
        padding: 2.5rem 1.5rem;
    }
}

.logo-footer{
    filter: brightness(0) invert(1);
    height: 100px;
}