@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Tangerine:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bowlby+One+SC&family=Gloria+Hallelujah&family=Luckiest+Guy&family=Sue+Ellen+Francisco&display=swap');
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #ff6f61;
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  display: none; /* Escondido por defecto */
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #ffcc33;
  transform: scale(1.1); /* Pequeño efecto de aumento */
}

/* Estilo para los enlaces del navbar */
.navbar-nav .nav-item .nav-link {
  color: white;
  transition: color 0.3s ease, background-color 0.3s ease; /* Transición suave para el color de texto y fondo */
  border-radius: 25px; /* Bordes redondeados en el hover */

}

/* Efecto hover para los enlaces */
.navbar-nav .nav-item .nav-link:hover {
  color: #ff6f61; /* Cambiar el color del texto */
  background-color: rgba(255, 238, 0, 0.575); /* Fondo ligero cuando se pasa el mouse */
  border-radius: 25px; /* Bordes redondeados en el hover */
}

/* Efecto para el dropdown */
.navbar-nav .nav-item.dropdown .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Fondo para el dropdown */
  border-radius: 25px;
}

/* Efecto hover en los items del dropdown */
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff6f61;
  color: white;
}



#buscador button:hover {
  background-color: #ff6f61; /* Cambiar el fondo del botón al pasar el mouse */
  color: white; /* Cambiar el color del texto del botón */
  border-radius: 25px; /* Bordes redondeados */
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    color: rgb(255, 255, 255);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255);
}

.navbar-brand {
  font-family: "Luckiest Guy", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: #ff9100;
}



/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Menu */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: rgb(255, 145, 0);
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ffd700;
}

.first-section {

    padding-top: 100px;
    text-align: center;
    background-image: url("/imgs/upb.webp");
    max-width: 100%; /* Ajusta el ancho al 100% */
    height: 100vh; /* O la altura que desees */
    background-size: contain; /* Ajusta la imagen para que se vea completa */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fija el fondo al viewport */
}



.background {
    padding-top: 100px;
    text-align: center;
   
}
.programacion {
  text-align: center; /* opcional */
}

.programacion img {
 
  max-width: 100%;
  height: auto;
  max-height: 600px; /* ajustá este valor a lo que quieras */
  display: block;
  margin: 0 auto;
  object-fit: cover; /* recorta si es necesario sin deformar */


}



body {
    background-image: url("/imgs/DisenioFondo.webp");
    max-width: 100%; /* Ajusta el ancho al 100% */
    background-size: cover;
   
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fija el fondo al viewport */
}

.first-section h1 {
    color: aliceblue;
    font-size:50px;
    font-weight: 900;
}



.first-section h2 {
    color: rgb(255, 153, 0);
    padding-bottom: 50px;
    font-size: 25px;
    font-weight: 900;

}

.actividad {
  font-size: 30px;
}

.logo {
    color: rgb(255, 145, 0);
}

.fotocole {
  max-width: 100%; /* Ajusta el ancho al 100% */
  background-size: cover;
 
  background-repeat: no-repeat;
}

.second-section {
    display: flex;
    justify-content: space-around;
}

.actividades {
    max-width: 300px; /* Tamaño máximo (ajústalo según necesites) */
    border: 2px solid greenyellow;
    border-radius: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.actividades:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
  }

  /* Fondo alternativo al hover */
  .actividades:hover {
    filter: brightness(1.1);
  }

  .map {
    text-align: center;
    background-color: #ffffff;
}
.map h2{
    padding-bottom: .3em;
    padding-top: 30px;
    color: rgb(24, 24, 255);
    font-family: 'Nunito', sans-serif;
    font-size: 1.7em;

}
.contacto {
    padding-top: 5em;
    padding-bottom: 5em;
    font-family: 'Nunito', sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
}

.h1-turno {
    text-align: center;
    color: #5eff00;
    padding-bottom: 20px;
    font-size: 30px;
}

/* Títulos */
.h1-turno {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

h3 {
  color: #4caf50;
  font-size: 1.5em;
}

/* Contacto */
.contact-details p {
  margin: 10px 0;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.contact-details i {
  margin-right: 10px;
  color: #4caf50;
  font-size: 1.2em;
}

.fotocole {
  background-size: cover;
}

/* Formulario */
form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;

}

/* Cambiar color del placeholder */


/* Cambiar color del texto al escribir */
input.form-control,
textarea.form-control {
  color: #7ed957; /* Color manzana verde */
}



/* Opcional: Cambiar color del borde del campo al enfocarse */
input.form-control:focus,
textarea.form-control:focus {
  border-color: #7ed957;
  outline: none;
  box-shadow: 0 0 5px rgba(126, 217, 87, 0.5);
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(255, 115, 0);
  border-radius: 4px;
  font-size: 1em;
}


.h1-turno {
  color: rgb(255, 115, 0);
}
.texto-importante{
  color: rgb(255, 115, 0);
  padding: 0;
}
.form-control:focus {
  border-color: #4caf50;
  outline: none;
}

/* Botón */
.btn-submit {
  background-color: #4caf50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2em;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #45a049;
}

h2{
  font-size: 18px;
  padding-top: 20px;
}
.actividad {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #ffd700;
}

.third-section {
    padding-top: 100px;
    display: flex;
    color: white;
    
}


.obras {
    display: flex;
    justify-content: space-around;
    
}

.third-section h1{
padding-bottom: 20px;
}  

.third-section p{
    padding-bottom: 30px;
    padding-right: 40px;
    } 

    .obras-section {
        padding-top: 50px;
        background-color: rgb(255, 255, 255);
        color: rgb(43, 43, 43);
       text-align: center;
        padding-bottom: 45px;
        
    }

    .obras-section h1, p{
        padding-bottom: 20px;
    }
    .card {
        width: 20rem;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(124, 56, 39, 0.01);
        background-color: #ffffff;
        
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      
      .card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      }
    
      .card img {
       
        object-fit: cover;
        border-bottom: 2px solid #ffbb00;
      }

      strong {
        font-size: 19px;
      }
      .btn-info {
        text-decoration: none;
        display: inline-block;
        padding: 10px 20px;
        margin-top: 10px;
        font-size: 20px;
        font-weight: bold;
        color: white;
        background-color: #5eff00;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }



    
      .btn-info:hover {
        list-style: none;
        background-color: #ffffff;
        transform: scale(1.05);
        color:#33ff00;
      }

      .obras{
        gap: 50px
      }
      .card-body {
        padding: 15px;
        text-align: center;
      }
    
      .card-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #333;
      }
    
      .card-text {
        font-size: 0.75rem;
        color: #555;
        margin-top: 10px;
      }

     #taller {
      color: red;
     }

     #enjuego {
      color: greenyellow;
     }
    
      .list-group-item {
        background-color: #f8f9fa;
        font-size: 0.9rem;
        color: #007bff;
        text-align: center;
      }
    
      .card-body a {
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
      }
    
      .card-body a:hover {
        text-decoration: underline;
      }
    
      .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

.third-section img {
    max-width: 500px;
border-radius: 20px;
}

/* Cambiar color del ícono */
.fa-envelope {
  color: #fc0000;  /* Color manzana verde */
  font-size: 20px;  /* Tamaño del ícono (opcional) */
}
.fa-phone {
  color: #00fc15;  /* Color manzana verde */
  font-size: 20px;  /* Tamaño del ícono (opcional) */
}

.fa-home {
  color: #0026fc;  /* Color manzana verde */
  font-size: 20px;  /* Tamaño del ícono (opcional) */
}

.third-section video {
  max-width: 400px;
  border: 2px solid rgb(255, 166, 0);

border-radius: 20px;
background-size: contain; /* Ajusta la imagen para que se vea completa */
background-repeat: no-repeat;
background-attachment: fixed; /* Fija el fondo al viewport */
}
.biblio-img {
    padding-right: 40px;
}

/* Estilo del footer */
.footer {
    background-color: #212529;
    color: #f9f9f9;
    display: flex;
    justify-content: center;
  }
  
  .footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer ul {
    padding: 0;
    list-style: none;
  }
  
  .footer ul li a {
    text-decoration: none;
    color: #f9f9f9;
    transition: color 0.3s ease;
  }
  
  .footer ul li a:hover {
    color: #ffcc00;
  }
  
  .footer .social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .footer .social-icons a:hover {
    color: #ffcc00;
  }
  
  .obras {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
  }

.info h1 {
  font-weight: 900;
  
}
.info3{
  font-size: 0px;
}

.btn-info1{
  font-size: -1px;
}
.info3 h1 {
  font-size: 0px;
}
.info3 .btn-info {
  font-size: 0px;
}

.info5{
  font-size: 0px;
}

.info5 h1{
  font-size: 0px;
}

.info5 img {
  display: none;
}

.info h1 {
  color: #ffbb00;
}

.info2 h1{
  color: #00e1ff;
  font-weight: 900;
}

.info4 h1{
  color: #48ff00;
  font-weight: 900;
}

.strong-biblio {
  font-size: 0px;
}

.strong-ninio {
  font-size: 0px;

}

.info {
  
  max-width: 1400px; /* Limita el ancho del contenedor */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
    
    background-size: cover;
   
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fija el fondo al viewport */
}

.info2 h1{
  font-size: 28px;
}

.info2 {
  max-width: 1000px; /* Limita el ancho del contenedor */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}



.info h1 {
  color: #ffd000;
 font-size: 26px;
}

.contacto {
  background-color: #fbfbff;
}

/* Responsivo */
/* Responsivo para pantallas pequeñas */
@media screen and (max-width: 480px) {


  #cursos .info {
    max-width: 900px; /* Ajusta el ancho de la sección */
    font-size: 14px; /* Reduce el tamaño de la fuente */
    padding: 10px; /* Reduce el espacio interno */
    background-image: url("/imgs/fondos.png");
background-repeat: no-repeat;
background-attachment: fixed; /* Fija el fondo al viewport */
  }
  
  /* Ajusta el título */
  #cursos .info h1 {
    font-size: 30px; /* Cambia el tamaño del título */
    margin-bottom: 10px; /* Reduce el espaciado debajo del título */
  }
  
  /* Ajusta el texto del párrafo */
  #cursos .info p {
    font-size: 18px; /* Cambia el tamaño del texto del párrafo */
    margin-bottom: 30px; /* Reduce el espaciado entre párrafos */
  
  }
  
  /* Ajusta el botón */
  #cursos .info .btn-info {
    font-size: 25px; /* Cambia el tamaño del texto del botón */
    padding: 8px 12px; /* Ajusta el relleno interno del botón */
    margin-bottom: 0; /* Elimina margen extra debajo del botón */
  }

  .info3 {
    max-width: 900px; /* Ajusta el ancho de la sección */
    font-size: 14px; /* Reduce el tamaño de la fuente */
    padding: 10px; /* Reduce el espacio interno */
    background-image: url("/imgs/fondos.png");
    background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /* Fija el fondo al viewport */

  }
  
  /* Ajusta el título */
 .info3 h1 {
    font-size: 30px; /* Cambia el tamaño del título */
    margin-bottom: 10px; /* Reduce el espaciado debajo del título */
  }
  
  /* Ajusta el texto del párrafo */
  .info3 p {
    font-size: 18px; /* Cambia el tamaño del texto del párrafo */
    margin-bottom: 30px; /* Reduce el espaciado entre párrafos */
    padding: 0px;
    color: #ffffff;
    font-weight: 900;
  }
  
  /* Ajusta el botón */
 .info .btn-info {
    font-size: 25px; /* Cambia el tamaño del texto del botón */
    padding: 8px 12px; /* Ajusta el relleno interno del botón */
    margin-bottom: 0; /* Elimina margen extra debajo del botón */
  }
  .info {
    max-width: 900px; /* Ajusta el ancho de la sección */
    font-size: 14px; /* Reduce el tamaño de la fuente */
    background-image: url("/imgs/fondos.png");
padding-bottom: 20px;
background-attachment: fixed; /* Fija el fondo al viewport */

  }
  
  /* Ajusta el título */
 .info h1 {
    font-size: 30px; /* Cambia el tamaño del título */
    margin-bottom: 10px; /* Reduce el espaciado debajo del título */
    
  }
  
  /* Ajusta el texto del párrafo */
  .info p {
    font-size: 18px; /* Cambia el tamaño del texto del párrafo */
    padding-right: 30px;
    text-align: center;
  }
  
  /* Ajusta el botón */
 .info .btn-info {
    font-size: 25px; /* Cambia el tamaño del texto del botón */
    padding: 8px 12px; /* Ajusta el relleno interno del botón */
    margin-bottom: 0; /* Elimina margen extra debajo del botón */
  }

  .card-text {
    font-size: 18px;
  }

  strong {
    font-size: 20px;
  }
  .strong-biblio {
    font-size: 23px;

  }

  .strong-ninio {
    font-size: 20px;
  
  }

  .first-section{
    background-image: url("/imgs/portada-mobile.png");
  }

  .btn-info1 {
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #5eff00;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn-info1:hover {
    list-style: none;
    background-color: #ffffff;
    transform: scale(1.05);
    color: #33ff00;
  }

.info4{
  display: none;
  font-weight: 900;
 
}

.info4, p{
  padding-right: 40px;

}
.info5 h1{
  font-size: 30px;
  color: #33ff00;
  font-weight: 900;
}
.info5 {
  padding-bottom: 50px;
}

.info5 p{
  font-size: 20px;
}
  .info3{
    text-align: center;
    font-size: 20px;
    
  }

  .info3 h1 {
    font-size: 25px;
    padding-top: 30px;
    color: #00e1ff;
    font-weight: 900;
  }
  .info3 .btn-info {
    font-size: 20px;
  }
  .navbar {
      flex-direction: column;
      padding: 10px;
      text-align: center;
  }

  .hamburger {
      display: flex;
  }

  .menu {
      display: none;
      flex-direction: column;
      background-color: #007bff;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
     
      padding: 20px 0;
  }

  .menu.active {
      display: flex;
  }

  .menu li {
      margin: 10px 0;
  }

  .first-section {
      padding: 20px;
      background-size: cover; /* Ajuste completo al contenedor */
   
    }
.info5 p {
  padding: 10px;
}

  .first-section h1 {
    padding-top: 100px;
      font-size: 50px;
  }

  .first-section h2 {
      font-size: 30px;
  }

.info5 {
  background-color: rgba(162, 0, 255, 0.623); /* Fondo cian con 20% de opacidad */
  padding: 20px;
    border: 2px solid rgb(0, 225, 255);
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
}
.info5 h1 {
  color: rgb(43, 255, 0);
}


  .second-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .actividades {
      width: 80%; /* Ajusta el tamaño a un 80% del ancho de la pantalla */
      max-width: 300px; /* Limita el tamaño máximo */
      margin-bottom: 20px;
  }

  .third-section {
      flex-direction: column;
      text-align: center;
  }

  .third-section img {
       /* Imagen ajustada al ancho del contenedor */
      max-width: 388px; /* Limita el ancho máximo */
   border: 2px solid rgb(0, 174, 255);
      
  }

  .third-section video {
      /* Imagen ajustada al ancho del contenedor */
      max-width: 388px; /* Limita el ancho máximo */
  }

  h5 {
    padding-top: 40px;
  }

  .card {
      width: 90%; /* Reduce el tamaño de las tarjetas */
      margin: 10px auto;
  }

  .footer {
      flex-direction: column;
      text-align: center;
      padding: 20px;
  }

  .footer ul {
      margin-top: 10px;
  }

  .footer ul li {
      margin: 5px 0;
  }

  .info p{
    padding-left: 40px;
    font-size: 20px;
  }
  .info h1 {
    padding-top: 30px;
    
  }

  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none; /* Escondido por defecto */
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .scroll-to-top:hover {
    background-color: #ffcc33;
    transform: scale(1.1); /* Pequeño efecto de aumento */
  }
  
#enjuego {
  color: rgb(157, 255, 0);
  font-size: 28px;
  font-weight: bold;
}

#taller {
  color: yellow;
}
  .obras {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
  }

.info2 {
  display: none;
}

.info3{
 
    font-size: 20px;
}

.card-text {
  padding: 0;
}

.text-white p{
  padding: 0;

}

.fa-instagram {
  color: rgb(255, 69, 168);
}

.fa-whatsapp {
  color: #00fc15;
}
.text-white {
  font-size: 20px;
}
.shadow-box {

  background-color: rgba(0, 255, 21, 0.534); /* Fondo cian con 20% de opacidad */
  padding: 20px; /* Espaciado interno */
  border: 2px solid orangered;
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
  margin-top: 20px; /* Separación superior */
}
.shadow-box2 {

  background-color: rgba(255, 0, 0, 0.534); /* Fondo cian con 20% de opacidad */
  padding: 20px; /* Espaciado interno */
  border: 2px solid orangered;
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
  margin-top: 20px; /* Separación superior */
}

.info3 h1 {
  color: rgb(0, 255, 255);
}
  
.info3 {
  background-color: rgba(0, 26, 255, 0.623); /* Fondo cian con 20% de opacidad */
padding: 20px;
  border: 2px solid rgb(0, 225, 255);
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra más suave */
}
}







