body {
      overflow-x: hidden;
    }.cecytem-logo {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: bold;
    color: rgb(247, 247, 247);
    position: relative;
    display: inline-block;
    filter: drop-shadow(0px 0px 10px rgb(187, 211, 206));
  }
  .cecytem-logo .icon {
    position: absolute;
    top: -12px;
    left: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cecytem-logo .circle {
    width: 7px;
    height: 7px;
    background-color: rgb(247, 247, 247);
    border-radius: 50%;
    margin-bottom: 1px;
  }

  .cecytem-logo .triangle {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid rgb(247, 247, 247);
  }
  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.transition-custom {
  transition: all 0.3s ease-in-out;
}

.transition-custom:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  text-shadow: 1px 1px 4px #000;
}
 .menu-toggle-btn {
    position: relative;
    background: #2acac5;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(42, 202, 197, 0.5);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }

  .menu-toggle-btn::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgb(67, 160, 71) 0%, transparent 0%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: pulseGlow 2s infinite;
  }

  .menu-toggle-btn:hover::before {
    opacity: 1;
  }

  .menu-toggle-btn span,
  .menu-toggle-btn i {
    position: relative;
    z-index: 1;
  }

  .menu-toggle-btn:hover {
    box-shadow: 0 0 25px rgba(42, 202, 197, 0.8);
    transform: translateY(-2px);
  }

  @keyframes pulseGlow {
    0% {
      transform: scale(1);
      opacity: 0.4;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 0.4;
    }
  }
   @keyframes bounceIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      60% {
        transform: scale(1.1);
        opacity: 1;
      }
      100% {
        transform: scale(1);
      }
    }
  .fondo-flotante {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/imagen9.jpg') repeat;
    opacity: 0.15;
    animation: mover 80s linear infinite;
    z-index: 0;
  }

  @keyframes mover {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
  }
  .animated-image {
    animation: fadeInZoom 1s ease forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .animated-image:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  @keyframes fadeInZoom {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  .descargar-btn {
    background-color: #81C784;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
  }

  .descargar-btn:hover {
    background-color: #A5D6A7;
    color: #fff;
  }

  .section-heading {
    font-weight: bold;
    font-size: 2.5rem;
  }
/*
  .card-carrera {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .card-carrera:hover {
    transform: translateY(-5px);
  }

  .card-carrera h4 {
    color: #117864;
  }

  .card-carrera p {
    color: #148f77;
  }
  .img-circle-shadow {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .img-circle-shadow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  } */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
    text-decoration: none;
  }

  .whatsapp-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
  }

  .whatsapp-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .whatsapp-icon-wrapper:hover .whatsapp-icon {
    transform: scale(1.05);
  }

  .tooltip-text {
    position: absolute;
    bottom: 100%;
    right: -130%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #ffffff;
    color: #006400;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 16px;
  }

  .whatsapp-icon-wrapper:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-14px);
  }

  @media (max-width: 768px) {
    .tooltip-text {
      display: none;
    }
  }
   .timeline::before {
      content: none !important;
    }
    .social-icons-container {
      position: relative;
      animation: floatIn 1.5s ease-in-out;
    }
    
    .circle-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: white;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: bounceIn 0.6s ease;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
      cursor: pointer;
    }
    
    .circle-icon:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }
    
    .circle-icon.facebook {
      background-color: #1877f2;

    }
    .circle-icon.whatsapp {
      background-color: #25d366;
    }
    
    .circle-icon.youtube {
      background-color: #ff0000;
    }
    
    .circle-icon.maps {
      background-color: #FFEB3B;
    }
    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes bounceIn {
      0% {
        transform: scale(0.3);
        opacity: 0;
      }
      50% {
        transform: scale(1.05);
        opacity: 1;
      }
      70% {
        transform: scale(0.9);
      }
      100% {
        transform: scale(1);
      }
    }
      
    #particles-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, #e0f2f1 0%, #ffffff 100%);
      overflow: hidden;
      z-index: 0;
    }
    
    .page-section > .container {
      z-index: 2;
      position: relative;
    }
    /* duseño enlaces de servicios*/
    .enlace-lista {
      color: rgb(0, 0, 0);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }
  
    .enlace-lista:hover {
      color: #2E7D32;
      text-decoration: underline;
      text-shadow: 0 1px 1px rgba(46, 125, 50, 0.2);
    }

    .jaguar-fijo {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 80px;
      height: auto;
      z-index: 1000;
      pointer-events: none;
  }
  /* ----- CARRERAS ----- */
.card-carrera{
  border: none;
  border-radius: 1.5rem;
  background: #ffffff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-carrera:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,.12);
}
.img-carrera{
  width: 260px;
  height: 260px;
  object-fit: cover;
  border: 6px solid #e6f0e8;
  transition: transform .3s;
  object-fit: contain;  
  background-color: #275a3b;
}
.img-fluid{
  width: 80px;
  height: 218px;
  
}
.card-carrera:hover .img-carrera{
  transform: scale(1.05);
}
/* Botón descarga coherente con verde Cecytem */
.btn-outline-success{
  --bs-btn-color:#006341;
  --bs-btn-border-color:#006341;
  --bs-btn-hover-bg:#006341;
  --bs-btn-hover-border-color:#006341;
  --bs-btn-hover-color:#fff;
  border-radius: 50px;
  padding:.6rem 1.2rem;
  font-weight:600;
}
/* Acordeón */
.accordion-button{
  background:#f0fdf4;
  color:#006341;
  font-weight:600;
}
.accordion-button:not(.collapsed){
  color:#006341;
  background:#d9f5e1;
}
.floating-accordion {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 600px;
  padding: 1rem;
  display: none;
}
.floating-accordion.show {
  display: block !important;
}
/* Animación de entrada */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Video e imagen extra */
.ratio video{width:100%;height:100%;object-fit:cover;}

/* Estilos para la sección de Modalidades Educativas */
#modalidades {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#modalidades .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

#modalidades .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 99, 65, 0.3);
}

#modalidades .card-body {
  padding: 2rem 2rem;
}

#modalidades h3 {
  font-weight: 700;
  letter-spacing: 1px;
}

#modalidades p {
  font-size: 1rem;
  color: #ffffff; /* bootstrap text-muted */
}

#modalidades ul {
  margin-top: 1rem;
}

#modalidades ul li {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #0b713b; /* verde un poco más oscuro */
}

#modalidades ul li i {
  color: #28a745; /* bootstrap success green */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  #modalidades .card-body {
    padding: 1.5rem 1.5rem;
  }
  #modalidades h3 {
    font-size: 1.5rem;
  }
  #modalidades p {
    font-size: 0.95rem;
  }
}




