/* diamante inti */
/* .diamante1 {
  font-size: 8px;
  animation: diamante 4s infinite;
  color: #1f5727;
}

.diamante2 {
  font-size: 10px;
  animation: diamante 2s infinite;
  color: #1f5727;
}

@keyframes diamante {
  0% {
    opacity: 0.9;
  }

  0% {
    opacity: 0.8;
  }

  51% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
} */

/* 
/* sub-menu */
.cascade {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.cascade.active {
  opacity: 1;
  transform: translateY(6);
} */

/* login */

#login-form {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 20px;
  border: none !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#login-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none !important;
}

#login-form label {
  margin-bottom: 10px;

}

#login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none !important;
  text-decoration: none;
}

#login-form button[type="submit"] {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}

#login-form button[type="submit"]:hover {
  background-color: #3e8e41;
}


/* menu  SERVICIOS Features Section Start*/
.center-container {
  text-align: center;

}

/*SERVICIOS CSS NUEVO*/

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.mb-3 {
  margin-left: 1rem;
  font-size: 1.30rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.font-bold {
  font-weight: bold;
}

.hover\:text-secondary:hover {
  color: #198151;
}

.title {
  padding: 1rem;
}

/* PUBLICACIONES */

/*NOTICIAS*/

@keyframes slide-down {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-down {
  animation: slide-down 0.5s ease-out;
}

/* BOTON PARA SUBIR  */

#scrollToTop {
  z-index: 1000;
}

/* EFECTO DE LOS CARD "HOME" */


.card {
  transition: transform 0.3s ease;
}


.card:hover {
  transform: translateY(-10px); 
  z-index: 10; 
}


.other-elements {
  transition: transform 0.3s ease;
}

.other-elements:hover {
  transform: translateY(-30px);
  z-index: 10;
}

/* Carrusel de entes */

.carousel-container {
  max-width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  animation: scroll 10s linear infinite;
}

.carousel img {
  color: white;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  min-width: 120px;
  margin: 0 20px; 
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(-15%);
  }
}

    /* NAVBAR */

    nav {
      position: relative; 
      z-index: 50;
      }
  
      .animate-slide-down {
      animation: slide-down 0.3s ease forwards;
      }
  
      @keyframes slide-down {
      from {
          max-height: 0;
          opacity: 0;
      }
      to {
          max-height: 200px;
          opacity: 1;
      }
      }
  
      .text-orange-700 {
          color: #c96819;
      }
  
      .hover\:bg-green-100:hover {
          color: #ff5608;
      }

      .bg-green:hover{
        color: #198151;
      }

      .hover:text-green{
        color: #198151;
      }
  
      .menu-item {
      position: relative; 
      transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
      display: inline-block;
      animation: shake 0.5s ease infinite;
      }
  
      .menu-item:hover {
          transform: scale(1.05);
          background-color: rgba(255, 165, 0, 0.2); 
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          border-radius: 10px; 
      }
  
      .bar {
      height: 4px;
      background-color: orange;
      position: absolute;
      bottom: -2px; 
      left: 0;
      right: 0;
      transform: scaleX(0); 
      transition: transform 0.3s ease; 
      border-radius: 10px;
      }
  
      .menu-item:hover .bar {
      transform: scaleX(1);
      }
  
      @keyframes shake {
      0% { transform: translateX(0); }
      25% { transform: translateX(-5px); }
      50% { transform: translateX(5px); }
      75% { transform: translateX(-5px); }
      100% { transform: translateX(0); }
      }

/* footer */

  footer {
    position: relative; 
    z-index: 1; 
    padding: 20px; 
    background-color: rgb(6, 105, 85); 
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 20px;
}

.footer-social-link {
    color: white;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(245, 51, 2, 0.3);
}

.footer-social-link:hover {
    transform: translateY(-5px);
}

/* Colores originales de las redes sociales */
.footer-social-link.youtube:hover {
    background: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.footer-social-link.tiktok:hover {
    background: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.footer-social-link.tiktok:hover i {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-link.telegram:hover {
    background: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
}

.footer-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
}

.footer-social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

/* Responsive para los iconos */
@media (max-width: 768px) {
    .footer-social {
        gap: 1rem;
    }

    .footer-social-link {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
}

  /* RESEÑA */

  hr {
    width: 20%;
    height: 2px;
    background-color: #e59723 !important;
    border: none;
    margin: 0 auto;
}

hr:hover {
    background-color: #e100ff;
}

/* h2 {
    color: #198151 !important;
} */

@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}

p {
    text-align: justify;
    text-indent: 20px;
    margin-bottom: 20px;
}

i {
    font-size: 24px;
    margin-right: 10px;
}

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

.si ul li {
    margin-bottom: 10px;
}

.si ul li::before {
    content: "›";
    color: #34C759;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ul li ul {
    margin-left: 20px;
}

.custom-hr {
    width: 10%;
    height: 2px;
    background-color: #e59723 !important;
    border: none;
    margin: 10px auto;
    transition: background-color 0.3s ease-in-out;
}

.custom-hr:hover {
    background-color: #e100ff;
}

.values-container {
    display: flex;
    justify-content: space-between; 
    flex-wrap: nowrap; 
}

.values-column {
    flex: 1; 
    margin: 0 10px; 
}

/* PRENSA */

@keyframes fade-in {
  0% {
      opacity: 0;
      transform: scale(0.95);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

/* SEMANA ANIVERSARIO */

  body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }

  .day-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: black;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(4, 85, 32, 0.5);
  }

  .activity-container {
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  }

  .activity-container:hover {
  background-color: rgba(255, 165, 0, 0.5);
  transform: translateZ(10px);
  z-index: 1;
  }

  .time {
  width: 80px;
  font-weight: normal;
  color: #555;
  }

  .activity-title {
  font-weight: bold;
  color: #333;
  }

  .schedule-section {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  }

  .morning, .afternoon {
  flex: 1;
  padding: 10px;
  }

  .hov:hover {
  background-color: rgba(255, 165, 0, 0.5);
  border-radius: 10px;
  }

  .sub-title {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0;
  color: #ff5608;
  }

  .antialiased {
  border-radius: 10px;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  }

  .h-auto {
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  }

  .h-auto:hover {
  transform: scale(1.05);
  }


 /* boton de styles */

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select::after {
  content: '\f0d7';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: black;
}

.default-icon {
  color: black;
}

.custom-select select:focus {
  outline: none;
  box-shadow: none; 
}

/* ORGANIGRAMA */

.margen-lateral {
  margin-right: 5rem;
}


/* DIRECTORIO */

.directorio:hover {
  transform: translateY(-10px); 
  z-index: 10; 
}

/* MODO OSCURO-CLARO */

.theme-switch .dot {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center; 
}

input:checked + label .dot {
  transform: translateX(100%);
}

input:checked + label .fa-sun {
  display: none;
}

input:checked + label .fa-moon {
  display: block;
}

input:not(:checked) + label .fa-sun {
  display: block;
}

input:not(:checked) + label .fa-moon {
  display: none;
}

.theme-switch .dot i {
  font-size: 0.8rem; 
}

/* LOGO INTI HOME */

.responsive-logo {
  max-height: 11rem;
  width: auto;
  height: auto; 
}
