
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
  }
  
  .encabezado {
  position: fixed;
  top: 0%;
  left: 0;
  height: 180px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contenedor-encabezado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px;
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  height: 250px;
  margin-right: 0px;
  margin-top: 0%;
  margin-bottom: 0px;
  width: auto;
 position: relative;
}

  
  .nav-enlaces {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-enlaces a {
    text-decoration: none;
    color: #000;
    font-weight: 550;
    font-size: 17px;
    transition: color 0.3s ease;
    font-family: 'poppins', sans-serif;
    
  }
  
  .nav-enlaces a:hover {
    color: #ffca39;
  }
  .contenido-principal {
    padding: 60px 20px;
    text-align: center;
}


.titulo-principal {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.titulo-principal::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 4px;
    background-color: #d4af37; 
    width: 0;
    animation: subrayado 2s ease forwards;
}
 .footer {
    background: #111111;
    color: rgb(0, 0, 0);
    font-family: sans-serif;
    position: relative;
    top: 0%;
    left: 0%;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #eed983;
  }
  
  .footer-box {
    flex: 1;
    padding: 20px;
    min-width: 280px;
    position: relative;
    top: 10%;
    left: 15%;
    font-size: 24px;
  }
  
 
  
  .footer-box .numero {
    font-size: 23px;
  
    margin: 5px 0;
    
  }
  
  .footer-box .temas {
    margin-top: 20px;
    line-height: 1.6;
  }
  
  .footer-box hr {
    margin: 20px 0;
    border: 0.5px solid #000000;
  }
  
  .info-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 20px;
    position: relative;
    top: 10%;
    left: 16%;
    width: 100%;

  }
  
  .info-footer a {
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  .info-footer a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    background-color: #000;
    border-top: 1px solid #333;
    color: white;
  }


  .banner-impulsa {
    background-image: url('/Imagenes/impulsa/impulsaimagen1.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 48px;
    font-weight: bold;
    position: relative;
  }
  
  .banner-impulsa::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); 
    z-index: 0;
    padding-top: 160px;
  }
  
  .banner-impulsa h1 {
    position: relative;
    z-index: 1;
    padding-top: 160px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

 .contenido-scroll {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  font-family: 'Segoe UI', sans-serif;
}

.texto-principal {
  text-align: center;
  background-color: #fef9e7;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.texto-principal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.texto-principal p {
  font-size: 1.3em;
  color: #000000;
  margin: 15px 0;
  font-family: 'poppins', sans-serif;
}

.texto-principal p:first-child {
  font-weight: bold;
  font-size: 1.5em;
  color: #000000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.texto-secundario {
  background-color: #a9cce3;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-family: 'poppins', sans-serif;
}

.texto-secundario:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.texto-secundario p {
  font-size: 1.3em;
  color: #000000;
  margin: 12px 0;
  position: relative;
  padding-left: 20px;
  text-align: center;
}

.texto-secundario p::before {
  content: "▸";
  position: center;
  left: 0;
  color: #000000;
  font-size: 1em;
}
  
  .boton-contacto .boton-bonito {
    background-color: #f2c94c;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: absolute;
  bottom: 0%;
    left: 46%;
    

  }
  
  .boton-contacto .boton-bonito:hover {
    background-color: #e0b947;
    transform: scale(1.05);
    
  }
  
  
  .aparecer {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .aparecer.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .separador-impulsa {
    background-image: url('/Imagenes/impulsa/impulsa2.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    margin-top: 60px;
  }
  
  .texto-debajo {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #222;
    margin: 40px 20px;
  }

  .whatsapp-burbuja {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-burbuja:hover {
  transform: scale(1.1);
}

.whatsapp-burbuja img {
  width: 32px;
  height: 32px;
}
