/*
Theme Name: ITLA Alumni
Theme URI: https://itlaalumni.edu.do
Author: ITLA Alumni
Author URI: https://itlaalumni.edu.do
Description: Tema institucional para ITLAlumni — secciones Proyección, Beneficios, Historias de éxito y Footer completo. Basado en Bootstrap 5.
Version: 2.1
License: GNU General Public License v2 or later
Text Domain: itla-alumni
*/

/* ============================================================
   IMPORTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --itla-blue-dark:   #08264f;
    --itla-blue:        #003670;
    --itla-blue-mid:    #0073e6;
    --itla-blue-light:  #2b7bff;
    --itla-red:         #c62828;
    --itla-red-dark:    #9b1c1c;
    --itla-white:       #ffffff;
    --itla-gray-light:  #f4f6fb;
    --radius-card:      18px;
    --shadow-soft:      0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-strong:    0 12px 40px rgba(0, 0, 0, 0.22);
    --transition:       0.3s ease;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand img {
    width: 180px;
    height: auto;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.navbar-nav li { list-style: none; }

.navbar-nav a {
    text-decoration: none;
    color: var(--itla-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.navbar-nav a:hover {
    color: var(--itla-red);
    background: rgba(198, 40, 40, 0.06);
}

.navbar-nav li:last-child a {
    color: var(--itla-white) !important;
    background: var(--itla-red);
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 700;
}

.navbar-nav li:last-child a:hover {
    background: var(--itla-blue) !important;
    color: var(--itla-white) !important;
}

/* ============================================================
   UTILITY COLORS
   ============================================================ */
.bg-dark-blue  { background-color: var(--itla-blue-dark); }
.bg-navy       { background-color: var(--itla-blue); }
.bg-light-blue { background-color: var(--itla-blue-light); }
.bg-red        { background-color: var(--itla-red); }

/* ============================================================
   PROYECCIÓN LABORAL GRID
   ============================================================ */
.proyeccion-laboral {
    background: var(--itla-gray-light);
    padding: 5rem 0;
}

.itl-proyeccion-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-top: 60px;
}

.blue-box-custom {
    background: linear-gradient(135deg, var(--itla-blue-mid) 0%, var(--itla-blue) 100%);
    color: #fff;
    padding: 60px 40px 40px;
    text-align: center;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.dark-heading-custom {
    background-color: var(--itla-blue-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-strong);
    z-index: 10;
    white-space: nowrap;
}

.text-content-custom {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

.text-content-custom .highlight {
    font-weight: 700;
    color: #FFD700;
}

/* CARDS GRID */
.card-item {
    border-radius: var(--radius-card);
    padding: 2.2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: none;
}

.card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.card-item i {
    display: inline-block;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card-item i::before { font-size: 3.5rem; }

.card-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.6rem;
}

.card-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECCIÓN 1 — "¿Qué es ITLAlumni?" (imagen integrada, sin flotar)
   ============================================================ */
.seccion-contenido {
    position: relative;
    overflow: hidden;
    background-color: #003670 !important;
    background-image: none;
    padding-bottom: 0 !important;
}

.seccion-contenido .container-fluid {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    position: relative;
    min-height: 560px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    gap: 0;
}

/* TEXTO */
.seccion-contenido .texto {
    position: relative;
    z-index: 2;
    background: rgba(3, 18, 45, 0.88) !important;
    color: #fff !important;
    border-radius: 0 24px 24px 0;
    padding: 3.5rem 3.5rem 3.5rem 5%;
    width: 55%;
    flex-shrink: 0;
    margin: 0;
    align-self: center;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.10);
    border-left: none;
}

.seccion-contenido .texto h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
    line-height: 1.2;
    color: #fff;
    background: var(--itla-red);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 10px;
}

.seccion-contenido .texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.5rem;
}

.seccion-contenido .texto ul.list-unstyled {
    margin: 0;
    padding: 0;
}

.seccion-contenido .texto ul.list-unstyled li {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.93) !important;
    margin-bottom: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.seccion-contenido .texto ul.list-unstyled li i {
    color: #4dd9ff;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* IMAGEN LATERAL — integrada, sin flotar */
.seccion-contenido .imagen-lateral {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    max-height: 600px;
    margin-left: auto;
    display: block;
    align-self: stretch;
    flex-shrink: 0;
}

/* ============================================================
   SECCIÓN 2 — BENEFICIOS (título blanco, divisores limpios)
   ============================================================ */
.seccion-contenido2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #003670 0%, #0a2a66 60%, #001f48 100%) !important;
    color: #ffffff !important;
    margin-top: 0;
    border-top: 4px solid rgba(255, 255, 255, 0.15);
    padding-top: 0;
}

.bg-blue-light {
    background: linear-gradient(135deg, #003670 0%, #0a2a66 60%, #001f48 100%) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #ffffff !important;
}

/* Columna imagen — llena toda la altura */
.sec2-img-col {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 520px;
}

.sec2-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: 620px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Columna contenido */
.sec2-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem 3.5rem 3.5rem;
}

/* TÍTULO BLANCO con línea roja inferior */
.beneficio-text-inline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    background: transparent;
    display: block;
    padding: 0 0 0.75rem 0;
    border-radius: 0;
    margin-bottom: 1.8rem;
    box-shadow: none;
    letter-spacing: 0.01em;
    line-height: 1.3;
    border-bottom: 3px solid var(--itla-red);
}

/* Lista beneficios — divisores limpios */
.sec2-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sec2-list li {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 1rem 0.5rem;
    line-height: 1.55;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.sec2-list li:last-child {
    border-bottom: none;
}

.sec2-list li:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 8px;
    padding-left: 0.8rem;
}

.sec2-list li i {
    color: #4dd9ff;
    font-size: 1rem;
    flex-shrink: 0;
}

.sec2-list li span {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* ============================================================
   QUÉ ES WIDGET (si se usa)
   ============================================================ */
.que-es-wrap { position: relative; }

.que-es-pill {
    display: inline-block;
    background: var(--itla-blue-dark);
    padding: 0.8rem 2.2rem;
    border-radius: 12px;
    transform: translateY(-35px);
    box-shadow: var(--shadow-soft);
}

.que-es-pill h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
}

.que-es-box {
    background: var(--itla-blue-light);
    color: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* ============================================================
   HISTORIAS DE ÉXITO
   ============================================================ */
.historias-exito {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 0;
}

.titulo-seccion h2 {
    background-color: var(--itla-red);
    color: #fff;
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.01em;
}

.video-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.video-card:hover { transform: scale(1.03); box-shadow: var(--shadow-strong); }

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-card);
}

.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    border-radius: var(--radius-card);
    pointer-events: none;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: background var(--transition), transform var(--transition);
}

.btn-play:hover {
    background: var(--itla-red);
    border-color: var(--itla-red);
    transform: translate(-50%, -50%) scale(1.12);
}

.btn-play i { font-size: 1.5rem; color: #fff; }

/* CTA INFERIOR */
.cta-seccion {
    background: linear-gradient(180deg, var(--itla-blue-mid) 0%, var(--itla-blue) 100%);
    border-radius: 0;
    margin-top: 3rem;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.cta-seccion h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-seccion p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-dark {
    border: 2px solid rgba(255,255,255,0.8) !important;
    color: #ffffff !important;
    background-color: var(--itla-red) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: all var(--transition);
}

.btn-outline-dark:hover {
    background-color: #fff !important;
    color: var(--itla-blue) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-dark-blue {
    background-color: var(--itla-blue-dark);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    transition: background-color var(--transition), transform var(--transition);
}

.btn-dark-blue:hover {
    background-color: var(--itla-blue-light) !important;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, #08264f 0%, #051830 100%);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    width: 100%;
}

.footer-inner {
    padding: 4rem 0 2rem;
}

.footer-logo img.footer-isologo {
    width: auto;
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 0.8rem;
    display: block;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 220px;
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: var(--itla-red);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--itla-red);
}

.footer-itla-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 115, 230, 0.2);
    border: 1px solid rgba(43, 123, 255, 0.4);
    color: #fff !important;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.5rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-itla-link:hover {
    background: rgba(43, 123, 255, 0.35);
    border-color: rgba(43, 123, 255, 0.7);
    transform: translateY(-2px);
    color: #fff !important;
}

.footer-itla-link img.footer-itla-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--itla-red);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-bottom a:hover { color: #fff; }

.footer-deco {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,123,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {

    .navbar-brand img { width: 140px; }

    /* Sección 1 */
    .seccion-contenido .container-fluid {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }

    .seccion-contenido .texto {
        width: 100%;
        border-radius: 0;
        padding: 2.5rem 2rem;
        align-self: auto;
        border-left: 1px solid rgba(255,255,255,0.10);
    }

    .seccion-contenido .imagen-lateral {
        width: 100%;
        max-height: 360px;
        object-position: top center;
        align-self: auto;
    }

    /* Sección 2 */
    .sec2-content-col {
        padding: 2.5rem 2rem;
    }

    .beneficio-text-inline {
        font-size: 1.4rem;
    }

    .sec2-img-col {
        min-height: 320px;
    }

        .sec2-img {
        min-height: 320px;
        max-height: 400px;
    }

}

   /* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, #08264f 0%, #051830 100%);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    width: 100%;
}

.footer-inner {
    padding: 4rem 0 2rem;
}

/* LOGO */
.footer-logo img.footer-isologo {
    width: auto;
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 220px;
}

/* HEADINGS */
.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--itla-red);
    border-radius: 2px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.72rem;
    color: var(--itla-red);
    flex-shrink: 0;
}

/* DIRECCIÓN */
.footer-address {
    font-style: normal;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.footer-address i {
    color: var(--itla-red);
}

/* MAPA */
.footer-map-embed iframe {
    opacity: 0.88;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-map-embed iframe:hover {
    opacity: 1;
}

/* SOCIAL ROLLING ANIMATION */
.footer-social-track {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-ball {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.18);
    animation: rollIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both,
               floatBall 3s ease-in-out infinite;
}

@keyframes rollIn {
    from { opacity: 0; transform: translateY(40px) rotate(-180deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes floatBall {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-5px); }
}

.social-ball:nth-child(1) { animation-delay: 0.05s, 0.0s; }
.social-ball:nth-child(2) { animation-delay: 0.15s, 0.4s; }
.social-ball:nth-child(3) { animation-delay: 0.25s, 0.8s; }
.social-ball:nth-child(4) { animation-delay: 0.35s, 1.2s; }
.social-ball:nth-child(5) { animation-delay: 0.45s, 1.6s; }

.social-ball:hover {
    animation: rollSpin 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@keyframes rollSpin {
    0%   { transform: rotate(0deg) scale(1); }
    40%  { transform: rotate(200deg) scale(1.18); }
    70%  { transform: rotate(340deg) scale(1.22); }
    100% { transform: rotate(360deg) scale(1.15); }
}

.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-li { background: #0a66c2; }
.social-yt { background: #ff0000; }
.social-tk { background: #010101; }

.social-fb:hover { background: #1060c9; }
.social-ig:hover { background: linear-gradient(135deg, #e0741f, #c4226c, #6e29a0); }
.social-li:hover { background: #084d99; }
.social-yt:hover { background: #cc0000; }
.social-tk:hover { background: #2d2d2d; }

/* DIVIDER */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

/* BOTTOM BAR */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-bottom a:hover { color: #fff; }

/* DECORATIVE CIRCLE */
.footer-deco {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,123,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-col { margin-bottom: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .footer-itla-link { font-size: 0.82rem; }
}                                              /* ← esta llave cierra el @media */

@media (max-width: 576px) {
    .footer-logo img { width: 130px; }
    .footer-social-track { gap: 8px; }
    .social-ball { width: 36px; height: 36px; font-size: 1rem; }
}