        :root {
            --primary-navy: #0f2c59;
            --secondary-navy: #1e3a8a;
            --dark-navy: #0b1f3a;
            --medium-blue: #2b5797;
            --accent-orange: #f97316;
            --accent-orange-hover: #ea580c;
            --accent-yellow: #f59e0b;
            --accent-yellow-light: #fef3c7;
            --bg-light: #f8fafc;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(15, 44, 89, 0.1), 0 8px 10px -6px rgba(15, 44, 89, 0.05);
            --shadow-hover: 0 25px 35px -5px rgba(15, 44, 89, 0.2), 0 10px 15px -5px rgba(249, 115, 22, 0.15);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
        }
        /* SECCIONES Y CONTENEDORES */
        .section-padding {
            padding: 80px 5%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            color: var(--accent-orange);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--primary-navy);
            letter-spacing: -0.5px;
        }
         .btn-link-custom {
            color: var(--accent-orange);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            transition: gap 0.2s ease;
        }

        .btn-link-custom:hover {
            gap: 10px;
            color: var(--accent-orange-hover);
        }

        /* TARJETAS CON EFECTO DINÁMICO 3D (CARTELERA Y SEDES) */
        .cartelera-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .card-3d {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: var(--shadow-sm);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            perspective: 1000px;
        }

        .card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-navy), var(--accent-orange));
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        /* Hover dinámico con elevación y sombra tridimensional */
        .card-3d:hover {
            transform: translateY(-12px) rotateX(3deg) rotateY(-2deg);
            box-shadow: var(--shadow-hover);
            border-color: rgba(249, 115, 22, 0.3);
        }

        .badge-category {
            align-self: flex-start;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .badge-urgent { background: #fee2e2; color: #dc2626; }
        .badge-academic { background: #e0f2fe; color: #0284c7; }
        .badge-event { background: var(--accent-yellow-light); color: #d97706; }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .card-text {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 20px;
        }

        .card-footer-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-color);
            padding-top: 14px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .card-footer-info i {
            color: var(--accent-orange);
            margin-right: 6px;
        }
 /* ==========================================
   ESTILOS GENERALES Y CONTENEDOR
   ========================================== */
.equipo-seccion-v2 {
  max-width: 80rem;
  margin: 4rem auto;
  padding: 0 1.5rem; /* Margen de seguridad lateral */
  scroll-margin-top: 9rem;
}

/* Header de la sección */
.equipo-header-v2 {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-brillo {
  display: inline-block;
  padding: 0.35em 1em;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-navy, #0f2c59);
  background: rgba(15, 44, 89, 0.08);
  border: 1px solid rgba(15, 44, 89, 0.15);
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.equipo-titulo-v2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy, #0f2c59);
  margin-bottom: 0.5rem;
}

.equipo-bajada {
  color: #64748b;
  font-size: 0.95rem;
}

/* Grilla Responsiva */
.equipo-grid-v2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 640px) {
  .equipo-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .equipo-grid-v2 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ==========================================
   ESTRUCTURA DE TARJETA Y ANIMACIONES
   ========================================== */
.tarjeta-v2 {
  position: relative;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}

/* Elevación 3D y resplandor en Hover */
.tarjeta-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px -10px rgba(15, 44, 89, 0.15);
  border-color: var(--accent-color);
}

/* Borde superior de color activo */
.tarjeta-v2__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--accent-color);
  transition: height 0.3s ease;
  z-index: 2;
}

.tarjeta-v2:hover .tarjeta-v2__glow {
  height: 6px;
}

/* ==========================================
   IMAGEN Y BADGE FLOTANTE
   ========================================== */
.tarjeta-v2__imagen-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #f8fafc;
}

.tarjeta-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Zoom suave y enfoque de color al pasar el cursor */
.tarjeta-v2:hover .tarjeta-v2__img {
  transform: scale(1.08);
  filter: grayscale(0%);
}


/* ==========================================
   CONTENIDOS
   ========================================== */
.tarjeta-v2__contenido {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
}

.tarjeta-v2__nombre {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy, #0f2c59);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.tarjeta-v2:hover .tarjeta-v2__nombre {
  color: var(--secondary-navy, #1e3a8a);
}

.tarjeta-v2__bio {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}
/* ==========================================
   SECCIÓN 4: VIDA UNIVERSITARIA Y SERVICIOS
   ========================================== */

/* Contenedor Principal de la Sección */
.servicios-seccion {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--primary-navy, #0f2c59);
  color: #ffffff;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .servicios-seccion {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Limitador de ancho centrado */
.servicios-contenedor {
  max-width: 80rem; /* ~1280px */
  margin-left: auto;
  margin-right: auto;
}

/* Header de la Sección (Flexbox) */
.servicios-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .servicios-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.servicios-subtitulo {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f59e0b; /* Color ámbar/dorado */
  margin-bottom: 0.25rem;
}

.servicios-titulo {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.servicios-descripcion-top {
  color: #cbd5e1;
  font-size: 0.875rem;
  max-width: 28rem;
  margin: 0;
}

/* Grilla de Servicios */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .servicios-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tarjeta de Servicio Individual */
.tarjeta-servicio {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.tarjeta-servicio:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* Iconos contenedores */
.tarjeta-servicio__icono {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Variaciones de color para cada icono */
.tarjeta-servicio__icono--amber {
  background-color: #f59e0b;
  color: var(--primary-navy, #0f2c59);
}

.tarjeta-servicio__icono--orange {
  background-color: #f97316;
  color: #ffffff;
}

.tarjeta-servicio__icono--blue {
  background-color: #3b82f6;
  color: #ffffff;
}

/* Encabezados y textos dentro de la tarjeta */
.tarjeta-servicio__titulo {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tarjeta-servicio__titulo--amber { color: #f59e0b; }
.tarjeta-servicio__titulo--orange { color: #f97316; }
.tarjeta-servicio__titulo--blue { color: #60a5fa; }

.tarjeta-servicio__texto {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

