@charset "UTF-8";
/* ===== MAIN STYLES ===== */
/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Importar todas las secciones */
/* Menu Section */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.menu-container {
  max-width: 1280px;
  width: 95%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  margin: 0 auto;
  position: relative;
}

.menu-navigation {
  margin-left: auto;
}

/* Logo del menú */
.menu-logo {
  display: flex;
  align-items: center;
}

.menu-logo a {
  display: block;
  text-decoration: none;
}

.menu-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.menu-logo a:hover img {
  opacity: 0.8;
}

/* Navegación principal */
.menu-navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.nav-item {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.has-dropdown {
  position: relative;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1D2855;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #F26722;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F26722;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Flecha del menú */
.nav-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Submenús */
.dropdown-menu {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0;
  border: none;
  text-align: center;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  top: -30px;
}

.dropdown-item {
  display: block;
  padding: 12px 25px;
  color: #1D2855;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
  text-align: center;
}

.dropdown-item:first-child {
  padding-top: 30px;
  border-top: 1px solid #d8d8d8;
}

.dropdown-item:last-child {
  border-bottom: none;
  padding-bottom: 20px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #F26722;
  padding-left: 25px;
  padding-right: 25px;
}

/* Separadores en submenús */
.dropdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #d8d8d8;
}

/* Botón de menú móvil */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

/* Menú móvil */
.menu-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 336px;
  height: 713px;
  background-color: #ffffff;
  z-index: 1001;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 65px rgba(0, 0, 0, 0.15);
}

.menu-mobile.active {
  left: 0;
}

.menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(29, 40, 85, 0.1);
}

.menu-mobile-logo img {
  height: 50px;
  width: auto;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-close img {
  width: 62px;
  height: 62px;
  filter: brightness(0) invert(0);
}

.menu-mobile-nav {
  flex: 1;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Margen izquierdo para enlaces de segundo nivel */
.mobile-nav-group:has(.mobile-nav-group-title) .mobile-nav-list {
  margin-left: 18px;
}

.mobile-nav-group-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #2D1947;
  margin: 0;
  padding: 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0;
}

/* Estilos para los últimos 4 enlaces (negritas) */
.mobile-nav-link-bold {
  font-size: 18px;
  font-weight: 900;
}

.mobile-nav-link:hover {
  color: #F26722;
}

.menu-mobile-socials {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 18px;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.mobile-social-link:hover {
  transform: scale(1.1);
}

.mobile-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1280px) {
  .menu-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .menu-navigation {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-list {
    gap: 20px;
  }
  .nav-link {
    font-size: 14px;
  }
  /* Ocultar submenús en móvil */
  .dropdown-menu {
    display: none;
  }
  /* Ocultar flechas en móvil */
  .nav-arrow {
    display: none;
  }
  .menu-mobile {
    width: 100%;
    height: 100vh;
  }
}
/* Ocultar redes sociales sin enlace en menú móvil */
.mobile-social-link:nth-child(4),
.mobile-social-link:nth-child(5) {
  /* TikTok */
  display: none;
}

/* Ocultar enlace de Testimonios en ambos menús */
.nav-link[href="#testimonios"],
.mobile-nav-link[href="#testimonios"] {
  display: none;
}

/* Home Section */
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.home-container {
  position: relative;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  height: 80vh;
}

/* Título principal */
.home-title {
  font-family: "Montserrat", sans-serif;
  font-size: 76px;
  line-height: 80px;
  font-weight: 900;
  color: #1D2855;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 30px 0;
  max-width: 800px;
  position: relative;
  margin-top: 20vh;
}

.home-title .highlight {
  background-color: #F26722;
  border-radius: 50px;
  padding: 0 15px;
  font-weight: 900;
  display: inline-block;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Línea decorativa naranja */
.home-decoration-line {
  width: 418px;
  height: 53px;
  background: linear-gradient(90deg, #F26722 0%, #FF7B39 100%);
  border-radius: 90px;
  transform: rotate(-90deg);
  margin: 0 auto 40px auto;
  position: relative;
}

/* Descripción */
.home-description {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1D2855;
  text-align: center;
  line-height: 32px;
  margin: 0 0 40px 0;
  max-width: 668px;
  position: relative;
}

/* Botón principal */
.home-main-button {
  width: 312px;
  height: 92px;
  background-color: #F26722;
  border-radius: 100px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 30px auto;
  position: relative;
  top: 51px;
  left: 159px;
}

.home-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 80px rgba(0, 0, 0, 0.15);
}

/* Botón secundario */
.home-secondary-button {
  width: 173px;
  height: 55px;
  border: 3px solid #F26722;
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto 50px auto;
  text-decoration: none;
  padding: 15px 0 20px;
}

.home-secondary-button span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #1D2855;
  text-transform: uppercase;
}

.home-secondary-button:hover {
  background-color: #F26722;
}

.home-secondary-button:hover span {
  color: #ffffff;
}

/* Imagen principal */
.home-main-image {
  position: relative;
  width: 632px;
  height: 734px;
  margin: 0 auto;
}

.home-main-image img {
  width: 544.88px;
  height: 700.5px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 78px;
}

.image-shadow {
  position: absolute;
  bottom: 76px;
  left: 52px;
  width: 537px;
  height: 17px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  filter: blur(10px);
}

.image-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 632px;
  height: 76px;
  background-color: #ffffff;
}

/* Imagen decorativa izquierda */
.home-decorative-image-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 119.4px;
  height: 139.4px;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  will-change: transform;
}

.home-decorative-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.decorative-frame {
  position: relative;
  width: 114.4px;
  height: 139.4px;
  border-radius: 8px;
  overflow: hidden;
}

.decorative-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decorative-dot {
  position: absolute;
  top: 62px;
  left: 0px;
  width: 13px;
  height: 13px;
  background-color: #F26722;
  border-radius: 50%;
}

/* Imagen decorativa derecha */
.home-decorative-image-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 109px;
  height: 139.95px;
  z-index: 1;
  animation: fadeInDown 1s ease-out 0.3s forwards;
  will-change: transform;
}

.home-decorative-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.home-decorative-image-right .decorative-dot {
  top: 28px;
  left: 96px;
}

/* Elementos decorativos */
.home-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decorative-circle-left {
  position: absolute;
  top: 36px;
  left: 69.4px;
  width: 19.2px;
  height: 19.2px;
  background-color: #F26722;
  border-radius: 50%;
  animation: fadeInScale 1s ease-out 0.7s forwards;
  will-change: transform;
}

.decorative-circle-right {
  position: absolute;
  top: 393.4px;
  right: 38.4px;
  width: 19.2px;
  height: 19.2px;
  background-color: #F26722;
  border-radius: 50%;
  animation: fadeInScale 1s ease-out 0.9s forwards;
  will-change: transform;
}

.decorative-arrow-left {
  position: absolute;
  top: 202px;
  left: 73px;
  width: 14.56px;
  height: 12.3px;
  background-color: #F26722;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.decorative-arrow-right {
  position: absolute;
  top: 394px;
  left: 1000px;
  width: 20.39px;
  height: 17.21px;
  background-color: #F26722;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.decorative-circle-left {
  position: absolute;
  top: 198px;
  left: 69px;
  width: 19.2px;
  height: 19.2px;
  background-color: #F26722;
  border-radius: 50%;
}

.decorative-circle-right {
  position: absolute;
  top: 523px;
  left: 988px;
  width: 19.2px;
  height: 19.2px;
  background-color: #F26722;
  border-radius: 50%;
}

.decorative-circle-center {
  position: absolute;
  top: -18.5px;
  left: 751.5px;
  width: 13px;
  height: 13px;
  background-color: #F26722;
  border-radius: 50%;
  animation: fadeInScale 1s ease-out 1.1s forwards;
  will-change: transform;
}

/* Animaciones CSS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Efecto parallax para las imágenes */
.home-decorative-image-left,
.home-decorative-image-right {
  will-change: transform;
  transition: transform 0.3s ease;
}

.home-decorative-image-left:hover,
.home-decorative-image-right:hover {
  transform: scale(1.05);
}

/* Efecto parallax sutil para elementos decorativos */
.home-decorative-image-left,
.home-decorative-image-right,
.decorative-circle-left,
.decorative-circle-right,
.decorative-circle-center {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Aplicar parallax sutil al hacer scroll */
.home-decorative-image-left.parallax {
  transform: translateY(calc(var(--scroll-y) * 0.02px));
}

.home-decorative-image-right.parallax {
  transform: translateY(calc(var(--scroll-y) * -0.015px));
}

.decorative-circle-left.parallax {
  transform: translateY(calc(var(--scroll-y) * 0.025px));
}

.decorative-circle-right.parallax {
  transform: translateY(calc(var(--scroll-y) * -0.02px));
}

.decorative-circle-center.parallax {
  transform: translateY(calc(var(--scroll-y) * 0.018px));
}

/* Mejorar transiciones para parallax */
.home-decorative-image-left,
.home-decorative-image-right {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.decorative-circle-left,
.decorative-circle-right,
.decorative-circle-center {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Media queries para responsive de la sección home */
@media (max-width: 1200px) {
  .home-container {
    max-width: 1000px;
  }
  .home-title {
    font-size: 60px;
  }
  .home-main-image {
    width: 550px;
    height: 650px;
  }
  .home-main-image img {
    width: 480px;
    height: 620px;
  }
  .home-decorative-image-left {
    left: 10px;
    width: 100px;
    height: 120px;
  }
  .home-decorative-image-right {
    right: 10px;
    width: 90px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .home {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 40px 0;
  }
  .home-container {
    padding: 0 20px;
  }
  .home-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .home-decoration-line {
    width: 300px;
    height: 40px;
    margin-bottom: 30px;
  }
  .home-description {
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 30px;
  }
  .home-main-button {
    width: 310px;
    height: 80px;
    margin-bottom: 25px;
  }
  .home-secondary-button {
    width: 180px;
    height: 50px;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  .home-main-image {
    width: 400px;
    height: 500px;
  }
  .home-main-image img {
    width: 350px;
    height: 450px;
  }
  .home-decorative-image-left,
  .home-decorative-image-right {
    display: none;
  }
  .home-decorative-elements {
    display: none;
  }
}
@media (max-width: 480px) {
  .home {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 30px 0;
  }
  .home-container {
    padding: 0 20px;
  }
  .home-title {
    font-size: 32px;
  }
  .home-decoration-line {
    width: 250px;
    height: 35px;
  }
  .home-description {
    font-size: 10px;
    line-height: 16px;
  }
  .home-main-button {
    width: 280px;
    height: 70px;
  }
  .home-secondary-button {
    width: 160px;
    height: 45px;
    padding: 0 10px;
  }
  .home-main-image {
    width: 300px;
    height: 400px;
  }
  .home-main-image img {
    width: 260px;
    height: 350px;
  }
  .home-decorative-image-left,
  .home-decorative-image-right {
    display: none;
  }
}
/* Botón flotante de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.whatsapp-expanded {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #52F26F 0%, #2AD24D 100%);
  border-radius: 76px;
  padding: 0 25px 0 15px;
  height: 58px;
  width: 164.48px;
  box-shadow: 0 4px 20px rgba(82, 210, 70, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-expanded:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(82, 210, 70, 0.4);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-left: 4px;
  flex-shrink: 0;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-text {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive para el botón de WhatsApp */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-expanded {
    padding: 0 15px;
    height: 50px;
  }
  .whatsapp-text {
    font-size: 12px;
  }
}
/* Efecto fade in hacia arriba para secciones (excluyendo home) */
section:not(.home) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

/* Optimizar transiciones para mejor rendimiento */
section:not(.home) {
  will-change: opacity, transform;
}

/* Efecto parallax sutil para elementos decorativos */
/* Estilos globales para responsive */
@media (max-width: 768px) {
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .home-container,
  .nosotros-container,
  .certificaciones-container,
  .banner-fotos-container,
  .programas-academicos-container,
  .doble-certificacion-container,
  .proceso-verificacion-container,
  .proceso-homologacion-container,
  .diplomas-container,
  .seccion-computadora-container,
  .sistema-certificacion-digital-container,
  .beneficios-container,
  .slider-container,
  .testimonios-container,
  .faq-container,
  .alianzas-container,
  .contacto-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* Nosotros Section */
.nosotros {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 0;
}

.nosotros-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* Ícono de diploma */
.nosotros-icon {
  position: absolute;
  top: 0;
  right: 50px;
  width: 36.02px;
  height: 50.02px;
}

.diploma-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Línea decorativa naranja */
.nosotros-decoration-line {
  position: absolute;
  top: 391.75px;
  left: 496px;
  width: 348px;
  height: 13px;
  background-color: #F26722;
  transform: rotate(-90deg);
}

/* Texto principal */
.nosotros-main-text {
  width: 100%;
  max-width: 832px;
  text-align: center;
}

.nosotros-main-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #1D2855;
  line-height: 45px;
  margin: 80px 0 40px 0;
  text-align: center;
  width: 100%;
  height: auto;
  display: block;
}

.nosotros-main-text p:last-child {
  margin-bottom: 0;
}

.nosotros-main-text p .hightlight {
  position: relative;
  font-weight: 900;
}

.nosotros-main-text p .hightlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #F26722;
  z-index: 1;
}

.nosotros-main-text p .bold {
  font-weight: 900;
}

/* Línea divisoria */
.nosotros-divider {
  width: 50px;
  height: 1px;
  background-color: #1D2855;
}

/* Texto secundario */
.nosotros-secondary-text {
  width: 100%;
  max-width: 794px;
  text-align: center;
}

.nosotros-secondary-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  color: #1D2855;
  margin: 0 0 40px 0;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.nosotros-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 36px;
  font-weight: 900;
  color: #1D2855;
  text-align: center;
  margin: 0;
}

/* Estadísticas de programas */
.nosotros-stats {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-direction: row;
}

.stat-item {
  position: relative;
  text-align: left;
  padding: 20px 0;
  min-height: 200px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item:nth-child(2),
.stat-item:nth-child(3) {
  max-width: 270px;
}

.stat-number-bg {
  position: absolute;
  top: -20px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 150px;
  font-weight: 900;
  color: rgba(29, 40, 85, 0.15);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.stat-content {
  position: relative;
  z-index: 1;
  margin-left: 136px;
}

/* Reducir el margen para los elementos con número "3" */
.stat-item:nth-child(2) .stat-content,
.stat-item:nth-child(3) .stat-content {
  margin-left: 80px;
}

.stat-item:nth-child(2) .stat-number-bg,
.stat-item:nth-child(3) .stat-number-bg {
  margin-left: 40px;
}

.stat-description {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 1.4;
  text-align: left;
  max-width: 195px;
  margin: 0 0 50px 0;
}

.stat-description strong {
  font-weight: 900;
}

/* Responsive para la sección Nosotros */
@media (max-width: 1200px) {
  .nosotros-container {
    padding: 60px 20px 30px;
    gap: 60px;
  }
  .nosotros-main-text p {
    font-size: 28px;
    line-height: 38px;
    margin: 60px 0 30px 0;
  }
  .nosotros-secondary-text p {
    font-size: 18px;
    line-height: 32px;
    margin: 0 0 30px 0;
  }
  .nosotros-subtitle {
    font-size: 20px;
    margin: 0 0 40px 0;
  }
  .nosotros-stats {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }
  .stat-item {
    max-width: 280px;
  }
  .stat-number-bg {
    font-size: 120px;
  }
  .stat-description {
    font-size: 12px;
    max-width: 160px;
    margin: 0 0 40px 0;
  }
}
@media (max-width: 768px) {
  .nosotros-container {
    padding: 40px 20px;
    gap: 40px;
  }
  .nosotros-main-text p {
    font-size: 22px;
    line-height: 27px;
    margin: 40px 0 20px 0;
  }
  .nosotros-secondary-text p {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 20px 0;
  }
  .nosotros-subtitle {
    font-size: 15px;
    margin: 0 0 30px 0;
  }
  .nosotros-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    flex-direction: column;
  }
  .stat-item {
    max-width: 330px;
    min-height: auto;
  }
  .stat-number-bg {
    font-size: 155px;
    top: 8px;
  }
  .stat-item:nth-child(2) .stat-number-bg,
  .stat-item:nth-child(3) .stat-number-bg {
    margin-left: 0px;
  }
  .stat-description {
    font-size: 13px;
    line-height: 20px;
    max-width: 192px;
    margin: 0 0 35px 0;
  }
  .stat-content {
    margin-top: 24px;
  }
}
/* Flecha de navegación */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-container {
  width: 8.64px;
  height: 8.64px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}

.scroll-arrow:hover {
  transform: translateX(-50%) translateY(5px);
}

.scroll-arrow:hover .arrow-icon {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  40% {
    transform: rotate(-45deg) translateY(-3px);
  }
  60% {
    transform: rotate(-45deg) translateY(-1px);
  }
}
/* Responsive para la flecha */
@media (max-width: 768px) {
  .scroll-arrow {
    bottom: 20px;
  }
}
/* Certificaciones Section */
.certificaciones {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 100px 0 60px 0;
}

.certificaciones-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.certificaciones-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  text-align: left;
  margin: 0;
  line-height: 22px;
  align-self: flex-start;
  width: 100%;
}

.certificaciones-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.cert-col {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 277px;
}

.cert-num {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 25px;
  line-height: 22px;
}

.cert-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F26722;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1D2855;
  line-height: 22px;
  margin: 0 0 30px 0;
  text-align: left;
}

.cert-texto p:last-child {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

.cert-texto em {
  font-style: italic;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .certificaciones-container {
    gap: 40px;
  }
  .certificaciones-grid {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .cert-col {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .certificaciones {
    padding: 60px 0 40px 0;
  }
  .certificaciones-titulo {
    font-size: 18px;
    line-height: 20px;
  }
  .certificaciones-container {
    gap: 40px;
  }
  .cert-col {
    padding: 0;
  }
  .cert-num {
    font-size: 24px;
    line-height: 20px;
  }
  .cert-texto p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .certificaciones {
    padding: 40px 0 20px 0;
  }
  .certificaciones-titulo {
    font-size: 16px;
    line-height: 18px;
  }
  .certificaciones-container {
    gap: 30px;
  }
  .cert-col {
    padding: 0;
  }
  .cert-num {
    font-size: 20px;
    line-height: 18px;
  }
  .cert-titulo {
    font-size: 13px;
  }
  .cert-texto p {
    font-size: 12px;
    line-height: 18px;
  }
}
/* Banner de Fotos Section */
.banner-fotos {
  position: relative;
  width: 100%;
  height: 642px;
  background: #fff;
  padding-top: 120px;
}

.fotos-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Estilos base para todas las fotos */
.foto-item {
  position: relative;
  max-width: 289px;
  width: 100%;
  height: 376px;
  border-radius: 35px;
  overflow: hidden;
  background: #D9D9D9;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.foto-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.foto-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
}

.foto-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.foto-item[data-parallax] {
  will-change: transform;
}

.foto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 213px;
}

/* Posicionamiento específico de cada foto */
.foto-01 {
  position: absolute;
  top: 0;
  left: 10%;
  width: 16%;
}

.foto-02 {
  position: absolute;
  top: 66px;
  left: 27%;
  width: 16%;
}

.foto-03 {
  position: absolute;
  top: 0;
  left: 44%;
  width: 16%;
}

.foto-04 {
  position: absolute;
  top: 66px;
  left: 61%;
  width: 16%;
}

.foto-05 {
  position: absolute;
  top: 0;
  left: 78%;
  width: 16%;
}

/* Icono especial en la foto 04 */
/* Responsive para banner de fotos */
@media (max-width: 1600px) {
  .fotos-container {
    width: 100%;
    max-width: 1545px;
    padding: 0 20px;
  }
  .foto-01 {
    left: 5%;
  }
  .foto-02 {
    left: 22%;
  }
  .foto-03 {
    left: 39%;
  }
  .foto-04 {
    left: 56%;
  }
  .foto-05 {
    left: 73%;
  }
}
@media (max-width: 1200px) {
  .foto-item {
    width: 220px;
    height: 286px;
  }
  .foto-overlay {
    width: 100%;
    height: 162px;
  }
  .foto-01 {
    left: 5%;
  }
  .foto-02 {
    left: 25%;
    top: 50px;
  }
  .foto-03 {
    left: 45%;
  }
  .foto-04 {
    left: 65%;
    top: 50px;
  }
  .foto-05 {
    left: 85%;
  }
}
@media (max-width: 768px) {
  .banner-fotos {
    height: 300px;
    padding-top: 0;
  }
  .fotos-container {
    padding: 0 20px;
    gap: 20px;
    justify-content: center;
  }
  .foto-item {
    width: 142px;
    height: 184px;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }
  .foto-overlay {
    width: 100%;
    height: 118px;
  }
  /* Ocultar fotos 01 y 05 en responsive */
  .foto-01,
  .foto-05 {
    display: none;
  }
  /* Centrar las 3 fotos centrales */
  .foto-02 {
    order: 1;
  }
  .foto-03 {
    order: 2;
  }
  .foto-04 {
    order: 3;
  }
}
@media (max-width: 480px) {
  .banner-fotos {
    height: 300px;
  }
  .fotos-container {
    gap: 15px;
    padding: 0 15px;
  }
  .foto-item {
    width: 120px;
    height: 156px;
  }
  .foto-overlay {
    width: 100%;
    height: 88px;
  }
  /* Mantener solo las 3 fotos centrales */
  .foto-01,
  .foto-05 {
    display: none;
  }
}
/* Misión y Visión Section */
.mision-vision {
  position: relative;
  width: 100%;
  min-height: 565px;
  background: #fff;
  padding: 150px 0;
}

.mision-vision-container {
  position: relative;
  max-width: 1124px;
  margin: 0 auto;
  display: flex;
  gap: 180px;
  padding: 0 20px;
  align-items: center;
}

/* Lado izquierdo - Imagen */
.mision-vision-imagen {
  flex: 1;
  max-width: 369px;
  position: relative;
}

.mision-vision-imagen .imagen-container {
  position: relative;
  width: 100%;
  height: 565px;
}

.mision-vision-imagen .imagen-fondo {
  position: absolute;
  top: -132px;
  left: -60px;
  width: 468px;
  height: 746px;
  z-index: 1;
}

.mision-vision-imagen .imagen-principal {
  width: 369px;
  height: 565px;
  border-radius: 184.5px;
  overflow: hidden;
  background: #D9D9D9;
  z-index: 2;
  margin-top: 0;
}

.mision-vision-imagen .imagen-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icono de diploma */
.mision-vision-imagen .diploma-icono {
  position: absolute;
  top: 38px;
  left: 2px;
  width: 64px;
  height: 72px;
  z-index: 4;
}

.mision-vision-imagen .icono-bg {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
}

.mision-vision-imagen .icono-vector {
  position: absolute;
  top: 0;
  left: 12px;
  width: 43px;
  height: 60px;
  background: #1D2855;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43 60'%3E%3Cpath d='M8 0h27c4.4 0 8 3.6 8 8v44c0 4.4-3.6 8-8 8H8c-4.4 0-8-3.6-8-8V8c0-4.4 3.6-8 8-8z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.mision-vision-imagen .icono-detalle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D2855;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 72'%3E%3Cpath d='M12.8 17.8c0 9.3 7.5 16.8 16.8 16.8s16.8-7.5 16.8-16.8S38.9 1 29.6 1s-16.8 7.5-16.8 16.8z'/%3E%3Cpath d='M8 26.4c0-4.4 3.6-8 8-8h27c4.4 0 8 3.6 8 8v26c0 4.4-3.6 8-8 8H16c-4.4 0-8-3.6-8-8v-26z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* Lado derecho - Información */
.mision-vision-info {
  flex: 1;
  max-width: 448px;
}

.mision-texto {
  margin-bottom: 40px;
}

.mision-texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 28px;
  margin: 0;
  text-align: justify;
}

.mision-texto h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  line-height: 28px;
  margin: 0 0 15px 0;
  text-align: left;
}

.mision-divider {
  width: 31px;
  height: 1px;
  background: #1D2855;
  margin: 40px 0;
}

.vision-texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 28px;
  margin: 0;
  text-align: justify;
}

.vision-texto h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  line-height: 28px;
  margin: 0 0 15px 0;
  text-align: left;
}

/* Responsive para Misión y Visión */
@media (max-width: 1024px) {
  .mision-vision-container {
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
  }
  .mision-vision-imagen {
    max-width: 300px;
    display: flex;
    justify-content: center;
  }
  .mision-vision-imagen .imagen-container {
    height: 460px;
  }
  .mision-vision-imagen .imagen-principal {
    width: 300px;
    height: 460px;
    border-radius: 150px;
  }
  .mision-vision-imagen .imagen-fondo {
    width: 380px;
    height: 606px;
    top: -107px;
    left: -49px;
  }
  .mision-vision-info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .mision-vision {
    padding: 60px 0;
  }
  .mision-vision-container {
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .mision-vision-imagen {
    max-width: 250px;
    display: flex;
    justify-content: center;
    order: 2;
  }
  .mision-vision-info {
    order: 1;
    max-width: 100%;
  }
  .mision-vision-imagen .imagen-container {
    height: 383px;
  }
  .mision-vision-imagen .imagen-principal {
    width: 250px;
    height: 383px;
    border-radius: 125px;
  }
  .mision-vision-imagen .imagen-fondo {
    width: 317px;
    height: 505px;
    top: -89px;
    left: -41px;
  }
  .mision-texto p,
  .vision-texto p {
    font-size: 13px;
    line-height: 28px;
  }
  .mision-texto h3,
  .vision-texto h3 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 12px 0;
  }
  .mision-divider {
    margin: 30px 0;
  }
}
@media (max-width: 480px) {
  .mision-vision-container {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .mision-vision-imagen {
    max-width: 200px;
    display: flex;
    justify-content: center;
    order: 2;
  }
  .mision-vision-info {
    order: 1;
    max-width: 100%;
  }
  .mision-vision-imagen .imagen-container {
    height: 306px;
  }
  .mision-vision-imagen .imagen-principal {
    width: 200px;
    height: 306px;
    border-radius: 100px;
  }
  .mision-vision-imagen .imagen-fondo {
    width: 254px;
    height: 404px;
    top: -71px;
    left: -33px;
  }
  .mision-vision-imagen .diploma-icono {
    width: 50px;
    height: 56px;
    top: 35px;
    left: 2px;
  }
  .mision-vision-imagen .icono-bg {
    width: 27px;
    height: 27px;
    top: 14px;
    left: 12px;
  }
  .mision-vision-imagen .icono-vector {
    width: 34px;
    height: 47px;
    left: 8px;
  }
}
/* Programas Académicos Section */
.programas-academicos {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  padding: 100px 0;
}

.programas-container {
  position: relative;
  max-width: 1186px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  padding: 0 20px;
}

/* Lado izquierdo - Información */
.programas-info {
  flex: 1;
  max-width: 525px;
}

.programa-item {
  margin-bottom: 60px;
}

.programa-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin: 0 0 20px 0;
  line-height: 22px;
}

.programa-titulo-sub {
  color: #F26722;
  display: block;
}

.programa-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #1D2855;
  line-height: 18px;
  margin: 0 0 25px 0;
  max-width: 395px;
}

.programa-modalidad {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 0.7;
  margin: 0 0 20px 0;
  max-width: 422px;
}

.programa-modalidad strong {
  font-weight: 900;
  display: block;
}

.programa-modalidad .en-linea {
  font-weight: 900;
  display: block;
}

.programa-lista {
  display: block;
  max-width: 422px;
  margin-top: 20px;
}

.lista-guias {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D2855;
  line-height: 1.6;
  white-space: pre-line;
  min-width: 44px;
}

.lista-carreras {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
  display: block;
}

.lista-carreras ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-carreras li {
  display: block;
  margin-bottom: 0;
}

.lista-carreras li:last-child {
  margin-bottom: 0;
}

.programa-divider {
  width: 395px;
  height: 1px;
  background: #1D2855;
  margin: 70px 0;
}

/* Botón de certificaciones */
.certificaciones-btn {
  margin-top: 60px;
}

.certificaciones-btn .btn-enviar {
  width: auto;
  text-transform: uppercase;
  padding: 0 20px 5px;
}

.btn-borde {
  display: inline-block;
  border: 3px solid #F26722;
  border-radius: 90px;
  padding: 15px 30px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-borde:hover {
  background: #F26722;
}

.btn-borde span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1D2855;
  text-align: center;
  display: block;
}

.btn-borde:hover span {
  color: #fff;
}

/* Flecha de navegación entre secciones */
.flecha-navegacion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
  padding: 0 0 50px;
}

.flecha-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #1D2855;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flecha-btn:hover {
  background-color: rgba(29, 40, 85, 0.1);
  transform: translateY(3px);
}

.flecha-btn svg {
  width: 24px;
  height: 24px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .flecha-navegacion {
    margin: 0 20px;
    padding: 80px 0 120px 0;
  }
  .flecha-btn {
    padding: 12px;
  }
  .flecha-btn svg {
    width: 20px;
    height: 20px;
  }
}
/* Lado derecho - Imagen */
.programas-imagen {
  flex: 1;
  max-width: 470px;
  position: sticky;
  top: 20px;
  /* Distancia desde arriba cuando se pega - reducida para evitar cortes */
  height: fit-content;
  align-self: flex-start;
}

.imagen-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-fondo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 435px;
  height: 578px;
  border-radius: 600px;
  filter: blur(50px);
  z-index: 1;
}

.imagen-principal {
  position: relative;
  width: 435px;
  height: 609px;
  border-radius: 600px;
  z-index: 2;
  margin-top: -31px;
  will-change: transform;
  transform: translateY(0);
}

.imagen-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imagen-secundaria {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 242px;
  overflow: hidden;
  z-index: 3;
  border-radius: 20px;
}

.imagen-secundaria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icono de diploma - Posicionado en esquina superior derecha de la imagen principal */
.diploma-icono {
  position: absolute;
  top: 77px;
  right: 20px;
  width: 64px;
  height: 72px;
  z-index: 5;
}

.diploma-icono img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive para programas académicos */
@media (max-width: 1024px) {
  .programas-container {
    flex-direction: column;
    gap: 60px;
  }
  .programas-info {
    max-width: 100%;
    order: 2;
  }
  .programas-imagen {
    max-width: 100%;
    height: auto;
    position: static;
    /* Desactivar sticky en móvil */
    top: auto;
    order: 1;
  }
  .imagen-container {
    height: auto;
    min-height: 500px;
  }
  .imagen-fondo,
  .imagen-principal {
    width: 100%;
    max-width: 435px;
    height: auto;
  }
  .imagen-secundaria {
    width: 150px;
    height: 150px;
  }
  .diploma-icono {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .programas-academicos {
    padding: 40px 0;
  }
  .programas-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  .programas-info {
    max-width: 100%;
  }
  .programa-item {
    margin-bottom: 40px;
  }
  .programa-titulo {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .programa-titulo-sub {
    display: block;
  }
  .programa-descripcion {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 900;
  }
  .programa-modalidad {
    font-size: 14px;
    margin: 15px 0;
    line-height: 1;
  }
  .programa-modalidad strong {
    font-weight: 900;
  }
  .programa-modalidad .en-linea {
    font-weight: 900;
  }
  .programa-lista {
    margin-top: 15px;
  }
  .lista-carreras {
    font-size: 14px;
  }
  .lista-carreras li {
    margin-bottom: 0;
  }
  /* Estilos específicos para las listas que NO son de licenciaturas en móvil */
  .programa-item:nth-child(3) .lista-carreras li,
  .programa-item:nth-child(5) .lista-carreras li,
  .programa-item:nth-child(7) .lista-carreras li {
    margin-bottom: 15px;
  }
  .programa-item:nth-child(3) .lista-carreras li:last-child,
  .programa-item:nth-child(5) .lista-carreras li:last-child,
  .programa-item:nth-child(7) .lista-carreras li:last-child {
    margin-bottom: 0;
  }
  .lista-carreras strong {
    font-weight: 900;
  }
  .programa-divider {
    width: 100%;
    margin: 30px 0;
  }
  .certificaciones-btn {
    margin-top: 40px;
    justify-content: center;
  }
  .certificaciones-btn .btn-enviar {
    min-width: 280px;
  }
  .certificaciones-btn .btn-texto {
    font-size: 12px;
  }
  .btn-borde {
    padding: 12px 25px;
  }
  .btn-borde span {
    font-size: 16px;
  }
  .programas-imagen {
    max-width: 100%;
    height: auto;
  }
  .imagen-container {
    height: auto;
    min-height: 400px;
  }
  .imagen-fondo,
  .imagen-principal {
    width: 100%;
    max-width: 300px;
  }
  .imagen-secundaria {
    width: 100px;
    height: 100px;
  }
  .diploma-icono {
    right: 10px;
    top: 20px;
    width: 40px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .programas-academicos {
    padding: 30px 0;
  }
  .programas-container {
    gap: 30px;
    padding: 0 15px;
  }
  .programa-titulo {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 12px;
  }
  .programa-titulo-sub {
    display: block;
  }
  .programa-descripcion {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 900;
  }
  .programa-modalidad {
    font-size: 13px;
    margin: 12px 0;
    line-height: 1;
  }
  .programa-modalidad strong {
    font-weight: 900;
  }
  .programa-modalidad .en-linea {
    font-weight: 900;
  }
  .programa-lista {
    margin-top: 12px;
  }
  .lista-carreras {
    font-size: 13px;
  }
  .lista-carreras li {
    margin-bottom: 5px;
  }
  .programa-divider {
    margin: 25px 0;
  }
  .certificaciones-btn {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
  }
  .certificaciones-btn .btn-enviar {
    width: auto;
    min-width: 300px;
  }
  .btn-borde {
    padding: 10px 20px;
  }
  .btn-borde span {
    font-size: 14px;
  }
  .programas-imagen {
    height: auto;
    align-self: center;
  }
  .imagen-container {
    height: auto;
    min-height: 350px;
  }
  .imagen-fondo,
  .imagen-principal {
    max-width: 250px;
  }
  .imagen-secundaria {
    width: 100px;
    height: 100px;
  }
  .diploma-icono {
    width: 40px;
    height: 45px;
    right: 5px;
    top: 20px;
  }
}
/* Doble Certificación Section */
.doble-certificacion {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 200px 0 80px;
}

.doble-certificacion-container {
  position: relative;
  width: 1113px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header de la sección */
.doble-certificacion-header {
  text-align: center;
  margin-bottom: 80px;
}

.doble-certificacion-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 40px;
  line-height: 32px;
  text-transform: uppercase;
}

.doble-certificacion-titulo-sub {
  color: #FB7432;
}

.doble-certificacion-destacado {
  font-weight: 900;
}

.unidice-destacado {
  color: #FB7432;
}

.doble-certificacion-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1D2855;
  line-height: 35px;
  max-width: 607px;
  margin: 0 auto;
  margin-bottom: 120px;
}

/* Diagrama de certificaciones */
.doble-certificacion-diagrama {
  position: relative;
  width: 100%;
  height: 733px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Círculos de certificación */
.certificacion-circulo {
  position: absolute;
  width: 733px;
  height: 733px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificacion-izquierda {
  left: 0;
}

.certificacion-derecha {
  right: 0;
}

/* Fondos de los círculos */
.circulo-fondo {
  display: none;
  /* Eliminar fondo naranja */
}

.circulo-borde {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #1D2855;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.circulo-borde.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.circulo-borde.creciendo {
  transform: translateY(0) scale(1.15);
}

/* Texto de los círculos */
.circulo-texto {
  width: 158px;
  text-align: center;
  z-index: 2;
}

.certificacion-izquierda .circulo-texto {
  transform: translateX(-90%);
}

.certificacion-derecha .circulo-texto {
  transform: translateX(90%);
}

.circulo-texto p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #1D2855;
  line-height: 17px;
  margin: 0;
}

/* Círculo central */
.certificacion-central {
  position: absolute;
  width: 592px;
  height: 592px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.circulo-fondo-central {
  display: none;
  /* Eliminar fondo */
}

.circulo-borde-central {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2.2px solid #1D2855;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.circulo-borde-central.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.circulo-borde-central.creciendo {
  transform: translateY(0) scale(1.15);
}

.circulo-texto-central {
  position: absolute;
  width: 295px;
  text-align: center;
  z-index: 2;
}

.circulo-texto-central p {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #1D2855;
  line-height: 33px;
  margin: 0;
}

/* Icono de diploma central */
.diploma-icono-central {
  position: absolute;
  width: 32px;
  height: 45px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  z-index: 4;
}

.diploma-icono-central img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1200px) {
  .doble-certificacion-container {
    width: 90%;
    max-width: 1000px;
  }
  .certificacion-circulo {
    width: 600px;
    height: 600px;
  }
  .certificacion-central {
    width: 480px;
    height: 480px;
  }
  .doble-certificacion-titulo {
    font-size: 40px;
  }
  .doble-certificacion-descripcion {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .doble-certificacion {
    padding: 60px 0;
    min-height: auto;
  }
  .doble-certificacion-container {
    width: 95%;
  }
  .doble-certificacion-header {
    margin-bottom: 60px;
  }
  .doble-certificacion-titulo {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .doble-certificacion-descripcion {
    font-size: 14px;
    max-width: 100%;
  }
  .doble-certificacion-diagrama {
    height: 600px;
    flex-direction: column;
    justify-content: space-between;
  }
  .certificacion-circulo {
    width: 400px;
    height: 400px;
    position: relative;
    left: auto !important;
    right: auto !important;
  }
  .certificacion-izquierda {
    top: 5%;
    left: unset;
    transform: none;
  }
  .certificacion-derecha {
    bottom: 5%;
    left: unset;
    transform: none;
  }
  .certificacion-central {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .circulo-texto {
    width: 134px;
  }
  .certificacion-izquierda .circulo-texto {
    transform: none;
  }
  .certificacion-derecha .circulo-texto {
    transform: none;
  }
  .circulo-texto p {
    font-size: 14px;
  }
  .circulo-texto-central {
    width: 220px;
  }
  .circulo-texto-central p {
    font-size: 24px;
    line-height: 24px;
  }
  .diploma-icono-central {
    display: none;
  }
}
@media (max-width: 480px) {
  .doble-certificacion {
    padding: 40px 0;
  }
  .doble-certificacion-titulo {
    font-size: 28px;
  }
  .doble-certificacion-descripcion {
    font-size: 13px;
  }
  .doble-certificacion-diagrama {
    height: 500px;
    flex-direction: column;
    justify-content: space-between;
  }
  .certificacion-circulo {
    width: 300px;
    height: 300px;
    position: relative;
    left: auto !important;
    right: auto !important;
  }
  .certificacion-izquierda {
    top: 8%;
    left: unset;
    transform: none;
  }
  .certificacion-derecha {
    bottom: 8%;
    left: unset;
    transform: none;
  }
  .certificacion-central {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .circulo-texto {
    width: 134px;
  }
  .certificacion-izquierda .circulo-texto {
    transform: none;
    margin-bottom: 100px;
  }
  .certificacion-derecha .circulo-texto {
    transform: none;
    margin-top: 100px;
  }
  .circulo-texto-central {
    width: 229px;
  }
  .circulo-texto-central p {
    font-size: 24px;
    line-height: 24px;
  }
  .diploma-icono-central {
    display: none;
  }
}
/* Proceso de Verificación Section */
.proceso-verificacion {
  position: relative;
  width: 100%;
  min-height: 628px;
  background-color: #ffffff;
  padding: 80px 0;
}

.proceso-verificacion-container {
  position: relative;
  width: 1118px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Título principal */
.proceso-verificacion-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  text-align: left;
  line-height: 20px;
  margin-bottom: 60px;
  max-width: 415px;
  text-transform: uppercase;
}

.proceso-verificacion-titulo .destacado {
  color: #F26722;
}

/* Contenedor de pasos */
.pasos-container {
  display: flex;
  gap: 80px;
  width: 100%;
  justify-content: center;
}

/* Paso individual */
.paso-item {
  flex: 1;
  max-width: 652px;
  display: flex;
  flex-direction: column;
}

/* Header del paso */
.paso-header {
  margin-bottom: 20px;
}

.paso-badge {
  display: inline-block;
  margin-bottom: 15px;
}

.paso-badge span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  display: block;
  line-height: 20px;
  color: #1D2855;
}

/* Contenido del paso */
.paso-contenido {
  flex: 1;
}

.paso-subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  line-height: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  max-width: 256px;
}

.paso-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #1D2855;
  line-height: 17px;
  margin-bottom: 30px;
  max-width: 275px;
}

/* Lista de requisitos */
.paso-lista {
  display: flex;
  gap: 15px;
}

.lista-guias {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
  min-width: 44px;
  flex-shrink: 0;
}

.lista-requisitos {
  flex: 1;
}

.lista-requisitos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-requisitos li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  list-style: none;
}

.lista-requisitos li::marker {
  display: none;
}

.lista-requisitos li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #1D2855;
  font-weight: bold;
}

.lista-requisitos li:last-child {
  margin-bottom: 0;
}

/* Responsive para Proceso de Verificación */
@media (max-width: 1200px) {
  .proceso-verificacion-container {
    width: 95%;
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .proceso-verificacion {
    padding: 60px 0;
    min-height: auto;
  }
  .proceso-verificacion-container {
    width: 95%;
  }
  .proceso-verificacion-titulo {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 18px;
  }
  .pasos-container {
    flex-direction: column;
    gap: 40px;
  }
  .paso-item {
    max-width: 100%;
  }
  .paso-badge {
    padding: 0;
    text-align: left;
  }
  .paso-badge span {
    font-size: 18px;
    line-height: 18px;
    text-align: left;
  }
  .paso-subtitulo,
  .paso-descripcion {
    font-size: 18px;
    line-height: 18px;
  }
  .lista-guias,
  .lista-requisitos p {
    font-size: 14px;
    line-height: 20px;
  }
  .paso-lista {
    gap: 10px;
  }
  .lista-guias {
    min-width: 35px;
  }
}
@media (max-width: 480px) {
  .proceso-verificacion {
    padding: 40px 0;
  }
  .proceso-verificacion-titulo {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 16px;
  }
  .pasos-container {
    gap: 30px;
  }
  .paso-badge {
    padding: 0;
    text-align: left;
  }
  .paso-badge span {
    font-size: 16px;
    line-height: 16px;
    text-align: left;
  }
  .paso-subtitulo,
  .paso-descripcion {
    font-size: 16px;
    line-height: 16px;
  }
  .lista-guias,
  .lista-requisitos p {
    font-size: 13px;
    line-height: 18px;
  }
  .paso-lista {
    gap: 10px;
  }
  .lista-guias {
    min-width: 35px;
  }
}
/* Proceso y Requisitos para la Homologación Section */
.proceso-homologacion {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: #ffffff;
  padding: 80px 0 0;
}

.proceso-homologacion-container {
  width: 1147px;
  margin: 0 auto;
  position: relative;
}

.proceso-homologacion-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  text-align: left;
  margin-bottom: 30px;
  line-height: 20px;
  text-transform: uppercase;
  max-width: 324px;
}

.proceso-homologacion-titulo .destacado {
  color: #F26722;
}

.requisitos-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.requisitos-lista {
  flex: 1;
  max-width: 500px;
}

.requisitos-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 20px;
}

.requisitos-content {
  display: flex;
  gap: 20px;
}

.requisitos-content .lista-requisitos {
  flex: 1;
}

.requisitos-content .lista-requisitos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requisitos-content .lista-requisitos li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  list-style: none;
}

.requisitos-content .lista-requisitos li::marker {
  display: none;
}

.requisitos-content .lista-requisitos li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #1D2855;
  font-weight: bold;
}

.requisitos-content .lista-requisitos li:last-child {
  margin-bottom: 0;
}

.requisitos-divider {
  width: 1px;
  height: 200px;
  background-color: #000000;
  margin: 0 20px;
}

.tiempos-entrega {
  flex: 1;
  max-width: 500px;
  align-self: flex-end;
}

.tiempos-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 20px;
  line-height: 22px;
}

.tiempos-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
}

.tiempos-content p strong {
  font-weight: 900;
}

/* Flecha hacia abajo */
.homologacion-arrow-down {
  position: absolute;
  bottom: -60px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.homologacion-arrow-down:hover {
  transform: translateY(-2px);
}

.homologacion-arrow-down .flecha-navegacion {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.homologacion-arrow-down:hover .flecha-navegacion {
  transform: rotate(90deg) scale(1.1);
}

.flecha-navegacion.flecha-homologacion {
  margin: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1147px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0;
}

/* Responsive para Proceso de Homologación */
@media (max-width: 1200px) {
  .proceso-homologacion-container {
    width: 95%;
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .proceso-homologacion {
    padding: 60px 0;
    min-height: auto;
  }
  .proceso-homologacion-container {
    width: 95%;
  }
  .proceso-homologacion-titulo {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 18px;
  }
  .requisitos-container {
    flex-direction: column;
    gap: 20px;
  }
  .requisitos-lista,
  .tiempos-entrega {
    max-width: 100%;
  }
  .requisitos-titulo,
  .tiempos-titulo {
    font-size: 18px;
    line-height: 18px;
  }
  .requisitos-content .lista-requisitos li,
  .tiempos-content p {
    font-size: 14px;
    line-height: 20px;
  }
  .requisitos-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }
  .homologacion-arrow-down {
    bottom: -40px;
    width: 35px;
    height: 35px;
  }
  .homologacion-arrow-down .arrow-down-icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .proceso-homologacion {
    padding: 40px 0;
  }
  .proceso-homologacion-titulo {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 16px;
  }
  .requisitos-container {
    gap: 20px;
  }
  .requisitos-titulo,
  .tiempos-titulo {
    font-size: 16px;
    line-height: 16px;
  }
  .requisitos-content .lista-requisitos li,
  .tiempos-content p {
    font-size: 13px;
    line-height: 18px;
  }
  .homologacion-arrow-down {
    bottom: -30px;
    width: 30px;
    height: 30px;
  }
  .homologacion-arrow-down .arrow-down-icon {
    width: 16px;
    height: 16px;
  }
}
/* Sección Diplomas */
.diplomas {
  position: relative;
  width: 100%;
  min-height: 290px;
  background-color: #ffffff;
  padding: 0 0 80px;
  overflow: hidden;
}

.diplomas-container {
  position: relative;
  width: 1104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Símbolo igual central */
.diplomas-simbolo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.diplomas-simbolo span {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #1D2855;
  line-height: 59px;
}

/* Diploma individual */
.diploma-item {
  position: relative;
  width: 465px;
  height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diploma-izquierdo {
  align-self: flex-start;
}

.diploma-derecho {
  align-self: flex-end;
}

/* Imagen del diploma */
.diploma-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive para Diplomas */
@media (max-width: 1200px) {
  .diplomas-container {
    width: 95%;
    max-width: 1000px;
  }
  .diploma-item {
    width: 400px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  .diplomas {
    padding: 60px 0;
    min-height: auto;
  }
  .diplomas-container {
    width: 95%;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .diploma-item {
    width: 100%;
    max-width: 465px;
    height: auto;
    aspect-ratio: 465/410;
  }
  .diplomas-simbolo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px 0;
    order: 2;
  }
  .diplomas-simbolo span {
    font-size: 36px;
    line-height: 44px;
  }
  .diploma-izquierdo {
    order: 1;
    align-self: center;
  }
  .diploma-derecho {
    order: 3;
    align-self: center;
  }
}
@media (max-width: 480px) {
  .diplomas {
    padding: 40px 0;
  }
  .diplomas-container {
    gap: 30px;
  }
  .diploma-item {
    max-width: 300px;
  }
  .diplomas-simbolo span {
    font-size: 28px;
    line-height: 34px;
  }
}
/* Sección Computadora */
.seccion-computadora {
  position: relative;
  width: 100%;
  min-height: 575px;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.computadora-container {
  position: relative;
  width: 1280px;
  height: 575px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.computadora-imagen {
  position: relative;
  width: 983px;
  height: 532px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.computadora-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.computadora-logos {
  position: absolute;
  top: -35px;
  right: 61px;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
}

.logo-absolute {
  position: relative;
  width: 35px;
  height: 43px;
  margin-bottom: 15px;
}

.logo-certificado {
  position: absolute;
  width: 35px;
  height: 43px;
  top: 30px;
  right: 35px;
}

.logo-certificado img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-vector {
  position: absolute;
  top: 20px;
  left: 7px;
  width: 14px;
  height: 15px;
  background-color: #1D2855;
  border-radius: 2px;
}

.logo-dot {
  position: absolute;
  top: 40px;
  left: 6px;
  width: 5px;
  height: 5px;
  background-color: #F26722;
  border-radius: 50%;
}

.logo-udc {
  position: relative;
  width: 106px;
  height: 106px;
  animation: rotate 10s linear infinite;
}

/* Keyframes para la rotación infinita */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-udc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.udc-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 42px;
  background-color: #1D2855;
  border-radius: 2px;
}

.udc-dots {
  position: absolute;
  top: 8px;
  left: 6px;
  width: 6px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.udc-dot-1,
.udc-dot-2,
.udc-dot-3 {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.udc-dot-1 {
  margin-bottom: 2px;
}

.udc-dot-2 {
  margin-bottom: 2px;
}

/* Responsive para sección computadora */
@media (max-width: 1280px) {
  .computadora-container {
    width: 100%;
    padding: 0 20px;
  }
  .computadora-imagen {
    width: 100%;
    max-width: 983px;
    height: auto;
    aspect-ratio: 983/532;
  }
  .computadora-logos {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .seccion-computadora {
    padding: 40px 0;
    min-height: 400px;
  }
  .computadora-container {
    height: auto;
    flex-direction: column;
  }
  .computadora-imagen {
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .computadora-logos {
    display: none;
  }
}
@media (max-width: 480px) {
  .seccion-computadora {
    padding: 30px 0;
    min-height: 300px;
  }
  .computadora-imagen {
    max-width: 400px;
  }
  .computadora-logos {
    display: none;
  }
}
/* Sección Slider */
.slider {
  position: relative;
  width: 100%;
  min-height: 635px;
  background-color: #ffffff;
  padding: 80px 0 160px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider-main {
  position: relative;
  width: 1088px;
  height: 525px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  background-color: #D9D9D9;
}

.slider-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.slider-icon {
  position: absolute;
  top: 0;
  right: 82px;
  width: 60px;
  height: 60px;
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.slider-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-indicator {
  position: absolute;
  top: -4px;
  right: 50px;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-circle {
  width: 10px;
  height: 10px;
  background-color: #F26722;
  border-radius: 50%;
}

.slider-controls {
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1088px;
  margin: auto;
}

.slider-btn {
  width: 75px;
  height: 75px;
  border: 2px solid #1D2855;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: #1D2855;
}

.slider-btn:hover .btn-arrow path {
  stroke: #ffffff !important;
}

.btn-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow {
  width: 16px;
  height: 12px;
  color: #1D2855;
  stroke-width: 2;
  transition: color 0.3s ease;
}

.slider-btn:hover .btn-arrow {
  color: #ffffff;
}

.slider-dots {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border: 2px solid #1D2855;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #F26722;
  border-color: #F26722;
}

/* Responsive para Slider */
@media (max-width: 1280px) {
  .slider-container {
    width: 100%;
    padding: 0 20px;
  }
  .slider-main {
    width: 100%;
    max-width: 1088px;
    height: auto;
    aspect-ratio: 1088/525;
  }
}
@media (max-width: 768px) {
  .slider {
    padding: 40px 0;
  }
  .slider-main {
    border-radius: 25px;
  }
  .slider-image img {
    border-radius: 25px;
  }
  .slider-controls {
    padding: 0 25px;
    bottom: -75px;
  }
  .slider-btn {
    width: 60px;
    height: 60px;
  }
  .btn-arrow {
    width: 14px;
    height: 10px;
  }
  .slider-dots {
    bottom: -47px;
    gap: 12px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
}
/* Sección Testimonios */
.testimonios {
  position: relative;
  width: 100%;
  min-height: 595px;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  display: none;
}

.testimonios-container {
  position: relative;
  width: 1495px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.testimonios-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 22px;
  text-transform: uppercase;
  line-height: 22px;
}

.testimonios-subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  max-width: 170px;
  color: #1D2855;
  margin-bottom: 40px;
  line-height: 22px;
}

.testimonios-grid {
  display: flex;
  gap: 23px;
  margin-bottom: 50px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  /* Permitir que el grid se extienda naturalmente para el loop infinito */
  flex-wrap: nowrap;
  /* Asegurar que el slider funcione correctamente */
  position: relative;
  transform: translateX(0);
}

.testimonios-grid::-webkit-scrollbar {
  display: none;
}

.testimonio-item {
  flex: 0 0 275px;
  height: 340px;
}

.testimonio-card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 10px 75px rgba(0, 0, 0, 0.15);
}

.testimonio-imagen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonio-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.testimonio-play {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.play-btn {
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.924px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.play-btn:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
}

.play-triangle {
  width: 24px;
  height: 20px;
  margin-left: 2px;
}

.testimonios-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.testimonios-btn {
  width: 75px;
  height: 75px;
  border: 2px solid #1D2855;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonios-btn:hover {
  background-color: #1D2855;
}

.testimonios-btn:hover .btn-arrow {
  stroke: #ffffff;
}

/* Responsive para Testimonios */
@media (max-width: 1495px) {
  .testimonios-container {
    width: 100%;
    padding: 0 20px;
  }
  .testimonios-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .testimonios {
    padding: 40px 0;
  }
  .testimonios-subtitulo {
    margin-bottom: 60px;
  }
  .testimonios-grid {
    gap: 15px;
  }
  .testimonio-item {
    flex: 0 0 250px;
    height: 300px;
  }
  .testimonio-card {
    border-radius: 25px;
  }
  .testimonio-imagen img {
    border-radius: 25px;
  }
  .play-btn {
    width: 50px;
    height: 50px;
  }
  .play-triangle {
    width: 20px;
    height: 16px;
  }
  .testimonios-controls {
    padding: 0 10px;
  }
  .testimonios-btn {
    width: 60px;
    height: 60px;
  }
}
/* Sección FAQ */
.faq {
  position: relative;
  width: 100%;
  min-height: 896px;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.faq-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 60px;
  text-transform: uppercase;
  line-height: 22px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-pregunta {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1D2855;
  margin: 0;
  flex: 1;
  text-align: left;
  line-height: 22px;
}

.faq-toggle {
  width: 19px;
  height: 19px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon {
  width: 19px;
  height: 19px;
  stroke: #1D2855;
  stroke-width: 4;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-contenido {
  max-height: 200px;
  padding: 0 0 20px 0;
  opacity: 1;
  visibility: visible;
}

.faq-contenido p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 28px;
  margin: 0;
  margin-bottom: 30px;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background-color: #1D2855;
  margin: 0;
}

/* Responsive para FAQ */
@media (max-width: 1280px) {
  /* Los estilos del contenedor ya están definidos arriba */
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
  .faq-titulo {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 20px;
  }
  .faq-pregunta {
    font-size: 16px;
    line-height: 20px;
  }
  .faq-contenido p {
    font-size: 14px;
    line-height: 24px;
  }
  .faq-toggle {
    width: 25px;
    height: 25px;
  }
  .faq-icon {
    width: 15px;
    height: 15px;
  }
}
/* Sección Beneficios */
.beneficios {
  position: relative;
  width: 100%;
  min-height: 916px;
  background-color: #ffffff;
  padding: 0 0 80px;
  overflow: hidden;
}

.beneficios-container {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.beneficios-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 43px;
  text-transform: uppercase;
  line-height: 22px;
}

.beneficios-subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1D2855;
  margin-bottom: 50px;
  line-height: 22px;
}

.beneficios-arrow {
  position: absolute;
  top: 0;
  left: 7px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.beneficios-arrow:hover {
  transform: translateY(-2px);
}

.beneficios-arrow .arrow-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficios-arrow .arrow-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.beneficios-arrow:hover .arrow-icon {
  transform: scale(1.1);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.beneficio-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  padding-left: 140px;
}

/* Padding específico para beneficios 02, 04 y 06 */
.beneficio-02,
.beneficio-04,
.beneficio-06 {
  padding-left: 164px;
}

/* Margen entre filas */
.beneficio-01,
.beneficio-02,
.beneficio-03 {
  margin-bottom: 120px;
}

.beneficio-item:hover {
  transform: none;
  box-shadow: none;
}

.beneficio-numero {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 20px;
  margin: 0;
  min-width: 60px;
  text-align: left;
}

/* Números grandes de fondo */
.beneficio-item::before {
  content: attr(data-numero);
  position: absolute;
  top: 18px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 150px;
  font-weight: 900;
  color: #1D2855;
  line-height: 36px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/* Max-width específicos para cada beneficio */
.beneficio-01 .beneficio-descripcion {
  max-width: 203px;
}

.beneficio-02 .beneficio-descripcion {
  max-width: 217px;
}

.beneficio-03 .beneficio-descripcion {
  max-width: 232px;
}

.beneficio-04 .beneficio-descripcion {
  max-width: 200px;
}

.beneficio-05 .beneficio-descripcion {
  max-width: 201px;
}

.beneficio-06 .beneficio-descripcion {
  max-width: 244px;
}

.beneficio-contenido {
  flex: 1;
  margin: 0;
}

.beneficio-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1D2855;
  margin-bottom: 15px;
  line-height: 1.3;
}

.beneficio-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 20px;
  margin: 0;
}

.beneficio-descripcion strong {
  font-weight: 900;
}

.beneficio-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: auto;
}

.beneficio-icono img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Iconos específicos */
.icono-certificado {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-certificado .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-certificado .icono-detalle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #F26722;
  border-radius: 50%;
}

.icono-qr {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-qr .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-qr .icono-puntos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #F26722;
  border-radius: 2px;
}

.icono-descarga {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-descarga .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-descarga .icono-barra {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 6px;
  background-color: #F26722;
  border-radius: 2px;
}

.icono-mundo {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-mundo .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-mundo .icono-circulo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background-color: #F26722;
  border-radius: 50%;
  opacity: 0.6;
}

.icono-evento {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-evento .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-evento .icono-barras {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 13px;
  display: flex;
  gap: 10px;
}

.icono-evento .icono-barras::before,
.icono-evento .icono-barras::after {
  content: "";
  width: 6px;
  height: 13px;
  background-color: #F26722;
  opacity: 0.6;
}

.icono-empleo {
  position: relative;
  width: 100%;
  height: 100%;
}

.icono-empleo .icono-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D2855;
  border-radius: 4px;
}

.icono-empleo .icono-documento {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 79px;
  background-color: #ffffff;
  border-radius: 4px;
}

/* Responsive para Beneficios */
@media (max-width: 1200px) {
  .beneficios-container {
    width: 100%;
    max-width: 1000px;
  }
  .beneficios-grid {
    gap: 30px;
  }
  .beneficio-item {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .beneficios {
    padding: 60px 0;
    min-height: auto;
  }
  .beneficios-container {
    width: 95%;
  }
  .beneficios-titulo,
  .beneficios-subtitulo {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }
  .beneficio-item {
    padding: 20px 0 !important;
    padding-left: 0 !important;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .beneficio-item::before {
    display: none;
  }
  .beneficio-numero {
    min-width: auto;
    margin-bottom: 0;
    order: 1;
    position: relative;
    z-index: 1;
  }
  .beneficio-icono {
    width: 60px;
    height: 60px;
    margin: 0;
    order: 2;
    flex-shrink: 0;
  }
  .beneficio-contenido {
    order: 3;
    flex: 1;
  }
  .beneficios-arrow {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 30px;
  }
}
@media (max-width: 480px) {
  .beneficios {
    padding: 40px 0;
  }
  .beneficios-container {
    width: 90%;
  }
  .beneficios-titulo,
  .beneficios-subtitulo {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .beneficios-grid {
    gap: 50px;
    margin-top: 30px;
  }
  .beneficio-item {
    padding: 15px 0 !important;
    padding-left: 0 !important;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
  }
  .beneficio-item::before {
    display: none;
  }
  .beneficio-numero {
    font-size: 20px;
    margin-bottom: 0;
    order: 1;
    position: relative;
    z-index: 1;
  }
  .beneficio-icono {
    width: 50px;
    height: 50px;
    order: 2;
    flex-shrink: 0;
  }
  .beneficio-contenido {
    order: 3;
    flex: 1;
  }
  .beneficio-descripcion {
    font-size: 14px;
    line-height: 1.5;
  }
  .beneficios-arrow {
    width: 35px;
    height: 35px;
  }
  .beneficios-arrow .arrow-icon {
    width: 18px;
    height: 18px;
  }
}
/* Estilos responsive */
@media (max-width: 768px) {
  .beneficios-container {
    width: 100%;
    padding: 0 20px;
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .beneficio-item {
    padding-left: 0;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
  }
  .beneficio-02,
  .beneficio-04,
  .beneficio-06 {
    padding-left: 0;
  }
  /* Ocultar números grandes en responsive */
  .beneficio-item::before {
    display: none;
  }
  .beneficio-icono {
    min-width: 60px;
    align-self: flex-start;
  }
  .beneficio-contenido {
    width: 100%;
  }
  .beneficio-descripcion {
    max-width: none !important;
  }
}
/* Sistema de Certificación Digital */
.sistema-certificacion-digital {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.certificacion-digital-container {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.certificacion-digital-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 43px;
  text-transform: uppercase;
  line-height: 22px;
}

.certificacion-digital-subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1D2855;
  margin-bottom: 50px;
  line-height: 22px;
}

.certificados-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.certificado-item {
  position: relative;
  flex: 1;
  max-width: 350px;
  padding: 30px 20px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.certificado-item:hover {
  transform: none;
  box-shadow: none;
}

.certificado-numero {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 20px;
  line-height: 22px;
}

.certificado-contenido {
  margin-bottom: 20px;
}

.certificado-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 30px;
  line-height: 20px;
}

.certificado-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1D2855;
  line-height: 20px;
  margin: 0;
}

/* Max-width específicos para cada certificado */
.certificado-01 .certificado-descripcion,
.certificado-02 .certificado-descripcion {
  max-width: 246px;
}

.certificado-03 .certificado-descripcion {
  max-width: 296px;
}

/* Estilos para el tiempo de entrega */
.certificado-descripcion .tiempo-entrega {
  margin-top: 20px;
  display: block;
}

.certificado-descripcion .tiempo-entrega .dias {
  text-decoration: underline;
  font-weight: 600;
}

.certificado-circulo {
  display: none;
}

/* Responsive para Sistema de Certificación Digital */
@media (max-width: 1200px) {
  .certificacion-digital-container {
    width: 100%;
    max-width: 1000px;
  }
  .certificados-container {
    gap: 30px;
  }
  .certificado-item {
    max-width: 300px;
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  .sistema-certificacion-digital {
    padding: 60px 0;
    min-height: auto;
  }
  .certificacion-digital-container {
    width: 95%;
  }
  .certificacion-digital-titulo,
  .certificacion-digital-subtitulo {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .certificados-container {
    flex-direction: column;
    gap: 40px;
  }
  .certificado-item {
    max-width: 100%;
    padding: 30px 0;
  }
  .certificado-circulo {
    top: -30px;
    width: 60px;
    height: 60px;
    filter: blur(40px);
  }
}
@media (max-width: 480px) {
  .sistema-certificacion-digital {
    padding: 40px 0;
  }
  .certificacion-digital-container {
    width: 90%;
  }
  .certificacion-digital-titulo,
  .certificacion-digital-subtitulo {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .certificados-container {
    gap: 30px;
  }
  .certificado-item {
    padding: 25px 0;
  }
  .certificado-numero {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .certificado-titulo {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .certificado-descripcion {
    font-size: 14px;
    line-height: 1.5;
  }
  .certificado-circulo {
    top: -25px;
    width: 50px;
    height: 50px;
    filter: blur(30px);
  }
}
/* Sección Nuevos Aliados */
.nuevos-aliados {
  position: relative;
  width: 100%;
  min-height: 327px;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.aliados-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aliados-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 50px;
  text-transform: uppercase;
  line-height: 22px;
}

.aliados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.aliado-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.aliado-item:hover {
  transform: scale(1.05);
}

.aliado-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.logo-iem,
.logo-emar,
.logo-neuroliderazgo,
.logo-fgu,
.logo-cel,
.logo-agente-crack,
.logo-abraham-solis,
.logo-alphabiotista {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.iem-vector,
.emar-vector,
.neuroliderazgo-vector,
.fgu-vector,
.cel-vector,
.agente-crack-vector,
.abraham-solis-vector,
.alphabiotista-vector {
  width: 100%;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Estilos para las imágenes de alianzas */
.iem-vector,
.emar-vector,
.neuroliderazgo-vector,
.fgu-vector,
.cel-vector,
.agente-crack-vector,
.abraham-solis-vector,
.alphabiotista-vector {
  max-height: 122px;
  width: auto;
  height: auto;
  margin: 15px;
  display: inline-block;
  vertical-align: middle;
}

.iem-texto,
.emar-texto,
.neuroliderazgo-texto,
.fgu-texto,
.cel-texto,
.agente-crack-texto,
.abraham-solis-texto,
.alphabiotista-texto {
  display: none;
  /* Ocultar títulos de aliados */
}

/* Contenedor de alianzas para layout fluido */
.aliados-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.aliado-item {
  flex: 0 0 auto;
  text-align: center;
}

/* Responsive para Nuevos Aliados */
@media (max-width: 1280px) {
  /* Los estilos del contenedor ya están definidos arriba */
  .aliados-grid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .nuevos-aliados {
    padding: 40px 0;
  }
  .aliados-titulo {
    font-size: 18px;
  }
  /* Ajustar layout de alianzas para tablets */
  .iem-vector,
  .emar-vector,
  .neuroliderazgo-vector,
  .fgu-vector,
  .cel-vector,
  .agente-crack-vector,
  .abraham-solis-vector,
  .alphabiotista-vector {
    margin: 12px;
    width: 100%;
    height: auto;
  }
  .aliados-grid {
    gap: 12px;
  }
  .aliado-logo {
    width: 150px;
    height: auto;
  }
  .iem-texto,
  .emar-texto,
  .neuroliderazgo-texto,
  .fgu-texto,
  .cel-texto,
  .agente-crack-texto,
  .abraham-solis-texto,
  .alphabiotista-texto {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .aliados-grid {
    gap: 10px;
  }
  .aliado-logo {
    height: auto;
    width: 120px;
  }
  /* Ajustar layout de alianzas para móviles */
  .iem-vector,
  .emar-vector,
  .neuroliderazgo-vector,
  .fgu-vector,
  .cel-vector,
  .agente-crack-vector,
  .abraham-solis-vector,
  .alphabiotista-vector {
    margin: 8px;
  }
  .aliado-item {
    padding: 10px;
  }
}
/* ===== CONTACTO SECTION ===== */
.contacto {
  padding: 80px 0;
  background-color: #ffffff;
}

.contacto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

/* Lado izquierdo - Formulario */
.contacto-formulario {
  flex: 1;
  max-width: 670px;
}

.contacto-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #1D2855;
  margin-bottom: 17px;
  line-height: 1;
}

.contacto-descripcion {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #1D2855;
  margin-bottom: 40px;
  max-width: 474px;
}

/* Formulario */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-campo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.campo-label {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #1D2855;
  line-height: 1.4;
}

.campo-input {
  position: relative;
}

.input-texto,
.input-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D2855;
  padding: 10px 0;
  resize: none;
}

.input-textarea {
  min-height: 80px;
  line-height: 1.4;
}

.input-linea {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1D2855;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
  min-height: 16px;
}

/* Botón Enviar */
.form-boton {
  margin-top: 20px;
}

.btn-enviar {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding-bottom: 5px;
  height: 55px;
  transition: all 0.3s ease;
}

.btn-enviar:hover .btn-borde {
  background: #F26722;
}

.btn-enviar:hover .btn-texto {
  color: #ffffff;
}

.btn-borde {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #F26722;
  border-radius: 90px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.btn-texto {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #1D2855;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

/* Lado derecho - Imagen */
.contacto-imagen {
  flex: 1;
  max-width: 500px;
  height: 633px;
  display: flex;
  align-items: stretch;
}

.imagen-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
}

.imagen-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
    gap: 40px;
  }
  .contacto-formulario {
    max-width: 100%;
  }
  .contacto-imagen {
    max-width: 100%;
    height: 400px;
  }
  .contacto-titulo {
    font-size: 20px;
  }
  .contacto-descripcion {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contacto {
    padding: 60px 0;
  }
  .contacto-container {
    padding: 0 15px;
    gap: 30px;
  }
  .contacto-imagen {
    height: 300px;
  }
  .btn-enviar {
    width: 150px;
    height: 50px;
  }
  .btn-texto {
    font-size: 14px;
  }
}
/* ===== FOOTER SECTION ===== */
.footer {
  background-color: #1D2855;
  padding: 28px 0;
  min-height: 208px;
  display: flex;
  align-items: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin: 0 50px;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 50px 0 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Lado izquierdo - Info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 232px;
  position: relative;
}

/* Escudo UniDice */
.footer-escudo {
  display: flex;
  align-items: center;
}

.footer-escudo img {
  width: 52px;
  height: 63px;
  object-fit: contain;
}

/* Texto de derechos reservados */
.footer-derechos {
  margin-top: 10px;
}

.footer-derechos p {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: #ffffff;
  line-height: 14px;
  margin: 0;
}

/* Lado derecho - Redes sociales */
.footer-redes {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
}

.redes-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.red-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.red-social:hover {
  transform: scale(1.1);
}

.red-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.red-social:hover img {
  opacity: 0.8;
}

/* Ocultar redes sociales sin enlace */
.red-social.youtube,
.red-social.tiktok {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 20px 20px 180px 20px;
    min-height: auto;
    margin: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }
  .footer-info {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 0;
  }
  .footer-escudo {
    margin-right: 0;
  }
  .footer-derechos {
    position: absolute;
    left: 0;
    top: 80px;
    text-align: left;
    width: 230px;
  }
  .footer-derechos p {
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
  }
  .footer-redes {
    margin-top: 10px;
    align-self: flex-start;
    position: static;
  }
  .redes-container {
    gap: 20px;
  }
  .red-social {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 15px 20px 180px 20px;
    min-height: auto;
    margin: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 0 15px;
  }
  .footer-info {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 0;
  }
  .footer-escudo {
    margin-right: 0;
  }
  .footer-derechos {
    position: absolute;
    left: 0;
    top: 80px;
    width: 230px;
    text-align: left;
  }
  .footer-derechos p {
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
  }
  .footer-redes {
    margin-top: 10px;
    align-self: flex-start;
    position: static;
  }
  .redes-container {
    gap: 15px;
  }
  .red-social {
    width: 20px;
    height: 20px;
  }
}
/* Estilos adicionales que estaban al final del archivo original */
.icono-certificado img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nuevos estilos para iconos SVG */
.icono-qr,
.icono-descarga,
.icono-mundo,
.icono-evento,
.icono-empleo {
  width: 50px;
  height: 50px;
  display: block;
}

.lista-carreras {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1D2855;
  line-height: 22px;
  display: block;
}

.lista-carreras ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-carreras li {
  display: block;
  margin-bottom: 0;
}

/* Estilos específicos para las listas que NO son de licenciaturas */
.programa-item:nth-child(3) .lista-carreras li,
.programa-item:nth-child(5) .lista-carreras li,
.programa-item:nth-child(7) .lista-carreras li {
  margin-bottom: 0;
}

/* Estilos para elementos strong en las listas */
.lista-carreras strong {
  font-weight: 900;
}

/* Espaciado específico para elementos con "Duración" usando margin-top */
.programa-item:nth-child(3) .lista-carreras li:nth-child(2),
.programa-item:nth-child(3) .lista-carreras li:nth-child(4),
.programa-item:nth-child(5) .lista-carreras li:nth-child(4),
.programa-item:nth-child(7) .lista-carreras li:nth-child(1) {
  margin-top: 20px;
}

/*# sourceMappingURL=styles_figma.css.map */
