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

@font-face {
    font-family: 'AGRESSIVE';
    src: url(assets/fonts/agressive/AGRESSIVE.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter-Light-BETA.otf';
    src: url('assets/fonts/Inter-Light-BETA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #0091d9;
    --yellow: #ffe605;
    --white: #f4f7fb;
    --black: #121212;

    --darkblue: #00314a;

    --nav-h: 72px;
    --ink:#0e0f12;
    --steel:#15181d;
    --panel:#1b1f26;
    --panel-2:#22272f;
    --muted:#98a2ad;
    --line:#2a303a;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--white);
}

.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;
}

.y { color: var(--yellow); }
.b { color: var(--blue); }
.w { color: var(--white); }

main {
    background: url(assets/fondo_gemini.png) no-repeat center center fixed;
    background-size: cover;
    padding-top: 0;
    z-index: 1;
    position: relative;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: var(--white);
}
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--nav-h);
    padding: 0 clamp(1rem, 4vw, 3rem);
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.is-scrolled {
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar:not(.is-scrolled) .nav-logo,
.navbar:not(.is-scrolled) .nav-links a {
    text-shadow: 0 1px 10px rgba(0, 20, 35, 0.55);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'AGRESSIVE';
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }

.nav-links {
    display: flex;
    font-family: 'AGRESSIVE';
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    font-size: 0.95rem;
}

.nav-links > a:not(.nav-cta) {
    position: relative;
    padding: 0.35rem 0;
}
.nav-links > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px; height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) 1.5rem clamp(2.5rem, 6vh, 4.5rem);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(assets/hero_gemini.png) no-repeat center 40%;
    background-size: cover;
    transform: scale(1.08);
    animation: heroZoom 18s ease-out forwards;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 20, 35, 0.62) 0%,
        rgba(0, 20, 35, 0.00) 26%,
        rgba(0, 20, 35, 0.00) 46%,
        rgba(0, 25, 45, 0.72) 82%,
        var(--darkblue) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    max-width: 720px;
}
.y-hero {
    background: linear-gradient(180deg, 
        #FFF9D2 0%, 
        #FFD633 45%, 
        #7A4F00 50%,
        #FFB900 52%, 
        #FFE96B 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    -webkit-text-stroke: 1px #4A2B00;
    
    filter: drop-shadow(2px 4px 2px rgba(0,0,0,0.8));
    
    font-weight: 900;
}
.b-hero {
    background: linear-gradient(180deg, 
        #8AEEFF 0%, 
        #0077FF 45%, 
        #00135C 50%,
        #0044CC 52%, 
        #5CB8FF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    -webkit-text-stroke: 0.5px #FFCC00;

    filter: drop-shadow(0px 2px 0px #996600) drop-shadow(2px 5px 4px rgba(0,0,0,0.9));
    
    font-weight: 900;   
}
.w-hero {
    background: linear-gradient(180deg, 
        #FFFFFF 0%, 
        #E0E5EC 45%, 
        #5A697D 50%,
        #A1B1C7 52%,
        #FFFFFF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    -webkit-text-stroke: 0.5px #FFCC00;

    filter: drop-shadow(0px 2px 0px #996600) drop-shadow(1px 3px 3px rgba(0,0,0,0.8));
    
    font-weight: 900;
}
.hero-eyebrow {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow .hl { color: var(--blue); font-weight: 700; }

.hero-accent {
    display: block;
    width: 68px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    box-shadow: 0 0 18px rgba(255, 230, 5, 0.35);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 0.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    line-height: 1;
    padding: 0.95rem 1.6rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn img { width: 20px; height: 20px; }

.btn-primary {
    background: var(--blue);
    color: var(--black);
    box-shadow: 0 12px 26px rgba(5, 18, 255, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(22, 5, 255, 0.4);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(244, 247, 251, 0.55);
    padding: calc(0.95rem - 2px) calc(1.6rem - 2px);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    transform: translateY(-2px);
    color: var(--yellow);
    border-color: var(--yellow);
}
.hero-trust {
    list-style: none;
    margin: 0.3rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.4rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(244, 247, 251, 0.85);
}
.hero-trust li { position: relative; }
.hero-trust li:not(:first-child)::before {
    content: "•";
    position: absolute;
    left: -0.85rem;
    color: var(--yellow);
    opacity: 0.75;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
}
@keyframes heroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}
.hero-content > * { animation: heroRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-eyebrow { animation-delay: 0.15s; }
.hero-accent  { animation-delay: 0.28s; }
.hero-cta     { animation-delay: 0.40s; }
.hero-trust   { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
    .hero::before { animation: none; transform: none; }
    .hero-content > * { animation: none; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11, 17, 32, 0.97);
        backdrop-filter: blur(10px);
        padding: 0.5rem clamp(1rem, 4vw, 3rem) 1.25rem;
        transform: translateY(-130%);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    .nav-links.is-open { transform: translateY(0); }
    .nav-links a {
        width: 100%;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-shadow: none;
    }
    .hero::before { background-position: center center; }
}

.sky-servicios{
    background:
      radial-gradient(1200px 400px at 80% -10%, rgba(46,125,209,.10), transparent 60%),
      var(--ink);
    color:var(--white);
    padding:110px 24px 120px;
}

.sky-wrap{max-width:1180px;margin:0 auto;}
 
.sky-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Oswald',sans-serif;
    font-weight:600;
    letter-spacing:.28em;
    text-transform:uppercase;
    font-size:.72rem;
    color:var(--yellow);
    margin:0 0 14px;
}
.sky-eyebrow::before{content:"";width:28px;height:2px;background:var(--yellow);display:inline-block;}
.sky-title{
    font-family:'AGRESSIVE',sans-serif;
    font-weight:400;
    font-size:clamp(2.4rem,6vw,4.4rem);
    line-height:.92;
    text-transform:uppercase;
    margin:0 0 18px;
    letter-spacing:.01em;
}

.sky-title .hl{
    background:linear-gradient(180deg,#FFE27A 0%,var(--yellow) 45%,#C98F04 100%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    filter:drop-shadow(0 2px 0 rgba(0,0,0,.35));
}

.sky-intro{
    max-width:620px;color:var(--muted);font-size:1.02rem;line-height:1.65;margin:0 0 52px;
}
.sky-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.sky-card{
    position:relative;
    background:linear-gradient(180deg,var(--panel) 0%,var(--steel) 100%);
    border:1px solid var(--line);
    padding:30px 26px 28px;
    clip-path:polygon(0 22px, 34px 0, 100% 0, 100% 100%, 0 100%);
    overflow:hidden;
    transition:transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, background .35s;
}
.sky-card::after{
    content:"";position:absolute;left:0;top:22px;bottom:0;width:4px;
    background:var(--yellow);opacity:.0;transition:opacity .35s;
}
.sky-card:hover{
    transform:translateY(-6px);
    border-color:#39424f;
    background:linear-gradient(180deg,var(--panel-2) 0%,var(--panel) 100%);
}
.sky-card:hover::after{opacity:1;}
 
.sky-card.is-feature{grid-column:span 2;background:linear-gradient(120deg,#1c2530 0%,var(--steel) 70%);}
.sky-card.is-feature .sky-card-desc{max-width:440px;}
 
.sky-ico{
    width:46px;height:46px;color:var(--yellow);margin-bottom:20px;
    display:flex;align-items:center;justify-content:center;
}
.sky-ico svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.6;}
.sky-card-name{
    font-family:'Oswald',sans-serif;font-weight:600;text-transform:uppercase;
    letter-spacing:.04em;font-size:1.28rem;margin:0 0 8px;color:var(--white);
}
.sky-card-desc{color:var(--muted);font-size:.94rem;line-height:1.55;margin:0;}
 
.sky-foot{
    display:flex;align-items:center;justify-content:space-between;gap:24px;
    flex-wrap:wrap;margin-top:44px;padding-top:30px;border-top:1px solid var(--line);
}
.sky-foot p{margin:0;color:var(--muted);font-size:.96rem;}
.sky-btn{
    display:inline-flex;align-items:center;gap:12px;
    font-family:'Oswald',sans-serif;font-weight:700;text-transform:uppercase;
    letter-spacing:.06em;font-size:.92rem;text-decoration:none;
    background:var(--yellow);color:#141414;
    padding:15px 26px;clip-path:polygon(10px 0,100% 0,calc(100% - 10px) 100%,0 100%);
    transition:transform .25s, box-shadow .25s;
}
.sky-btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.2;transition:transform .25s;}
.sky-btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px -8px rgba(255,198,26,.5);}
.sky-btn:hover svg{transform:translateX(4px);}
 
@media (max-width:860px){
    .sky-grid{grid-template-columns:repeat(2,1fr);}
    .sky-card.is-feature{grid-column:span 2;}
}
@media (max-width:560px){
    .sky-servicios{padding:80px 18px 90px;}
    .sky-grid{grid-template-columns:1fr;}
    .sky-card.is-feature{grid-column:span 1;}
}
@media (prefers-reduced-motion:reduce){
    .sky-card,.sky-btn,.sky-btn svg{transition:none;}
}
a:focus-visible,.sky-btn:focus-visible{outline:3px solid var(--blue);outline-offset:3px;}

.imagenes {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--steel);
    padding-block: clamp(1rem, 3vw, 2.5rem);
    border-block: 3px solid var(--line);
}
.carrusel-track-imagenes {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: carrusel-mover 40s linear infinite;
}
.imagenes:hover .carrusel-track-imagenes {
    animation-play-state: paused;
}
.carrusel-item {
    flex: 0 0 auto;
}
.carrusel-item img {
    display: block;
    width: auto;
    height: clamp(180px, 22vw, 320px);
    object-fit: cover;
    border-radius: 6px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
@keyframes carrusel-mover {
    from {transform: translateX(0);}
    to {transform: translateX(-50%);}
}
@media (prefers-reduced-motion: reduce) {
  .carrusel-track-imagenes { animation: none; }
  .imagenes { overflow-x: auto; }
}

.contacto-rapido {
    padding: 60px 24px 80px;
    background: var(--steel);
}
.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.contacto-text {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.container h2 {
    font-family: 'AGRESSIVE', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    line-height: .92;
    margin: 0 0 12px;
    letter-spacing: .01em;
    color: var(--blue);
}
.container p {
    padding-top: 12px;
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin: 0 0 24px;
    --skew: -15deg;
    transform: skewX(var(--skew));
}

.certificate {
    background: linear-gradient(180deg, var(--ink) 0%, var(--steel) 100%);
    padding: 72px 1.25rem;
}

.certificate-box {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}
.certificate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--yellow)
}
.certificate-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--yellow);
    display: inline-block;
}
.certificate-box h3 {
    margin: 0 0 28px;
    font-family: 'AGRESSIVE', sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.05;
    background: linear-gradient(180deg, #ffe27a 0%, var(--blue) 45%, var(--darkblue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.certificate-frame {
    position: relative;
    width: min(300px, 80%);
    margin-inline: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform .3s ease;
}
.certificate-frame:hover,
.certificate-frame:focus-visible {
    transform: translateY(-6px);
    outline: none;
}
.certificate-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .5));
}

/* "View" prompt as a caption button below the badge */
.certificate-frame .cert-thumb__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 14px;
    transition: background .25s ease, color .25s ease;
}
.certificate-frame:hover .cert-thumb__label,
.certificate-frame:focus-visible .cert-thumb__label {
    background: var(--yellow);
    color: var(--black);
}
 
/* ---- Modal (full certificate) ---- */
.cert-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;                 /* por encima del navbar */
    background: rgba(0, 0, 0, .85);
    padding: clamp(1rem, 4vw, 2rem);
    overflow-y: auto;              /* se puede desplazar si el PDF es más alto que la pantalla */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.cert-modal.open {
    display: flex;
    justify-content: center;
    align-items: flex-start;       /* nunca recorta el borde de arriba */
}

.cert-modal__content {
    position: relative;
    width: min(900px, 100%);
    margin: auto;                  /* centra cuando cabe; deja hacer scroll cuando no */
}
.cert-modal__content iframe {
    width: 100%;
    height: 80vh;                  /* fallback navegadores viejos */
    height: 80svh;                 /* altura real del viewport en móvil */
    max-height: 80dvh;
    display: block;
    border: 3px solid var(--yellow);
    border-radius: 8px;
    background: #fff;
}

/* La X: SIEMPRE fija en la esquina de la pantalla, tocable y por encima de todo */
.cert-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    left: auto;
    bottom: auto;
    z-index: 2010;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
}
.cert-modal__close:active { transform: scale(.94); }

.cert-fallback {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}
.cert-fallback:hover { text-decoration: underline; }

.gaf-badge {
    display: inline-flex;
    line-height: 0;
    transition: transform .25s ease;
}
.gaf-badge:hover,
.gaf-badge:focus-visible {
    transform: translateY(-3px);
    outline: none;
}
.gaf-badge img {
    display: block;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .4));
}

.gaf-badge--sm img { width: 48px; }
.gaf-badge--md img { width: 56px; }

.footer-logo .gaf-badge { margin-top: 16px; }

/* Mobile */
@media (max-width: 600px) {
    .certificate { padding: 56px 1rem; }
    .cert-modal__content iframe { height: 70svh; max-height: 70dvh; }
}

#testimonios {
    background: radial-gradient(circle at 50% 50%, rgba(14, 15, 18, .85) 100%, rgba(14, 15, 18, .5) 200%),
        url(assets/fondo_gemini_2.png) no-repeat center 100%;
    background-size: cover;
}
.testimonio-inner h2 {
    font-size: clamp(30px, 9vw, 52px);
    font-family: 'AGRESSIVE', sans-serif;
    background: linear-gradient(180deg, #ffe27a 0%, var(--yellow) 45%, #c98f04 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.testimonio-inner{max-width:1100px;margin-inline:auto;padding:4rem 1.25rem;text-align:center;}
.testimonio-video video{
    width:100%;max-width:320px;aspect-ratio:9/16;object-fit:cover;
    border-radius:14px;background:#000;box-shadow:0 12px 30px rgba(0,0,0,.35);
}

#contact-us {
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 78% 28%, rgba(14, 15, 18, .85) 0%, rgba(14, 15, 18, .5) 50%, transparent 150%),
        url(assets/fondo_gemini_3.jpeg) no-repeat center 100%;
    background-size: cover;
    padding-bottom: 60px;
}
.contact-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 24px 60px;
    gap: 40px;
}
.contact-titulo {
    font-family: 'AGRESSIVE', sans-serif;
    text-transform: uppercase;
    font-size: 45px;
    line-height: .92;
    margin: 0;
    letter-spacing: .01em;
    text-align: center;
    padding-top: 40px;
}
.contact-titulo h2 {
    background: linear-gradient(180deg,var(--sky-accent), var(--sky-accent-2), var(--sky-accent));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    font-size: 20px;
    color: var(--sky-text);
}
.contact-local {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contact-local h3 {
    padding-top: 20px;
    font-family: 'AGRESSIVE', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0 0 8px;
    color: var(--blue);
}
.contact-local-fotos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 900px;
    padding-bottom: 30px;
}
.local-frente, .local-letrero {
    flex: 1 1 340px;
    max-width: 440px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .55);
    display: block;
}
@media (max-width: 600px) {
    .local-frente,
    .local-letrero {
        flex-basis: 100%;
        max-width: 100%;
        height: 220px;
    }
}
.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}
.contact-social h3 {
    font-family: 'AGRESSIVE', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0 0 8px;
    color: var(--blue);
}
.contact-social-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
    color: var(--white);
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease,
        border-color .25s ease, background .25s ease, color .25s ease;
}

.contact-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter .25s ease, transform .25s ease;
}

.contact-social-btn:hover,
.contact-social-btn:focus-visible {
    transform: translateY(-3px);
    border-color: var(--blue);
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    color: var(--blue);
    box-shadow: 0 12px 26px -10px rgba(35, 56, 245, 0.45);
}

.contact-social-btn:hover .contact-social-icon,
.contact-social-btn:focus-visible .contact-social-icon {
    filter: invert(84%) saturate(1000%) hue-rotate(1deg) brightness(105%);
    transform: scale(1.1);
}

.contact-social-btn:active {
    transform: translateY(-1px) scale(.97);
}

.contact-social-btn:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .contact-social-btn,
    .contact-social-icon {
        transition: none;
    }
}
footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;

    background: var(--steel);
    display: grid;
    padding-top: 40px;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
}
.footer-logo {
    display: flex;
    height: 200px;
}
.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.footer-logo:hover{
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 40px;
}

.footer-links h4 {
    color: var(--yellow);
    font-family: 'AGRESSIVE', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    max-width: 320px;
}

.footer-contact h4 {
    color: var(--yellow);
    font-family: 'AGRESSIVE', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 5px 0;
}

.footer-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.footer-contact p span {
    flex: 1;
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    min-width: 0;
}

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

.footer-social h4 {
    color: var(--yellow);
    font-family: 'AGRESSIVE', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.footer-social-icon {
    display: flex;
    gap: 8px;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-social a {
    gap: 20px;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter-Light-BETA.otf', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--yellow);
}

.footer-social a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    transform: scaleX(0);
    left: 0;
    background-color: var(--blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-social a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-social a:hover .footer-social-icon {
    filter: invert(84%) sepia(59%) saturate(1000%) hue-rotate(1deg) brightness(105%);
}

.footer-bottom {
    background: linear-gradient(180deg, rgba(14, 21, 38, 0.94) 0%, rgba(9, 52, 171, 0.94) 500%);
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #222222;
    color: #aaaaaa;
    font-size: 14px;
}
.footer-bottom p {
    font-family: 'Inter-Light-BETA.otf', sans-serif;
}
.atribuciones {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 16px;

  color: var(--sky-text-muted, #b9c0c9);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;

  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.atribuciones:hover {
  color: var(--sky-white, #fff);
  border-color: var(--sky-blue, #0091d9);
  background: rgba(0, 145, 217, 0.1);
}

.atribuciones:focus-visible {
  outline: 2px solid var(--sky-yellow, #ffe605);
  outline-offset: 2px;
}