body{
  margin:0;
  padding-top: 72px;
  font-family:'Inter', sans-serif;
  background:#ffffff;
  color:#1a1a1a;
  overflow-x:hidden; /* Evita scroll horizontal */
  overflow-y:auto; /* Permite scroll vertical */
}


/* ===== HERO ===== */
.hero{
  min-height:100vh;
  background:url(convocatoria2425.png) center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px 80px;
  position:relative;
  overflow:hidden;
}

/* Overlay con gradiente */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.92) 100%
  );
  z-index:1;
}

/* Patrón decorativo */
.hero-pattern{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(39,174,96,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,204,113,0.08) 0%, transparent 50%);
  z-index:1;
}

/* ===== CONTENIDO ===== */
.hero-content{
  max-width:1000px;
  position:relative;
  z-index:2;
  animation:fadeUp 1.2s ease;
}

/* Badge superior */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 24px;
  background:rgba(39,174,96,0.1);
  backdrop-filter:blur(10px);
  border:2px solid rgba(39,174,96,0.3);
  border-radius:50px;
  color:#27ae60;
  font-size:0.9rem;
  font-weight:700;
  margin-bottom:25px;
  animation:fadeIn 1s ease 0.3s backwards;
}

.hero-badge svg{
  animation:spin 3s linear infinite;
}

@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* Título */
.hero h1{
  font-size:clamp(2.5rem, 6vw, 4.5rem);
  font-weight:800;
  margin-bottom:20px;
  line-height:1.2;
  color:#1a1a1a;
  animation:fadeInUp 1s ease 0.4s backwards;
  padding:5px 0;
  background:linear-gradient(135deg, #1a1a1a, #27ae60);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* Subtítulo */
.hero-subtitle{
  font-size:clamp(1.1rem, 2vw, 1.3rem);
  color:#5f6b7a;
  margin-bottom:40px;
  line-height:1.6;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  animation:fadeInUp 1s ease 0.5s backwards;
}

/* ===== BOTÓN PRINCIPAL ===== */
.hero-main-action{
  margin-bottom:50px;
  animation:fadeInUp 1s ease 0.6s backwards;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:18px 40px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  font-size:1.15rem;
  font-weight:700;
  text-decoration:none;
  border-radius:50px;
  box-shadow:
    0 15px 40px rgba(46,204,113,0.4),
    0 0 30px rgba(46,204,113,0.2);
  transition:.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}

.btn-primary::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, #2ecc71, #27ae60);
  opacity:0;
  transition:.4s;
}

.btn-primary:hover::before{
  opacity:1;
}

.btn-primary:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:
    0 20px 60px rgba(46,204,113,0.5),
    0 0 50px rgba(46,204,113,0.3);
}

.btn-primary span,
.btn-primary svg{
  position:relative;
  z-index:1;
}

.btn-primary svg:last-child{
  transition:.3s;
}

.btn-primary:hover svg:last-child{
  transform:translateX(5px);
}

/* ===== ACCESOS RÁPIDOS ===== */
.hero-quick-links{
  animation:fadeInUp 1s ease 0.7s backwards;
}

.quick-links-title{
  font-size:0.95rem;
  font-weight:600;
  color:#5f6b7a;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
  max-width:800px;
  margin:0 auto;
}

.hero-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  background:#ffffff;
  color:#1a1a1a;
  font-weight:600;
  font-size:0.95rem;
  text-decoration:none;
  border-radius:50px;
  border:2px solid #e9ecef;
  transition:.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.link-icon{
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  background:rgba(39,174,96,0.1);
  border-radius:50%;
  transition:.3s;
}

.hero-link:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(39,174,96,0.2);
  border-color:#27ae60;
  color:#27ae60;
}

.hero-link:hover .link-icon{
  background:#27ae60;
  transform:scale(1.1) rotate(5deg);
}

/* ===== INDICADOR DE SCROLL ===== */
.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:#5f6b7a;
  font-size:0.9rem;
  font-weight:600;
  animation:bounce 2s ease-in-out infinite;
  z-index:2;
  cursor:pointer;
}

.scroll-indicator:hover{
  color:#27ae60;
}

@keyframes bounce{
  0%, 100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(-10px); }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 968px){
  .hero{
    padding:100px 20px 60px;
    min-height:auto;
  }
  
  .hero-actions{
    gap:12px;
  }
  
  .hero-link{
    padding:10px 18px;
    font-size:0.9rem;
  }
  
  .btn-primary{
    padding:16px 32px;
    font-size:1rem;
  }
}

@media(max-width: 640px){
  .hero-badge{
    font-size:0.8rem;
    padding:8px 18px;
  }
  
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  
  .hero-link{
    justify-content:center;
  }
  
  .scroll-indicator{
    display:none;
  }
  
  .btn-primary{
    width:100%;
    justify-content:center;
  }
}

/* ===== SECCIÓN SECUNDARIA ===== */
.section{
  padding:100px 20px; /* Más padding arriba y abajo */
  background:#f5f7f9;
  overflow:visible;
  min-height:600px; /* Altura mínima para dar espacio */
}

.section h2{
  text-align:center;
  font-size:2rem;
  margin-bottom:40px;
}

.cards{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#ffffff;
  border:1px solid #e6e9ed;
  padding:30px;
  border-radius:20px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card a{
  display:inline-block;
  margin-top:15px;
  color:#2ecc71;
  font-weight:600;
  text-decoration:none;
}

/* ===== ANIMACIÓN ===== */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
}

/* ===== HEADER ===== */
.header-modern {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-bottom:1px solid #e6e9ed;
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  transition:.3s;
}

.header-inner {
  height: 100%;
  max-width:1400px;
  margin:auto;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 20px;
}

.logo img {
  height: 42px;
  transition:.3s;
}

.logo a:hover img{
  transform:scale(1.05);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  cursor:pointer;
  transition:.3s;
  padding:5px;
}

.menu-toggle:hover{
  transform:scale(1.05);
}

.toggle-icon{
  width:32px;
  height:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.toggle-icon span {
  display:block;
  width:100%;
  height:3px;
  background:#1a1a1a;
  border-radius:10px;
  transition:0.4s;
}

.menu-label{
  font-size:10px;
  font-weight:700;
  color:#1a1a1a;
  letter-spacing:1px;
  transition:.3s;
}

.menu-toggle:hover .toggle-icon span{
  background:#27ae60;
}

.menu-toggle:hover .menu-label{
  color:#27ae60;
}

/* Animación cuando está activo */
.menu-toggle.active .toggle-icon span:nth-child(1){
  transform:rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .toggle-icon span:nth-child(2){
  opacity:0;
}

.menu-toggle.active .toggle-icon span:nth-child(3){
  transform:rotate(-45deg) translate(7px, -7px);
}

.menu-toggle.active .menu-label{
  color:#27ae60;
}

/* Responsive - ocultar texto en móvil */
@media(max-width: 640px){
  .menu-label{
    display:none;
  }
}

/* ===== ACTION BUTTONS ===== */
.header-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items:center;
}

/* BUZÓN */
.btn-buzon {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 9px 18px;
  border-radius: 30px;
  background: #f5f7f9;
  color: #1a1a1a;
  border: 1px solid #e6e9ed;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-buzon:hover {
  background: #ffffff;
  border-color:#27ae60;
  color:#27ae60;
  transform: translateY(-2px);
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.btn-buzon svg{
  transition:.3s;
}

.btn-buzon:hover svg{
  transform:scale(1.1);
}

/* BOLSA */
.btn-bolsat {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 9px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(39,174,96,0.3);
  transition: 0.35s;
  border:none;
}

.btn-bolsat:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(39,174,96,0.5);
}

.btn-bolsat svg{
  transition:.3s;
}

.btn-bolsat:hover svg{
  transform:scale(1.1);
}

/* ===== SIDE MENU ===== */
#sideMenu {
  position: fixed;
  top: 0;
  left: -350px;
  width: 320px;
  height: 100vh;
  background:#ffffff;
  box-shadow:4px 0 20px rgba(0,0,0,0.1);
  transition: 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1100;
  display:flex;
  flex-direction:column;
}

#sideMenu.active {
  left: 0;
}

/* Header del menú */
.sidemenu-header{
  padding:25px 25px 20px;
  border-bottom:1px solid #e6e9ed;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(135deg, #f8f9fa, #ffffff);
}

.sidemenu-logo{
  height:36px;
}

.sidemenu-close{
  background:transparent;
  border:none;
  cursor:pointer;
  padding:8px;
  border-radius:50%;
  transition:.3s;
  color:#5f6b7a;
}

.sidemenu-close:hover{
  background:#f5f7f9;
  color:#27ae60;
  transform:rotate(90deg);
}

/* Navegación */
.sidemenu-nav{
  flex:1;
  overflow-y:auto;
  padding:20px 0;
}

.sidemenu-nav ul {
  list-style: none;
  padding: 0;
  margin:0;
}

.sidemenu-nav li {
  margin-bottom: 5px;
}

.sidemenu-nav a {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 25px;
  color:#1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.sidemenu-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top:50%;
  transform:translateY(-50%);
  width: 0;
  height: 70%;
  background: #27ae60;
  border-radius:0 4px 4px 0;
  transition: 0.3s;
}

.sidemenu-nav a:hover::before {
  width: 4px;
}

.sidemenu-nav a:hover {
  background:#f5f7f9;
  color:#27ae60;
  padding-left:30px;
}

.sidemenu-nav a svg{
  flex-shrink:0;
  transition:.3s;
}

.sidemenu-nav a:hover svg{
  transform:scale(1.1);
  color:#27ae60;
}

/* Footer del menú */
.sidemenu-footer{
  padding:20px 25px;
  border-top:1px solid #e6e9ed;
  background:#f8f9fa;
  text-align:center;
}

.sidemenu-footer p{
  margin:5px 0;
  font-size:13px;
  color:#5f6b7a;
}

.sidemenu-footer p:first-child{
  font-weight:700;
  color:#1a1a1a;
}

/* ===== OVERLAY ===== */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter:blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1050;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 640px){
  .header-actions span{
    display:none;
  }
  
  .btn-buzon,
  .btn-bolsat{
    padding:9px 12px;
  }
  
  .header-inner{
    padding:0 15px;
  }
  
  #sideMenu{
    width:280px;
    left:-280px;
  }
}

/* ===== CARRUSEL ===== */
.carousel-container{
  position:relative;
  max-width:1300px;
  margin:auto;
  overflow:hidden;
}

.carousel{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:20px 10px;
}

.carousel::-webkit-scrollbar{
  display:none;
}

.carousel-card{
  min-width:280px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  transition:.35s;
  flex-shrink:0;
}

.carousel-card:hover{
  transform:translateY(-8px);
}

.carousel-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.carousel-card h3{
  margin:18px;
  font-size:1.1rem;
}

.carousel-card a{
  margin:0 18px 22px;
  display:inline-block;
  padding:10px 22px;
  background:linear-gradient(135deg,#27ae60,#2ecc71);
  color:#fff;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.carousel-card a:hover{
  transform:scale(1.05);
}

/* BOTONES */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  width:44px;
  height:44px;
  border-radius:50%;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  font-size:26px;
  cursor:pointer;
  z-index:10;
}

.carousel-btn.left{ left:0; }
.carousel-btn.right{ right:0; }


/* ===== SECCIÓN EGRESADOS ===== */
.egresados-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Overlay con gradiente */
.egresados-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.90), rgba(39, 174, 96, 0.85));
  z-index: 1;
}

/* Patrón decorativo animado */
.egresados-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float-pattern 20s infinite;
}

.pattern-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.pattern-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
}

.pattern-circle:nth-child(3) {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float-pattern {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
}

/* ===== CONTENIDO ===== */
.egresados-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  animation: fadeUp 1.2s ease;
}

/* Badge superior */
.egresados-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Título */
.egresados-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s backwards;
}

/* Descripción */
.egresados-content > p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.3s backwards;
}

/* ===== BENEFICIOS ===== */
.egresados-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
  animation: fadeInUp 1s ease 0.4s backwards;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.25); /* CAMBIADO: más opaco */
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4); /* CAMBIADO: borde más visible */
  transition: .3s;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.35); /* CAMBIADO: aún más opaco en hover */
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.6); /* CAMBIADO */
}

.benefit-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3); /* CAMBIADO: más opaco */
  border-radius: 50%;
}

.benefit-item span {
  font-weight: 700; /* CAMBIADO: más bold */
  font-size: 0.95rem;
  color: #fff; /* AGREGADO: color explícito */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* AGREGADO: sombra para legibilidad */
}

/* ===== BOTÓN PRINCIPAL ===== */
.egresados-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  border-radius: 50px;
  background: #fff;
  color: #007d69; /* Color del texto visible */
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.5);
  transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.5s backwards;
  z-index: 1; /* AGREGADO */
}

.egresados-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 125, 105, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: .6s;
  z-index: 1; /* AGREGADO */
}

.egresados-btn:hover::before {
  width: 400px;
  height: 400px;
}

.egresados-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 255, 255, 0.7);
  background: #fff; /* AGREGADO - Mantiene fondo blanco */
}

.egresados-btn:active {
  transform: translateY(-3px) scale(1.02);
}

.egresados-btn svg {
  position: relative;
  z-index: 2; /* AGREGADO - Para que el SVG esté sobre el ::before */
  color: #007d69; /* AGREGADO - Color explícito */
  transition: .3s;
}

.egresados-btn:hover svg {
  transform: translateX(5px);
}

.egresados-btn span {
  position: relative;
  z-index: 2; /* AGREGADO - Para que el texto esté sobre el ::before */
  color: #007d69; /* AGREGADO - Color explícito */
}

.egresados-btn:hover span,
.egresados-btn:hover svg {
  color: #007d69; /* AGREGADO - Mantiene color en hover */
}

/* Nota adicional */
.egresados-note {
  margin-top: 30px;
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
  animation: fadeIn 1s ease 1s backwards;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .egresados-section {
    min-height: auto;
    padding: 80px 20px;
  }
  
  .egresados-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .benefit-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .egresados-content h2 {
    font-size: 2rem;
  }
  
  .egresados-content > p {
    font-size: 1.05rem;
  }
  
  .egresados-btn {
    padding: 16px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .egresados-badge {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
  
  .pattern-circle {
    display: none;
  }
}

/* ===== SECCIÓN DE ESTADÍSTICAS ===== */
.stats-section{
  position:relative;
  padding:120px 20px;
  background:url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  color:#fff;
  overflow:hidden;
}

/* Overlay oscuro */
.stats-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,125,105,.85));
  z-index:1;
}

/* Patrón decorativo */
.stats-pattern{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46,204,113,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(39,174,96,0.15) 0%, transparent 50%);
  z-index:1;
}

/* ===== HEADER ===== */
.stats-header{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:60px;
}

.stats-badge{
  display:inline-block;
  padding:10px 24px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.3);
  border-radius:50px;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:20px;
  animation:fadeIn 1s ease;
}

.stats-header h2{
  font-size:clamp(2rem, 5vw, 3rem);
  font-weight:700;
  margin:0;
  text-shadow:0 4px 20px rgba(0,0,0,0.3);
  animation:fadeInUp 1s ease 0.2s backwards;
}

/* ===== CONTAINER ===== */
.stats-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
}

/* ===== TARJETAS ===== */
.stat-card{
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(15px);
  border:2px solid rgba(255,255,255,0.2);
  border-radius:24px;
  padding:40px 30px;
  text-align:center;
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  animation:fadeInUp 1s ease backwards;
}

.stat-card:nth-child(1){ animation-delay:0.3s; }
.stat-card:nth-child(2){ animation-delay:0.4s; }
.stat-card:nth-child(3){ animation-delay:0.5s; }
.stat-card:nth-child(4){ animation-delay:0.6s; }

/* Efecto de brillo en hover */
.stat-card::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent
  );
  transform:rotate(45deg);
  transition:.6s;
  opacity:0;
}

.stat-card:hover::before{
  opacity:1;
  left:100%;
}

.stat-card:hover{
  transform:translateY(-12px) scale(1.03);
  background:rgba(255,255,255,0.15);
  border-color:rgba(46,204,113,0.5);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 30px rgba(46,204,113,0.3);
}

/* ===== ÍCONO ===== */
.stat-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  background:linear-gradient(135deg, rgba(46,204,113,0.3), rgba(39,174,96,0.3));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:3px solid rgba(255,255,255,0.3);
  transition:.4s;
}

.stat-card:hover .stat-icon{
  transform:scale(1.1) rotate(5deg);
  background:linear-gradient(135deg, #2ecc71, #27ae60);
  border-color:#fff;
  box-shadow:0 10px 30px rgba(46,204,113,0.5);
}

/* ===== NÚMERO ===== */
.stat-number{
  font-size:clamp(3rem, 5vw, 4.5rem);
  font-weight:800;
  display:block;
  margin:20px 0 10px;
  background:linear-gradient(135deg, #fff, #2ecc71);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  text-shadow:0 4px 20px rgba(0,0,0,0.2);
  line-height:1;
}

/* ===== LABEL ===== */
.stat-label{
  font-size:1.1rem;
  font-weight:600;
  opacity:0.95;
  margin:0 0 20px 0;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* ===== BARRA DE PROGRESO ===== */
.stat-bar{
  width:100%;
  height:6px;
  background:rgba(255,255,255,0.2);
  border-radius:10px;
  overflow:hidden;
  margin-top:15px;
}

.stat-progress{
  height:100%;
  background:linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius:10px;
  box-shadow:0 0 10px rgba(46,204,113,0.8);
  animation:fillBar 2s ease-out 1s backwards;
}

/* ===== FOOTER ===== */
.stats-footer{
  position:relative;
  z-index:2;
  text-align:center;
  margin-top:60px;
  animation:fadeIn 1s ease 1s backwards;
}

.stats-footer p{
  font-size:1.2rem;
  font-weight:500;
  opacity:0.9;
  margin:0;
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fillBar{
  from{ width:0; }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px){
  .stats-section{
    padding:80px 20px;
  }
  
  .stats-container{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }
  
  .stat-card{
    padding:30px 20px;
  }
  
  .stat-icon{
    width:60px;
    height:60px;
  }
  
  .stat-icon svg{
    width:32px;
    height:32px;
  }
  
  .stats-header h2{
    font-size:1.8rem;
  }
}

@media(max-width: 480px){
  .stats-container{
    grid-template-columns:1fr;
  }
}

/* ===== SECCIÓN DE INFORMACIÓN ===== */
.info-sect{
  padding:100px 20px;
  background:linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position:relative;
  overflow:hidden;
}

/* Patrón de fondo */
.info-sect::before{
  content:'';
  position:absolute;
  top:-100px;
  left:-100px;
  width:400px;
  height:400px;
  background:radial-gradient(circle, rgba(39,174,96,0.05) 0%, transparent 70%);
  border-radius:50%;
}

.info-sect::after{
  content:'';
  position:absolute;
  bottom:-150px;
  right:-150px;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(46,204,113,0.05) 0%, transparent 70%);
  border-radius:50%;
}

/* ===== HEADER ===== */
.info-sectheader{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
  position:relative;
  z-index:1;
}

.info-sectbadge{
  display:inline-block;
  padding:8px 20px;
  background:rgba(39,174,96,0.1);
  color:#27ae60;
  border-radius:50px;
  font-size:0.9rem;
  font-weight:700;
  margin-bottom:15px;
  border:2px solid rgba(39,174,96,0.2);
}

.info-sect h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:15px;
}

.info-sectheader p{
  font-size:1.1rem;
  color:#5f6b7a;
  margin:0;
}

/* ===== GRID ===== */
.info-sectgrid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  position:relative;
  z-index:1;
}

/* ===== TARJETAS ===== */
.info-sectcard{
  background:#ffffff;
  padding:35px 28px;
  border-radius:20px;
  text-decoration:none;
  color:#1a1a1a;
  border:2px solid #e9ecef;
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* Línea superior animada */
.info-sectcard::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, #27ae60, #2ecc71);
  transform:scaleX(0);
  transition:.4s;
}

.info-sectcard:hover::before{
  transform:scaleX(1);
}

.info-sectcard:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  border-color:#27ae60;
}

/* Ícono */
.sectcard-icon{
  width:70px;
  height:70px;
  background:linear-gradient(135deg, rgba(39,174,96,0.1), rgba(46,204,113,0.15));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#27ae60;
  transition:.4s;
}

.info-sectcard:hover .sectcard-icon{
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 10px 30px rgba(39,174,96,0.3);
}

/* Título */
.info-sectcard h3{
  font-size:1.2rem;
  font-weight:700;
  margin:0;
  transition:.3s;
}

.info-sectcard:hover h3{
  color:#27ae60;
}

/* Descripción */
.info-sectcard p{
  font-size:0.95rem;
  color:#5f6b7a;
  margin:0;
  line-height:1.6;
  flex:1;
}

/* Flecha */
.sectcard-arrow{
  font-size:24px;
  color:#27ae60;
  align-self:flex-end;
  transition:.3s;
  font-weight:bold;
}

.info-sectcard:hover .card-arrow{
  transform:translateX(5px);
}

/* ===== TARJETA DESTACADA ===== */
.info-sectcard.highlight{
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  border:none;
  grid-column:span 1;
  position:relative;
}

/* Badge "Nuevo" */
.highlight-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(10px);
  color:#fff;
  padding:6px 14px;
  border-radius:50px;
  font-size:0.8rem;
  font-weight:700;
  border:2px solid rgba(255,255,255,0.3);
  animation:pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge{
  0%, 100%{ transform:scale(1); }
  50%{ transform:scale(1.05); }
}

.info-sectcard.highlight .sectcard-icon{
  background:rgba(255,255,255,0.25);
  color:#fff;
}

.info-sectcard.highlight:hover .sectcard-icon{
  background:#fff;
  color:#27ae60;
}

.info-sectcard.highlight h3,
.info-sectcard.highlight p,
.info-sectcard.highlight .sectcard-arrow{
  color:#fff;
}

.info-sectcard.highlight:hover h3{
  color:#fff;
}

.info-sectcard.highlight::before{
  background:#fff;
}

.info-sectcard.highlight:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 60px rgba(39,174,96,0.4);
}

/* Patrón de fondo en tarjeta destacada */
.info-sectcard.highlight::after{
  content:'';
  position:absolute;
  top:-50%;
  right:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events:none;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 968px){
  .info-sectgrid{
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
  }
  
  .info-sect{
    padding:80px 20px;
  }
}

@media(max-width: 640px){
  .info-sectgrid{
    grid-template-columns:1fr;
  }
  
  .info-sectcard{
    padding:30px 24px;
  }
  
  .sectcard-icon{
    width:60px;
    height:60px;
  }
  
  .sectcard-icon svg{
    width:32px;
    height:32px;
  }
}

/* ===== SECCIÓN DE ÉTICA ===== */
.ethics-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo */
.ethics-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 125, 105, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== HEADER ===== */
.ethics-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.ethics-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(156, 34, 60, 0.1), rgba(199, 44, 74, 0.15));
  color: #9C223C;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ethics-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

/* ===== WRAPPER ===== */
.ethics-wrapper {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ===== IMAGEN ===== */
.ethics-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.image-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.ethics-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: .4s;
}

.ethics-image:hover img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 125, 105, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  z-index: 2;
}

.image-badge svg {
  color: #fff;
}

/* ===== CONTENIDO ===== */
.ethics-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: .3s;
}

.content-box:hover {
  border-color: #007d69;
  box-shadow: 0 15px 40px rgba(0, 125, 105, 0.1);
}

.icon-feature {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  margin-bottom: 20px;
}

.content-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.ethics-text {
  font-size: 1rem;
  color: #5f6b7a;
  line-height: 1.7;
  margin: 0;
}

/* ===== CAJA DE CONTACTO ===== */
.contact-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  border: 1px solid #e8ecef;
  align-items: start;
  transition: .3s;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.contact-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.contact-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.contact-info p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0 0 10px 0;
}

.email-link {
  display: inline-block;
  color: #007d69;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(0, 125, 105, 0.1);
  border-radius: 8px;
  font-size: 1.05rem;
  transition: .3s;
}

.email-link:hover {
  background: #007d69;
  color: #fff;
}

/* ===== HIGHLIGHT ===== */
.ethics-highlight {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(156, 34, 60, 0.05), rgba(199, 44, 74, 0.08));
  border-radius: 14px;
  border-left: 4px solid #9C223C;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-content {
  position: relative;
  z-index: 1;
}

.highlight-content strong {
  display: block;
  font-size: 1.1rem;
  color: #9C223C;
  margin-bottom: 5px;
}

.highlight-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
}

/* ===== RECURSOS ===== */
.resources-section {
  max-width: 1300px;
  margin: 80px auto 0;
  position: relative;
  z-index: 1;
}

.resources-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.resources-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007d69, #27ae60);
  border-radius: 2px;
}

.ethics-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #ffffff;
  border-radius: 14px;
  border: 2px solid #f0f0f0;
  text-decoration: none;
  transition: all .3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: #007d69;
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.1);
}

.resource-card .card-icon {
  width: auto;
  height: auto;
  background: none;
  font-size: 2rem;
  margin: 0;
}

.resource-card h4 {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: color .3s ease;
}

.resource-card:hover h4 {
  color: #007d69;
}

.resource-card .card-arrow {
  font-size: 24px;
  color: #007d69;
  font-weight: bold;
  transition: .3s;
}

.resource-card:hover .card-arrow {
  transform: translateX(5px);
}

/* Tarjeta destacada */
.resource-card.featured {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.08));
  border-color: #007d69;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ethics-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ethics-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 968px) {
  .ethics-section {
    padding: 60px 20px;
  }
  
  .ethics-header {
    margin-bottom: 50px;
  }
  
  .resources-section {
    margin-top: 60px;
  }
  
  .ethics-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
  }
  
  .ethics-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SECCIÓN MISIÓN Y VISIÓN ===== */
.about {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo sutil */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 125, 105, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(156, 34, 60, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* ===== TÍTULO ===== */
.about .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  position: relative;
  padding-bottom: 20px;
  margin: 0;
}

.about .section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007d69, #27ae60);
  border-radius: 3px;
}

/* ===== GRID DE TARJETAS ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

/* ===== TARJETAS ===== */
.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 45px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all .4s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== ÍCONO ===== */
.about-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.2), rgba(39, 174, 96, 0.3));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  margin-bottom: 25px;
  transition: all .4s ease;
}

.about-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

/* ===== TÍTULO DE TARJETA ===== */
.about-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

/* ===== TEXTO ===== */
.about-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }
  
  .about .section-title {
    margin-bottom: 40px;
  }
  
  .about .section-title h2 {
    font-size: 2rem;
  }
  
  .about-card {
    padding: 35px;
  }
  
  .about-card .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .about-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 20px;
  }
  
  .about .section-title h2 {
    font-size: 1.7rem;
  }
  
  .about-card {
    padding: 28px;
  }
}


/* ===== SECCIÓN AVISO DE PRIVACIDAD ===== */
.privacy-section{
  padding:100px 20px;
  background:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position:relative;
  overflow:hidden;
}

/* Patrón decorativo */
.privacy-section::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
  border-radius:50%;
}

.privacy-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:1;
}

/* ===== CONTENIDO ===== */
.privacy-content{
  padding:40px 0;
}

/* Ícono */
.privacy-icon{
  width:100px;
  height:100px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-bottom:30px;
  box-shadow:0 15px 40px rgba(39,174,96,.3);
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* Título */
.privacy-content h2{
  font-size:2.5rem;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:20px;
  line-height:1.2;
}

/* Descripción */
.privacy-content p{
  font-size:1.1rem;
  line-height:1.8;
  color:#5f6b7a;
  margin-bottom:35px;
}

/* Botón */
.btn-privacy{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 35px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  font-size:1.1rem;
  font-weight:600;
  text-decoration:none;
  border-radius:50px;
  box-shadow:0 10px 30px rgba(39,174,96,.35);
  transition:.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}

.btn-privacy::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.3);
  transform:translate(-50%, -50%);
  transition:.6s;
}

.btn-privacy:hover::before{
  width:300px;
  height:300px;
}

.btn-privacy:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 15px 45px rgba(39,174,96,.5);
}

.btn-privacy:active{
  transform:translateY(-2px) scale(1.02);
}

.btn-privacy svg{
  position:relative;
  z-index:1;
}

/* ===== IMAGEN DECORATIVA ===== */
.privacy-image{
  position:relative;
  height:500px;
}

.image-bg{
  width:100%;
  height:100%;
  background:
    linear-gradient(135deg, rgba(39,174,96,0.1), rgba(46,204,113,0.1)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23e9ecef" width="400" height="400"/><g fill="%2327ae60" opacity="0.1"><circle cx="100" cy="100" r="80"/><circle cx="300" cy="300" r="100"/><rect x="200" y="50" width="60" height="60" rx="10"/></g></svg>');
  background-size:cover;
  background-position:center;
  border-radius:30px;
  box-shadow:0 20px 60px rgba(0,0,0,.15);
  position:relative;
}

.image-bg::before{
  content:'🔒';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  font-size:120px;
  opacity:0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .privacy-container{
    grid-template-columns:1fr;
    gap:40px;
  }
  
  .privacy-section{
    padding:60px 20px;
  }
  
  .privacy-content h2{
    font-size:2rem;
  }
  
  .privacy-image{
    height:350px;
  }
  
  .privacy-icon{
    width:80px;
    height:80px;
  }
  
  .privacy-icon svg{
    width:60px;
    height:60px;
  }
}

@media (max-width: 576px) {
  .privacy-content h2{
    font-size:1.6rem;
  }
  
  .privacy-content p{
    font-size:1rem;
  }
  
  .btn-privacy{
    padding:14px 28px;
    font-size:1rem;
  }
  
  .privacy-image{
    height:280px;
  }
}

/* ===== FOOTER ===== */
.footer-modern{
  background:#1a1a1a;
  color:#e9ecef;
  position:relative;
  overflow:hidden;
}

/* Patrón de fondo */
.footer-modern::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
}

/* Contenido principal */
.footer-content{
  padding:80px 20px 40px;
  position:relative;
  z-index:1;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1.2fr 1fr 1fr;
  gap:50px;
}

/* ===== COLUMNAS ===== */
.footer-col h3.footer-title{
  font-size:1.3rem;
  font-weight:700;
  color:#fff;
  margin-bottom:25px;
  position:relative;
  padding-bottom:12px;
}

.footer-col h3.footer-title::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:50px;
  height:3px;
  background:linear-gradient(90deg, #27ae60, #2ecc71);
  border-radius:2px;
}

/* ===== BRAND ===== */
.footer-brand .footer-logo{
  max-width:220px;
  margin-bottom:20px;
  filter:brightness(0) invert(1);
}

.footer-tagline{
  font-size:0.95rem;
  line-height:1.6;
  color:#b0b8c1;
  margin-bottom:25px;
}

/* ===== REDES SOCIALES CON EFECTOS DRAMÁTICOS ===== */
.footer-social{
  display:flex;
  gap:12px;
}

.social-link{
  width:42px;
  height:42px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e9ecef;
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border:2px solid transparent;
  position:relative;
  overflow:visible;
}

/* Resplandor de fondo */
.social-link::before{
  content:'';
  position:absolute;
  inset:-5px;
  border-radius:50%;
  opacity:0;
  transition:.4s;
  z-index:-1;
  filter:blur(10px);
}

.social-link:hover{
  transform:translateY(-8px) scale(1.15);
  color:#fff;
}

/* ===== FACEBOOK ===== */
.social-link:nth-child(1):hover{
  background:#1877f2;
  border-color:#4267B2;
  box-shadow:0 15px 35px rgba(24, 119, 242, 0.6);
}

.social-link:nth-child(1)::before{
  background:#1877f2;
}

.social-link:nth-child(1):hover::before{
  opacity:0.6;
  animation:glow 2s ease-in-out infinite;
}

/* ===== INSTAGRAM ===== */
.social-link:nth-child(2):hover{
  background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color:#e6683c;
  box-shadow:0 15px 35px rgba(230, 104, 60, 0.6);
}

.social-link:nth-child(2)::before{
  background:linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link:nth-child(2):hover::before{
  opacity:0.6;
  animation:glow 2s ease-in-out infinite;
}

/* ===== TIKTOK ===== */
.social-link:nth-child(3):hover{
  background:#000000;
  border-color:#00f2ea;
  box-shadow:
    0 15px 35px rgba(0, 242, 234, 0.5),
    0 0 30px rgba(254, 44, 85, 0.4);
}

.social-link:nth-child(3)::before{
  background:radial-gradient(circle, #00f2ea, #fe2c55);
}

.social-link:nth-child(3):hover::before{
  opacity:0.5;
  animation:glitch 3s ease-in-out infinite;
}

/* ===== YOUTUBE ===== */
.social-link:nth-child(4):hover{
  background:#ff0000;
  border-color:#cc0000;
  box-shadow:0 15px 35px rgba(255, 0, 0, 0.6);
}

.social-link:nth-child(4)::before{
  background:#ff0000;
}

.social-link:nth-child(4):hover::before{
  opacity:0.6;
  animation:glow 2s ease-in-out infinite;
}

/* ===== EMAIL (Outlook) ===== */
.social-link:nth-child(5):hover{
  background:#0078d4;
  border-color:#005a9e;
  box-shadow:0 15px 35px rgba(0, 120, 212, 0.6);
}

.social-link:nth-child(5)::before{
  background:#0078d4;
}

.social-link:nth-child(5):hover::before{
  opacity:0.6;
  animation:glow 2s ease-in-out infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes glow{
  0%, 100%{
    transform:scale(1);
    opacity:0.6;
  }
  50%{
    transform:scale(1.2);
    opacity:0.8;
  }
}

@keyframes glitch{
  0%, 100%{
    transform:translate(0, 0) scale(1);
  }
  20%{
    transform:translate(-2px, 2px) scale(1.05);
  }
  40%{
    transform:translate(2px, -2px) scale(0.95);
  }
  60%{
    transform:translate(-2px, -2px) scale(1.05);
  }
  80%{
    transform:translate(2px, 2px) scale(0.95);
  }
}

/* ===== LISTA DE CONTACTO ===== */
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.footer-item{
  display:flex;
  gap:12px;
  font-size:0.9rem;
  line-height:1.6;
  color:#b0b8c1;
}

.footer-item svg{
  flex-shrink:0;
  color:#27ae60;
  margin-top:2px;
}

.footer-item strong{
  color:#fff;
  display:block;
  margin-bottom:4px;
}

/* ===== ENLACES RÁPIDOS ===== */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:#b0b8c1;
  text-decoration:none;
  font-size:0.95rem;
  transition:.3s;
  display:inline-block;
  position:relative;
  padding-left:18px;
}

.footer-links a::before{
  content:'→';
  position:absolute;
  left:0;
  color:#27ae60;
  opacity:0;
  transform:translateX(-5px);
  transition:.3s;
}

.footer-links a:hover{
  color:#27ae60;
  padding-left:20px;
}

.footer-links a:hover::before{
  opacity:1;
  transform:translateX(0);
}

/* ===== GOBIERNO ===== */
.footer-gov{
  text-align:center;
}

.footer-escudo{
  max-width:120px;
  margin:0 auto 15px;
  filter:brightness(0) invert(1);
  opacity:0.9;
}

.footer-gov-text{
  font-size:0.9rem;
  color:#b0b8c1;
  margin:0;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:25px 20px;
  background:rgba(0,0,0,0.3);
}

.footer-bottom .footer-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-bottom p{
  margin:0;
  font-size:0.9rem;
  color:#b0b8c1;
}

.footer-bottom-links{
  display:flex;
  gap:15px;
  align-items:center;
  font-size:0.9rem;
}

.footer-bottom-links a{
  color:#b0b8c1;
  text-decoration:none;
  transition:.3s;
}

.footer-bottom-links a:hover{
  color:#27ae60;
}

.footer-bottom-links span{
  color:rgba(255,255,255,0.2);
}

/* ===== BOTÓN VOLVER ARRIBA ===== */
.back-to-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  border:none;
  border-radius:50%;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(39,174,96,0.4);
  opacity:0;
  visibility:hidden;
  transform:scale(0.8);
  transition:.4s;
  z-index:999;
}

.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}

.back-to-top:hover{
  transform:scale(1.1) translateY(-5px);
  box-shadow:0 15px 40px rgba(39,174,96,0.6);
}

.back-to-top:active{
  transform:scale(0.95);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

@media(max-width: 768px){
  .footer-content{
    padding:60px 20px 30px;
  }
  
  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }
  
  .footer-brand,
  .footer-gov{
    text-align:center;
  }
  
  .footer-social{
    justify-content:center;
  }
  
  .footer-col h3.footer-title::after{
    left:50%;
    transform:translateX(-50%);
  }
  
  .footer-bottom .footer-container{
    flex-direction:column;
    text-align:center;
  }
  
  .back-to-top{
    bottom:20px;
    right:20px;
    width:45px;
    height:45px;
  }
}

/* ===== HERO PLANTELES ===== */
.planteles-hero{
  min-height:50vh;
  background:
    linear-gradient(135deg, rgba(39,174,96,0.9), rgba(0,125,105,0.9)),
    url('/images/valores/compromiso.jpg') center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:150px 20px 80px;
  position:relative;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  color:#fff;
  animation:fadeUp 1s ease;
}

.hero-badge{
   display:inline-block;
  padding:8px 20px;
  background:rgba(255,255,255,0.95); /* Cambiado de 0.2 a 0.95 para mayor opacidad */
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.3);
  border-radius:50px;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
  color:#27ae60; /* Agregado color verde para el texto */
  text-shadow:none; /* Asegurar que no haya sombra que dificulte lectura */
}

.planteles-hero h1{
  font-size:clamp(2.5rem, 5vw, 4rem);
  font-weight:800;
  margin-bottom:20px;
  text-shadow:0 4px 20px rgba(0,0,0,0.3);
}

.planteles-hero p{
  font-size:1.2rem;
  opacity:0.95;
  line-height:1.6;
}

/* ===== SECCIÓN DE PLANTELES ===== */
.planteles-section{
  padding:100px 20px;
  background:linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.planteles-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
  gap:35px;
}

/* ===== TARJETAS DE PLANTELES ===== */
.plantel-card{
  background:#ffffff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border:2px solid transparent;
  position:relative;
}

.plantel-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #27ae60, #2ecc71);
  transform:scaleX(0);
  transition:.4s;
}

.plantel-card:hover::before{
  transform:scaleX(1);
}

.plantel-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  border-color:#27ae60;
}

/* Imagen del plantel */
.plantel-image{
  position:relative;
  height:240px;
  overflow:hidden;
  background:#f5f7f9;
}

.plantel-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.plantel-card:hover .plantel-image img{
  transform:scale(1.1);
}

.plantel-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:8px 16px;
  border-radius:50px;
  font-size:0.85rem;
  font-weight:700;
  color:#27ae60;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* Contenido */
.plantel-content{
  padding:30px;
  position:relative;
}

.plantel-icon{
  width:64px;
  height:64px;
  background:linear-gradient(135deg, rgba(39,174,96,0.1), rgba(46,204,113,0.15));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#27ae60;
  margin-bottom:20px;
  transition:.4s;
}

.plantel-card:hover .plantel-icon{
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 10px 30px rgba(39,174,96,0.3);
}

.plantel-content h3{
  font-size:1.6rem;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:15px;
  transition:.3s;
}

.plantel-card:hover h3{
  color:#27ae60;
}

/* Ubicación */
.plantel-location{
  display:flex;
  gap:10px;
  align-items:start;
  margin-bottom:25px;
}

.plantel-location svg{
  flex-shrink:0;
  color:#27ae60;
  margin-top:2px;
}

.plantel-location p{
  margin:0;
  font-size:0.95rem;
  color:#5f6b7a;
  line-height:1.6;
}

/* Link */
.plantel-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:50px;
  transition:.3s;
  box-shadow:0 5px 20px rgba(39,174,96,0.3);
}

.plantel-link svg{
  transition:.3s;
}

.plantel-link:hover{
  transform:scale(1.05);
  box-shadow:0 8px 30px rgba(39,174,96,0.5);
}

.plantel-link:hover svg{
  transform:translateX(5px);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px){
  .planteles-hero{
    padding:120px 20px 60px;
    min-height:40vh;
  }
  
  .planteles-section{
    padding:60px 20px;
  }
  
  .planteles-container{
    grid-template-columns:1fr;
    gap:25px;
  }
  
  .plantel-image{
    height:200px;
  }
  
  .plantel-content{
    padding:25px 20px;
  }
}

/* ===== HERO OFERTA EDUCATIVA ===== */
.oferta-hero{
  min-height:60vh;
  background:
    linear-gradient(135deg, rgba(0,125,105,0.9), rgba(39,174,96,0.9)),
    url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:150px 20px 80px;
  position:relative;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  color:#fff;
  animation:fadeUp 1s ease;
}

.hero-badge{
  display:inline-block;
  padding:8px 20px;
  background:rgba(255,255,255,0.95); /* Cambiado de 0.2 a 0.95 para mayor opacidad */
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.3);
  border-radius:50px;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
  color:#27ae60; /* Agregado color verde para el texto */
  text-shadow:none; /* Asegurar que no haya sombra que dificulte lectura */
}

.oferta-hero h1{
  font-size:clamp(2.5rem, 5vw, 4rem);
  font-weight:800;
  margin-bottom:25px;
  text-shadow:0 4px 20px rgba(0,0,0,0.3);
}

.oferta-hero p{
  font-size:1.15rem;
  line-height:1.8;
  opacity:0.95;
  text-align:justify;
}

/* ===== SECCIÓN DE CARRERAS ===== */
.oferta-section{
  padding:100px 20px;
  background:linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.oferta-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:30px;
}

/* ===== TARJETAS DE CARRERAS ===== */
.carrera-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border:2px solid transparent;
  position:relative;
}

.carrera-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #27ae60, #2ecc71);
  transform:scaleX(0);
  transition:.4s;
}

.carrera-card:hover::before{
  transform:scaleX(1);
}

.carrera-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 50px rgba(0,0,0,0.15);
  border-color:#27ae60;
}

/* Imagen */
.carrera-image{
  position:relative;
  height:200px;
  overflow:hidden;
  background:#f5f7f9;
}

.carrera-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
  image-rendering:-webkit-optimize-contrast; /* Mejora nitidez en Chrome/Safari */
  image-rendering:crisp-edges; /* Mejora nitidez en Firefox */
  backface-visibility:hidden; /* Previene blur en transformaciones */
  transform:translateZ(0); /* Activa aceleración hardware */
}

.carrera-card:hover .carrera-image img{
  transform:scale(1.1);
}

.carrera-overlay{
  position:absolute;
  top:15px;
  right:15px;
}

.carrera-tag{
  display:inline-block;
  padding:6px 14px;
  background:rgba(39,174,96,0.95);
  backdrop-filter:blur(10px);
  color:#fff;
  border-radius:50px;
  font-size:0.8rem;
  font-weight:700;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* Contenido */
.carrera-content{
  padding:25px;
}

.carrera-icon{
  width:56px;
  height:56px;
  background:linear-gradient(135deg, rgba(39,174,96,0.1), rgba(46,204,113,0.15));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#27ae60;
  margin-bottom:15px;
  transition:.4s;
}

.carrera-card:hover .carrera-icon{
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 8px 25px rgba(39,174,96,0.3);
}

.carrera-content h3{
  font-size:1.3rem;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:8px;
  min-height:60px;
  display:flex;
  align-items:center;
  transition:.3s;
}

.carrera-card:hover h3{
  color:#27ae60;
}

.carrera-content p{
  font-size:0.9rem;
  color:#5f6b7a;
  margin-bottom:20px;
}

/* Link */
.carrera-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  background:linear-gradient(135deg, #27ae60, #2ecc71);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:50px;
  transition:.3s;
  font-size:0.95rem;
  box-shadow:0 4px 15px rgba(39,174,96,0.3);
}

.carrera-link svg{
  transition:.3s;
}

.carrera-link:hover{
  transform:scale(1.05);
  box-shadow:0 6px 25px rgba(39,174,96,0.5);
}

.carrera-link:hover svg{
  transform:translateX(5px);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 968px){
  .oferta-hero{
    padding:120px 20px 60px;
    min-height:auto;
  }
  
  .oferta-section{
    padding:60px 20px;
  }
  
  .oferta-container{
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap:25px;
  }
  
  .carrera-image{
    height:180px;
  }
}

@media(max-width: 640px){
  .oferta-container{
    grid-template-columns:1fr;
  }
  
  .carrera-content h3{
    min-height:auto;
    font-size:1.2rem;
  }
  
  .oferta-hero p{
    text-align:center;
  }
}

/* ===== HERO CAPACITACIÓN ===== */
.capacitacion-hero {
  min-height: 60vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.92), rgba(156, 34, 60, 0.88)),
    url('/images/valores/compromiso.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 80px;
  position: relative;
  overflow: hidden;
}

.capacitacion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  animation: fadeUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #9C223C;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.hero-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.capacitacion-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.capacitacion-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SECCIÓN DE PROGRAMAS ===== */
.capacitacion-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.capacitacion-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

/* ===== TARJETAS DE PROGRAMAS ===== */
.programa-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.programa-card:nth-child(1) {
  animation-delay: 0.1s;
}

.programa-card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007d69, #27ae60, #9C223C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.programa-card:hover::before {
  transform: scaleX(1);
}

.programa-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 125, 105, 0.2);
  border-color: #007d69;
}

/* Imagen del programa */
.programa-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7f9 0%, #e8ecef 100%);
}

.programa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.programa-card:hover .programa-image img {
  transform: scale(1.08) rotate(1deg);
}

.programa-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.programa-tag {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(156, 34, 60, 0.4);
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { 
    box-shadow: 0 6px 20px rgba(156, 34, 60, 0.4);
  }
  50% { 
    box-shadow: 0 8px 30px rgba(156, 34, 60, 0.6);
  }
}

/* Contenido del programa */
.programa-content {
  padding: 35px;
}

.programa-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.programa-card:hover .programa-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.3);
}

.programa-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.programa-card:hover h3 {
  color: #007d69;
}

.programa-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.7;
  margin-bottom: 25px;
  min-height: 80px;
}

/* Estadísticas del programa */
.programa-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid #e8ecef;
  border-bottom: 1px solid #e8ecef;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5f6b7a;
  font-size: 0.85rem;
  font-weight: 500;
}

.stat-item svg {
  color: #007d69;
  flex-shrink: 0;
}

/* Link del programa */
.programa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.3);
  position: relative;
  overflow: hidden;
}

.programa-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.programa-link:hover::before {
  transform: translateX(100%);
}

.programa-link svg {
  transition: transform 0.3s ease;
}

.programa-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 125, 105, 0.5);
}

.programa-link:hover svg {
  transform: translateY(3px);
}

/* Link deshabilitado */
.programa-link-disabled {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  cursor: not-allowed;
  opacity: 0.7;
}

.programa-link-disabled:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(149, 165, 166, 0.3);
}

/* ===== BANNER INFORMATIVO ===== */
.info-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0, 125, 105, 0.2);
  position: relative;
  overflow: hidden;
}

.info-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.info-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}

.info-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.info-text {
  flex: 1;
}

.info-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.info-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: #007d69;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #9C223C;
}

.info-button svg {
  transition: transform 0.3s ease;
}

.info-button:hover svg {
  transform: translateX(5px);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .capacitacion-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .capacitacion-section {
    padding: 60px 20px;
  }

  .capacitacion-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .programa-image {
    height: 240px;
  }

  .programa-content {
    padding: 28px;
  }

  .programa-content h3 {
    font-size: 1.3rem;
    min-height: auto;
  }

  .programa-content p {
    min-height: auto;
  }

  .info-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .info-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .capacitacion-hero h1 {
    font-size: 2rem;
  }

  .capacitacion-hero p {
    font-size: 1rem;
  }

  .programa-stats {
    flex-direction: column;
    gap: 12px;
  }

  .info-banner {
    padding: 35px 25px;
  }

  .info-icon {
    width: 64px;
    height: 64px;
  }

  .info-text h3 {
    font-size: 1.3rem;
  }

  .info-text p {
    font-size: 0.9rem;
  }
}

/* ===== HERO INTRANET ===== */
.intranet-hero {
  min-height: 55vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.93), rgba(156, 34, 60, 0.90)),
    url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 70px;
  position: relative;
  overflow: hidden;
}

.intranet-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: pulseIntranet 6s ease-in-out infinite;
}

@keyframes pulseIntranet {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== SECCIÓN DE SERVICIOS ===== */
.intranet-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.intranet-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

/* ===== TARJETAS DE SERVICIOS ===== */
.servicio-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  animation: fadeInUpService 0.6s ease forwards;
  opacity: 0;
}

.servicio-card:nth-child(1) { animation-delay: 0.05s; }
.servicio-card:nth-child(2) { animation-delay: 0.1s; }
.servicio-card:nth-child(3) { animation-delay: 0.15s; }
.servicio-card:nth-child(4) { animation-delay: 0.2s; }
.servicio-card:nth-child(5) { animation-delay: 0.25s; }
.servicio-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUpService {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007d69, #9C223C);
  transform: scaleX(0);
  transition: 0.4s;
}

.servicio-card:hover::before {
  transform: scaleX(1);
}

.servicio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 125, 105, 0.18);
  border-color: #007d69;
}

/* Imagen */
.servicio-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7f9, #e8ecef);
}

.servicio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.servicio-card:hover .servicio-image img {
  transform: scale(1.1);
}

.servicio-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.servicio-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(156, 34, 60, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(156, 34, 60, 0.3);
}

/* Contenido */
.servicio-content {
  padding: 28px;
}

.servicio-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  margin-bottom: 15px;
  transition: 0.4s;
}

.servicio-card:hover .servicio-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
}

.servicio-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  min-height: 55px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  line-height: 1.3;
}

.servicio-card:hover h3 {
  color: #007d69;
}

.servicio-content p {
  font-size: 0.9rem;
  color: #5f6b7a;
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 65px;
}

/* Link */
.servicio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.3);
}

.servicio-link svg {
  transition: 0.3s;
}

.servicio-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 125, 105, 0.5);
}

.servicio-link:hover svg {
  transform: translate(3px, -3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .intranet-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }
  
  .intranet-section {
    padding: 70px 20px;
  }
  
  .intranet-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
  
  .servicio-image {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .intranet-container {
    grid-template-columns: 1fr;
  }
  
  .servicio-content h3 {
    min-height: auto;
    font-size: 1.15rem;
  }
  
  .servicio-content p {
    min-height: auto;
  }
}

/* ===== HERO TRANSPARENCIA ===== */
.transparencia-hero {
  min-height: 55vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.92), rgba(156, 34, 60, 0.88)),
    url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 70px;
  position: relative;
  overflow: hidden;
}

.transparencia-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 25% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: pulseTransparencia 7s ease-in-out infinite;
}

@keyframes pulseTransparencia {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== SECCIÓN DE PUBLICACIONES ===== */
.transparencia-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.transparencia-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

/* ===== TARJETAS DE PUBLICACIONES ===== */
.publicacion-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  animation: fadeInUpPublicacion 0.6s ease forwards;
  opacity: 0;
}

.publicacion-card:nth-child(1) { animation-delay: 0.05s; }
.publicacion-card:nth-child(2) { animation-delay: 0.1s; }
.publicacion-card:nth-child(3) { animation-delay: 0.15s; }
.publicacion-card:nth-child(4) { animation-delay: 0.2s; }
.publicacion-card:nth-child(5) { animation-delay: 0.25s; }
.publicacion-card:nth-child(6) { animation-delay: 0.3s; }
.publicacion-card:nth-child(7) { animation-delay: 0.35s; }
.publicacion-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUpPublicacion {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.publicacion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007d69, #9C223C);
  transform: scaleX(0);
  transition: 0.4s;
}

.publicacion-card:hover::before {
  transform: scaleX(1);
}

.publicacion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 125, 105, 0.18);
  border-color: #007d69;
}

/* Imagen */
.publicacion-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7f9, #e8ecef);
}

.publicacion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.publicacion-card:hover .publicacion-image img {
  transform: scale(1.1);
}

.publicacion-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.publicacion-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(156, 34, 60, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(156, 34, 60, 0.3);
}

/* Contenido */
.publicacion-content {
  padding: 28px;
}

.publicacion-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  margin-bottom: 15px;
  transition: 0.4s;
}

.publicacion-card:hover .publicacion-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
}

.publicacion-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  line-height: 1.3;
}

.publicacion-card:hover h3 {
  color: #007d69;
}

.publicacion-content p {
  font-size: 0.9rem;
  color: #5f6b7a;
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 65px;
}

/* Link */
.publicacion-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.3);
}

.publicacion-link svg {
  transition: 0.3s;
}

.publicacion-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 125, 105, 0.5);
}

.publicacion-link:hover svg {
  transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .transparencia-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }
  
  .transparencia-section {
    padding: 70px 20px;
  }
  
  .transparencia-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
  
  .publicacion-image {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .transparencia-container {
    grid-template-columns: 1fr;
  }
  
  .publicacion-content h3 {
    min-height: auto;
    font-size: 1.15rem;
  }
  
  .publicacion-content p {
    min-height: auto;
  }
}

/* ===== HERO BUZÓN ===== */
.buzon-hero {
  min-height: 50vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.92), rgba(156, 34, 60, 0.88)),
    url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 70px;
  position: relative;
  overflow: hidden;
}

.buzon-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: pulseBuzon 7s ease-in-out infinite;
}

@keyframes pulseBuzon {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== SECCIÓN DE BUZÓN ===== */
.buzon-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.buzon-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

/* ===== WRAPPER DEL FORMULARIO ===== */
.buzon-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.buzon-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.buzon-info > p {
  font-size: 1rem;
  color: #5f6b7a;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Items de información */
.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  border: 1px solid #e8ecef;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
}

.info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 0.9rem;
  color: #5f6b7a;
  line-height: 1.5;
}

/* ===== ALERTAS ===== */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert svg {
  flex-shrink: 0;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border: 2px solid #b1dfbb;
}

.alert-success svg {
  color: #28a745;
}

.alert-error {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border: 2px solid #f1b0b7;
}

.alert-error svg {
  color: #dc3545;
}

/* ===== FORMULARIO ===== */
.buzon-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group label svg {
  color: #007d69;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #007d69;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 125, 105, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.character-count {
  font-size: 0.85rem;
  color: #5f6b7a;
  text-align: right;
}

/* Botón de envío */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.3);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.form-submit:hover::before {
  transform: translateX(100%);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 125, 105, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit svg {
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: translateX(3px);
}

/* Privacidad */
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5f6b7a;
  line-height: 1.5;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #007d69;
  margin-top: 10px;
}

.form-privacy svg {
  flex-shrink: 0;
  color: #007d69;
}

/* ===== IMAGEN LATERAL ===== */
.buzon-image-wrapper {
  position: sticky;
  top: 100px;
  animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.buzon-image {
  height: 600px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 125, 105, 0.7) 0%, rgba(156, 34, 60, 0.85) 100%);
}

.admin-access {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  color: #fff;
  z-index: 1;
}

.admin-access h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-access p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #007d69;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.admin-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: #9C223C;
}

.admin-btn svg {
  transition: transform 0.3s ease;
}

.admin-btn:hover svg {
  transform: rotate(-5deg) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .buzon-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .buzon-image-wrapper {
    position: relative;
    top: 0;
  }

  .buzon-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .buzon-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .buzon-section {
    padding: 60px 20px;
  }

  .buzon-form-wrapper {
    padding: 30px 25px;
  }

  .buzon-info h2 {
    font-size: 1.6rem;
  }

  .info-items {
    padding: 20px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
  }

  .form-submit {
    width: 100%;
  }

  .buzon-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .buzon-form-wrapper {
    padding: 25px 20px;
  }

  .buzon-info h2 {
    font-size: 1.4rem;
  }

  .info-items {
    gap: 15px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .form-input,
  .form-textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .form-submit {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .buzon-image {
    height: 300px;
  }

  .admin-access {
    padding: 25px;
  }

  .admin-access h3 {
    font-size: 1.3rem;
  }
}

/* ===== HERO BOLSA DE TRABAJO ===== */
.bolsa-hero {
  min-height: 70vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.95), rgba(156, 34, 60, 0.92)),
    url('/vigencias/images/conal2.png') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 200%;
  background-position: 50% 50%;
  animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
  0%, 100% { 
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
  }
  50% { 
    background-position: 100% 100%, 0% 0%, 70% 30%, 20% 80%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  animation: fadeUp 1s ease;
}

.hero-icon-large {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.hero-icon-large svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 20px;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* Stats Hero */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 1s ease 0.3s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* ===== SECCIÓN DE INFORMACIÓN MEJORADA ===== */
.bolsa-info-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.bolsa-info-container {
  max-width: 1400px;
  margin: auto;
}

/* Header de Información */
.info-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.info-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.info-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007d69, #27ae60);
  border-radius: 3px;
}

.info-header p {
  font-size: 1.15rem;
  color: #5f6b7a;
  line-height: 1.8;
  margin-top: 30px;
}

/* Wrapper de Beneficios */
.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: start;
}

/* Columnas de Beneficios */
.benefits-column {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  animation: fadeInScale 0.6s ease both;
}

.benefits-column:nth-child(1) { animation-delay: 0.1s; }
.benefits-column:nth-child(3) { animation-delay: 0.2s; }

.benefits-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 125, 105, 0.15);
  border-color: #007d69;
}

/* Header de Columna */
.column-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.column-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.estudiantes-icon {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  color: #007d69;
}

.empresas-icon {
  background: linear-gradient(135deg, rgba(156, 34, 60, 0.1), rgba(199, 44, 74, 0.15));
  color: #9C223C;
}

.benefits-column:hover .estudiantes-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.3);
}

.benefits-column:hover .empresas-icon {
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(156, 34, 60, 0.3);
}

.column-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.column-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  font-weight: 500;
}

/* Lista de Beneficios */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit1-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit1-item:hover {
  background: #ffffff;
  border-color: #007d69;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.1);
}

.benefit1-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.benefit1-item:hover .benefit1-check {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.4);
}

.benefit1-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.benefit1-text p {
  font-size: 0.9rem;
  color: #5f6b7a;
  line-height: 1.5;
}

/* Divider Central */
.benefits-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}

.divider-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, transparent, #007d69, #9C223C, transparent);
  border-radius: 2px;
}

.divider-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007d69, #9C223C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
  animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* Banner de Impacto */
.impact-banner {
  position: relative;
  padding: 60px;
  border-radius: 28px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.impact-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #007d69, #27ae60, #9C223C);
  opacity: 1;
}

.impact-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: pulseBackground 8s ease-in-out infinite;
}

@keyframes pulseBackground {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.impact-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 35px;
  color: #fff;
}

.impact-icon-wrapper {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.impact-text-wrapper h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.impact-text-wrapper p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .bolsa-info-section {
    padding: 70px 20px;
  }

  .info-header {
    margin-bottom: 50px;
  }

  .info-header h2 {
    font-size: 2.2rem;
  }

  .benefits-column {
    padding: 30px;
  }

  .column-icon {
    width: 70px;
    height: 70px;
  }

  .column-icon svg {
    width: 32px;
    height: 32px;
  }

  .column-header h3 {
    font-size: 1.4rem;
  }

  .impact-banner {
    padding: 40px 30px;
  }

  .impact-content {
    flex-direction: column;
    text-align: center;
  }

  .impact-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .impact-text-wrapper h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .info-header h2 {
    font-size: 1.8rem;
  }

  .info-header p {
    font-size: 1rem;
  }

  .benefits-column {
    padding: 25px;
  }

  .benefit1-item {
    padding: 15px;
  }

  .benefit1-check {
    width: 35px;
    height: 35px;
  }

  .impact-banner {
    padding: 30px 20px;
  }

  .impact-text-wrapper h3 {
    font-size: 1.4rem;
  }

  .impact-text-wrapper p {
    font-size: 0.95rem;
  }
}

/* ===== SECCIÓN DE REGISTRO ===== */
.bolsa-registro-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.bolsa-registro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #f8f9fa, transparent);
}

.registro-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Cards de Registro */
.registro-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: zoomIn 0.6s ease both;
}

.registro-card:nth-child(1) { animation-delay: 0.1s; }
.registro-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.registro-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 125, 105, 0.2);
}

.card-decorative-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #007d69, #27ae60, #9C223C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.registro-card:hover .card-decorative-top {
  transform: scaleX(1);
}

/* Imagen de Card */
.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.registro-card:hover .card-image img {
  transform: scale(1.1) rotate(2deg);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 125, 105, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.registro-card:hover .image-overlay {
  opacity: 1;
}

/* Contenido de Card */
.card-content {
  padding: 45px;
}

.recard-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  margin: -65px auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.registro-card:hover .recard-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 15px 40px rgba(0, 125, 105, 0.4);
}

.card-content h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.registro-card:hover h2 {
  color: #007d69;
}

.card-description {
  font-size: 1rem;
  color: #5f6b7a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
}

/* Features de Card */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  border: 1px solid #e8ecef;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
}

.feature-item svg {
  flex-shrink: 0;
  color: #007d69;
  background: rgba(0, 125, 105, 0.1);
  padding: 4px;
  border-radius: 50%;
}

/* Botón de Card */
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
  position: relative;
  overflow: hidden;
}

.card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.card-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 125, 105, 0.5);
}

.card-btn svg {
  transition: transform 0.3s ease;
}

.card-btn:hover svg {
  transform: translateX(5px);
}

/* Variantes de color */
.registro-empresas .recard-icon {
  background: linear-gradient(135deg, rgba(156, 34, 60, 0.1), rgba(156, 34, 60, 0.15));
  color: #9C223C;
}

.registro-empresas:hover .recard-icon {
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  color: #fff;
}

.registro-empresas .card-btn {
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  box-shadow: 0 8px 25px rgba(156, 34, 60, 0.3);
}

.registro-empresas .card-btn:hover {
  box-shadow: 0 12px 40px rgba(156, 34, 60, 0.5);
}

.registro-empresas .feature-item svg {
  color: #9C223C;
  background: rgba(156, 34, 60, 0.1);
}

.registro-empresas:hover h2 {
  color: #9C223C;
}

/* ===== SECCIÓN DE PROCESO ===== */
.bolsa-proceso-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  position: relative;
  overflow: hidden;
}

.bolsa-proceso-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.proceso-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.proceso-header {
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
}

.proceso-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.proceso-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.proceso-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  animation: fadeInUp 0.6s ease both;
}

.proceso-card:nth-child(1) { animation-delay: 0.1s; }
.proceso-card:nth-child(2) { animation-delay: 0.2s; }
.proceso-card:nth-child(3) { animation-delay: 0.3s; }
.proceso-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proceso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

.proceso-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(156, 34, 60, 0.4);
}

.proceso-icon {
  width: 80px;
  height: 80px;
  margin: 30px auto 25px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  transition: all 0.4s ease;
}

.proceso-card:hover .proceso-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.proceso-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.proceso-card p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
}

/* ===== GALERÍA ===== */
.bolsa-galeria-section {
  padding: 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.galeria-item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galeria-item:hover img {
  transform: scale(1.15);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 125, 105, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-content {
  color: #fff;
}

.galeria-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.galeria-content p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* ===== CTA FINAL ===== */
.bolsa-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  position: relative;
  overflow: hidden;
}

.bolsa-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 125, 105, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(156, 34, 60, 0.2) 0%, transparent 50%);
}

.cta-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 45px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.cta-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.cta-primary {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 125, 105, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 125, 105, 0.6);
}

.cta-secondary {
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  color: #fff;
  box-shadow: 0 8px 30px rgba(156, 34, 60, 0.4);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(156, 34, 60, 0.6);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: scale(1.2) rotate(10deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 25px;
    padding: 25px 35px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .registro-container {
    grid-template-columns: 1fr;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bolsa-hero {
    padding: 140px 20px 70px;
    min-height: auto;
  }

  .hero-icon-large {
    width: 90px;
    height: 90px;
  }

  .hero-icon-large svg {
    width: 60px;
    height: 60px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .stat-divider {
    width: 80%;
    height: 2px;
  }

  .info-content h2 {
    font-size: 2rem;
  }

  .benefit1-card {
    padding: 35px;
  }

  .impact-message {
    flex-direction: column;
    text-align: center;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
  }

  .proceso-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bolsa-info-section,
  .bolsa-registro-section,
  .bolsa-proceso-section,
  .bolsa-cta-section {
    padding: 60px 20px;
  }

  .registro-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-content {
    padding: 35px 25px;
  }

  .galeria-item {
    height: 300px;
  }
}

/* ===== HERO ENCUESTAS ===== */
.encuestas-hero {
  min-height: 60vh;
  background:
    linear-gradient(135deg, rgba(0, 125, 105, 0.93), rgba(156, 34, 60, 0.90)),
    url('/images/valores/compromiso.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 70%;
  animation-delay: 10s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.6;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  animation: fadeUp 1s ease;
}

.hero-icon-badge {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.encuestas-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.encuestas-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SECCIÓN DE ENCUESTAS ===== */
.encuestas-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.encuestas-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 50px;
}

/* ===== TARJETAS DE ENCUESTAS ===== */
.encuesta-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: zoomIn 0.6s ease both;
}

.encuesta-card:nth-child(1) { animation-delay: 0.1s; }
.encuesta-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.encuesta-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 125, 105, 0.2);
}

/* Badge Superior */
.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0, 125, 105, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.4);
}

/* Imagen */
.card-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.image-decoration {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.2), rgba(39, 174, 96, 0.3));
  border-radius: 50%;
  z-index: 0;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.encuesta-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 125, 105, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.encuesta-card:hover .image-overlay {
  opacity: 1;
}

.overlay-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

/* Contenido */
.card-content {
  padding: 40px 35px;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.encuesta-card:hover h3 {
  color: #007d69;
}

.card-content p {
  font-size: 1rem;
  color: #5f6b7a;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Features */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 14px;
  border: 1px solid #e8ecef;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
}

.feature-item svg {
  flex-shrink: 0;
  color: #007d69;
  background: rgba(0, 125, 105, 0.1);
  padding: 3px;
  border-radius: 50%;
}

/* Botón */
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
  position: relative;
  overflow: hidden;
}

.card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.card-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 125, 105, 0.5);
}

.card-btn svg {
  transition: transform 0.3s ease;
}

.card-btn:hover svg {
  transform: translate(3px, -3px);
}

/* Glow Effect */
.card-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 125, 105, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.encuesta-card:hover .card-glow {
  opacity: 1;
}

/* Variantes de Color */
.encuesta-card.egresados .card-badge {
  background: rgba(156, 34, 60, 0.95);
  box-shadow: 0 6px 20px rgba(156, 34, 60, 0.4);
}

.encuesta-card.egresados .card-btn {
  background: linear-gradient(135deg, #9C223C, #c72c4a);
  box-shadow: 0 8px 25px rgba(156, 34, 60, 0.3);
}

.encuesta-card.egresados .card-btn:hover {
  box-shadow: 0 12px 40px rgba(156, 34, 60, 0.5);
}

.encuesta-card.egresados:hover h3 {
  color: #9C223C;
}

.encuesta-card.egresados .feature-item svg {
  color: #9C223C;
  background: rgba(156, 34, 60, 0.1);
}

/* ===== INFO BANNER ===== */
.info-banner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 45px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.08));
  border-radius: 24px;
  border-left: 5px solid #007d69;
}

.banner-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 125, 105, 0.3);
}

.banner-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.banner-content p {
  font-size: 1rem;
  color: #5f6b7a;
  line-height: 1.7;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .encuestas-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .encuestas-hero {
    padding: 130px 20px 70px;
    min-height: auto;
  }

  .encuestas-section {
    padding: 70px 20px;
  }

  .card-content {
    padding: 35px 28px;
  }

  .info-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 28px;
  }

  .banner-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-icon-badge {
    width: 80px;
    height: 80px;
  }

  .hero-icon-badge svg {
    width: 48px;
    height: 48px;
  }

  .encuestas-hero h1 {
    font-size: 2rem;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }

  .card-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ===== PLANTEL TIZAYUCA ===== */
.tiza-yuca {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tiza-yuca-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.tiza-yuca-header {
  text-align: center;
  margin-bottom: 60px;
}

.tiza-yuca-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.tiza-yuca-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.tiza-yuca-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.tiza-yuca-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.tiza-yuca-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tiza-yuca-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.tiza-yuca-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Director */
.tiza-yuca-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.tiza-yuca-director .director-image {
  position: relative;
  margin-bottom: 20px;
}

.tiza-yuca-director .director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.tiza-yuca-director .director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.tiza-yuca-director .director-info {
  width: 100%;
}

.tiza-yuca-director .director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tiza-yuca-director .director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.tiza-yuca-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.tiza-yuca-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.tiza-yuca-card .card-content {
  flex: 1;
}

.tiza-yuca-card .card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.tiza-yuca-card .card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.tiza-yuca-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.tiza-yuca-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.tiza-yuca-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.tiza-yuca-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.tiza-yuca-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tiza-yuca-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.tiza-yuca-oferta-header .oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.tiza-yuca-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.tiza-yuca-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.tiza-yuca-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tiza-yuca-accordion .accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.tiza-yuca-accordion .accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.tiza-yuca-accordion .accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.tiza-yuca-accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.tiza-yuca-accordion .accordion-header:hover {
  background: #f0f0f0;
}

.tiza-yuca-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.tiza-yuca-accordion .accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.tiza-yuca-accordion .accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.tiza-yuca-accordion .accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tiza-yuca-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.tiza-yuca-accordion .accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.tiza-yuca-accordion .programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.tiza-yuca-accordion .programa-card:last-child {
  margin-bottom: 0;
}

.tiza-yuca-accordion .programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.tiza-yuca-accordion .programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.tiza-yuca-accordion .programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.tiza-yuca-accordion .programa-info {
  flex: 1;
}

.tiza-yuca-accordion .programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.tiza-yuca-accordion .programa-card:hover .programa-info h4 {
  color: #007d69;
}

.tiza-yuca-accordion .programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.tiza-yuca-accordion .programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.tiza-yuca-accordion .programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.tiza-yuca-accordion .empty-state {
  text-align: center;
  padding: 40px 20px;
}

.tiza-yuca-accordion .empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.tiza-yuca-accordion .empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .tiza-yuca {
    padding: 60px 20px;
  }
  
  .tiza-yuca-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tiza-yuca-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .tiza-yuca-oferta-col {
    padding: 25px 20px;
  }
  
  .tiza-yuca-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .tiza-yuca-accordion .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .tiza-yuca-accordion .programa-arrow {
    align-self: center;
  }
}

/* ===== PLANTEL TEPEJI DEL RÍO ===== */
.tepeji-rio {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tepeji-rio-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.tepeji-rio-header {
  text-align: center;
  margin-bottom: 60px;
}

.tepeji-rio-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.tepeji-rio-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.tepeji-rio-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.tepeji-rio-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.tepeji-rio-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tepeji-rio-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.tepeji-rio-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Director */
.tepeji-rio-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.tepeji-rio-director .director-image {
  position: relative;
  margin-bottom: 20px;
}

.tepeji-rio-director .director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.tepeji-rio-director .director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.tepeji-rio-director .director-info {
  width: 100%;
}

.tepeji-rio-director .director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tepeji-rio-director .director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.tepeji-rio-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.tepeji-rio-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.tepeji-rio-card .card-content {
  flex: 1;
}

.tepeji-rio-card .card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.tepeji-rio-card .card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.tepeji-rio-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.tepeji-rio-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.tepeji-rio-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.tepeji-rio-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.tepeji-rio-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tepeji-rio-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.tepeji-rio-oferta-header .oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.tepeji-rio-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.tepeji-rio-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.tepeji-rio-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tepeji-rio-accordion .accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.tepeji-rio-accordion .accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.tepeji-rio-accordion .accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.tepeji-rio-accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.tepeji-rio-accordion .accordion-header:hover {
  background: #f0f0f0;
}

.tepeji-rio-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.tepeji-rio-accordion .accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.tepeji-rio-accordion .accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.tepeji-rio-accordion .accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tepeji-rio-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.tepeji-rio-accordion .accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.tepeji-rio-accordion .programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.tepeji-rio-accordion .programa-card:last-child {
  margin-bottom: 0;
}

.tepeji-rio-accordion .programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.tepeji-rio-accordion .programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.tepeji-rio-accordion .programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.tepeji-rio-accordion .programa-info {
  flex: 1;
}

.tepeji-rio-accordion .programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.tepeji-rio-accordion .programa-card:hover .programa-info h4 {
  color: #007d69;
}

.tepeji-rio-accordion .programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.tepeji-rio-accordion .programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.tepeji-rio-accordion .programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.tepeji-rio-accordion .empty-state {
  text-align: center;
  padding: 40px 20px;
}

.tepeji-rio-accordion .empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.tepeji-rio-accordion .empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .tepeji-rio {
    padding: 60px 20px;
  }
  
  .tepeji-rio-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tepeji-rio-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .tepeji-rio-oferta-col {
    padding: 25px 20px;
  }
  
  .tepeji-rio-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .tepeji-rio-accordion .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .tepeji-rio-accordion .programa-arrow {
    align-self: center;
  }
}

/* ===== PLANTEL TULANCINGO ===== */
.tulan-cingo {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tulan-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.tulan-header {
  text-align: center;
  margin-bottom: 60px;
}

.tulan-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.tulan-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.tulan-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.tulan-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.tulan-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tulan-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.tulan-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Director */
.tulan-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.director-image {
  position: relative;
  margin-bottom: 20px;
}

.director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.director-info {
  width: 100%;
}

.director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.tulan-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.card-content {
  flex: 1;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.tulan-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.tulan-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.tulan-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.tulan-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.tulan-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tulan-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.tulan-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.tulan-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.tulan-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.accordion-header:hover {
  background: #f0f0f0;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.programa-card:last-child {
  margin-bottom: 0;
}

.programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.programa-info {
  flex: 1;
}

.programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.programa-card:hover .programa-info h4 {
  color: #007d69;
}

.programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .tulan-cingo {
    padding: 60px 20px;
  }
  
  .tulan-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tulan-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .tulan-oferta-col {
    padding: 25px 20px;
  }
  
  .tulan-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .programa-arrow {
    align-self: center;
  }
}

/* ===== PLANTEL VILLA DE TEZONTEPEC ===== */
.vi-lla {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.villa-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.villa-header {
  text-align: center;
  margin-bottom: 60px;
}

.villa-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.villa-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.villa-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.villa-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.villa-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.villa-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.villa-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Directora */
.villa-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.villa-director .director-image {
  position: relative;
  margin-bottom: 20px;
}

.villa-director .director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.villa-director .director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.villa-director .director-info {
  width: 100%;
}

.villa-director .director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.villa-director .director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.villa-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.villa-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.villa-card .card-content {
  flex: 1;
}

.villa-card .card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.villa-card .card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.villa-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.villa-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.villa-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.villa-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.villa-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.villa-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.villa-oferta-header .oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.villa-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.villa-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.villa-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.villa-accordion .accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.villa-accordion .accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.villa-accordion .accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.villa-accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.villa-accordion .accordion-header:hover {
  background: #f0f0f0;
}

.villa-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.villa-accordion .accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.villa-accordion .accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.villa-accordion .accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.villa-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.villa-accordion .accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.villa-accordion .programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.villa-accordion .programa-card:last-child {
  margin-bottom: 0;
}

.villa-accordion .programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.villa-accordion .programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.villa-accordion .programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.villa-accordion .programa-info {
  flex: 1;
}

.villa-accordion .programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.villa-accordion .programa-card:hover .programa-info h4 {
  color: #007d69;
}

.villa-accordion .programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.villa-accordion .programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.villa-accordion .programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.villa-accordion .empty-state {
  text-align: center;
  padding: 40px 20px;
}

.villa-accordion .empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.villa-accordion .empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .vi-lla {
    padding: 60px 20px;
  }
  
  .villa-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .villa-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .villa-oferta-col {
    padding: 25px 20px;
  }
  
  .villa-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .villa-accordion .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .villa-accordion .programa-arrow {
    align-self: center;
  }
}

/* ===== PLANTEL PACHUCA ===== */
.pachu-ca {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pachu-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.pachu-header {
  text-align: center;
  margin-bottom: 60px;
}

.pachu-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.pachu-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.pachu-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.pachu-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.pachu-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pachu-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.pachu-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Director */
.pachu-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.pachu-director .director-image {
  position: relative;
  margin-bottom: 20px;
}

.pachu-director .director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.pachu-director .director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.pachu-director .director-info {
  width: 100%;
}

.pachu-director .director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pachu-director .director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.pachu-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.pachu-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.pachu-card .card-content {
  flex: 1;
}

.pachu-card .card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.pachu-card .card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.pachu-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.pachu-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.pachu-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.pachu-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.pachu-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pachu-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.pachu-oferta-header .oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.pachu-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.pachu-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.pachu-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pachu-accordion .accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.pachu-accordion .accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.pachu-accordion .accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.pachu-accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.pachu-accordion .accordion-header:hover {
  background: #f0f0f0;
}

.pachu-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pachu-accordion .accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.pachu-accordion .accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.pachu-accordion .accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pachu-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.pachu-accordion .accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.pachu-accordion .programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.pachu-accordion .programa-card:last-child {
  margin-bottom: 0;
}

.pachu-accordion .programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.pachu-accordion .programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.pachu-accordion .programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pachu-accordion .programa-info {
  flex: 1;
}

.pachu-accordion .programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.pachu-accordion .programa-card:hover .programa-info h4 {
  color: #007d69;
}

.pachu-accordion .programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.pachu-accordion .programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.pachu-accordion .programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.pachu-accordion .empty-state {
  text-align: center;
  padding: 40px 20px;
}

.pachu-accordion .empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.pachu-accordion .empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .pachu-ca {
    padding: 60px 20px;
  }
  
  .pachu-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pachu-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pachu-oferta-col {
    padding: 25px 20px;
  }
  
  .pachu-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .pachu-accordion .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .pachu-accordion .programa-arrow {
    align-self: center;
  }
}

/* ===== PLANTEL PACHUCA II ===== */
.pachuca-ii {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pachuca-ii-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.pachuca-ii-header {
  text-align: center;
  margin-bottom: 60px;
}

.pachuca-ii-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(0, 125, 105, 0.2);
}

.pachuca-ii-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.pachuca-ii-header p {
  font-size: 1.1rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== WRAPPER ===== */
.pachuca-ii-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== COLUMNA INFORMACIÓN ===== */
.pachuca-ii-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pachuca-ii-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all .3s;
  display: flex;
  gap: 16px;
  align-items: start;
}

.pachuca-ii-card:hover {
  border-color: #007d69;
  box-shadow: 0 10px 30px rgba(0, 125, 105, 0.1);
  transform: translateY(-3px);
}

/* Director */
.pachuca-ii-director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.pachuca-ii-director .director-image {
  position: relative;
  margin-bottom: 20px;
}

.pachuca-ii-director .director-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007d69;
  box-shadow: 0 8px 20px rgba(0, 125, 105, 0.2);
}

.pachuca-ii-director .director-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #007d69, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.pachuca-ii-director .director-info {
  width: 100%;
}

.pachuca-ii-director .director-label {
  display: block;
  font-size: 0.85rem;
  color: #5f6b7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pachuca-ii-director .director-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Iconos de tarjetas */
.pachuca-ii-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.pachuca-ii-card:hover .card-icon {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: scale(1.1);
}

.pachuca-ii-card .card-content {
  flex: 1;
}

.pachuca-ii-card .card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.pachuca-ii-card .card-content p {
  font-size: 0.95rem;
  color: #5f6b7a;
  line-height: 1.6;
  margin: 0;
}

.pachuca-ii-link {
  display: inline-block;
  color: #007d69;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 6px;
  transition: .3s;
  font-size: 0.9rem;
}

.pachuca-ii-link:hover {
  background: #007d69;
  color: #fff;
}

/* Mapa */
.pachuca-ii-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.pachuca-ii-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== COLUMNA OFERTA ===== */
.pachuca-ii-oferta-col {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pachuca-ii-oferta-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.pachuca-ii-oferta-header .oferta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.1), rgba(39, 174, 96, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
}

.pachuca-ii-oferta-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.pachuca-ii-oferta-header p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
  line-height: 1.5;
}

/* ===== ACORDEÓN ===== */
.pachuca-ii-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pachuca-ii-accordion .accordion-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.pachuca-ii-accordion .accordion-item.active {
  border-color: #007d69;
  box-shadow: 0 4px 15px rgba(0, 125, 105, 0.1);
}

.pachuca-ii-accordion .accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-family: inherit;
}

.pachuca-ii-accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(0, 125, 105, 0.05), rgba(39, 174, 96, 0.03));
}

.pachuca-ii-accordion .accordion-header:hover {
  background: #f0f0f0;
}

.pachuca-ii-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pachuca-ii-accordion .accordion-title svg {
  color: #007d69;
  transition: .3s;
}

.pachuca-ii-accordion .accordion-item.active .accordion-title svg {
  transform: rotate(90deg);
}

.pachuca-ii-accordion .accordion-badge {
  padding: 4px 12px;
  background: rgba(0, 125, 105, 0.1);
  color: #007d69;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pachuca-ii-accordion .accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
}

.pachuca-ii-accordion .accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 1000px;
}

/* Tarjetas de programas */
.pachuca-ii-accordion .programa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all .3s;
}

.pachuca-ii-accordion .programa-card:last-child {
  margin-bottom: 0;
}

.pachuca-ii-accordion .programa-card:hover {
  border-color: #007d69;
  box-shadow: 0 6px 20px rgba(0, 125, 105, 0.12);
  transform: translateX(5px);
}

.pachuca-ii-accordion .programa-icon {
  font-size: 2rem;
  flex-shrink: 0;
  transition: .3s;
}

.pachuca-ii-accordion .programa-card:hover .programa-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pachuca-ii-accordion .programa-info {
  flex: 1;
}

.pachuca-ii-accordion .programa-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  transition: .3s;
}

.pachuca-ii-accordion .programa-card:hover .programa-info h4 {
  color: #007d69;
}

.pachuca-ii-accordion .programa-info p {
  font-size: 0.85rem;
  color: #5f6b7a;
  margin: 0;
}

.pachuca-ii-accordion .programa-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 125, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d69;
  flex-shrink: 0;
  transition: .3s;
}

.pachuca-ii-accordion .programa-card:hover .programa-arrow {
  background: linear-gradient(135deg, #007d69, #27ae60);
  color: #fff;
  transform: translateX(4px);
}

/* Estado vacío */
.pachuca-ii-accordion .empty-state {
  text-align: center;
  padding: 40px 20px;
}

.pachuca-ii-accordion .empty-state svg {
  color: #cbd5e0;
  margin-bottom: 15px;
}

.pachuca-ii-accordion .empty-state p {
  font-size: 0.95rem;
  color: #5f6b7a;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .pachuca-ii {
    padding: 60px 20px;
  }
  
  .pachuca-ii-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pachuca-ii-info-col {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pachuca-ii-oferta-col {
    padding: 25px 20px;
  }
  
  .pachuca-ii-oferta-header {
    flex-direction: column;
    text-align: center;
  }
  
  .pachuca-ii-accordion .programa-card {
    flex-direction: column;
    text-align: center;
  }
  
  .pachuca-ii-accordion .programa-arrow {
    align-self: center;
  }
}
