
* {
      font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    height: 120px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    z-index: 1000;
}



.logo img {
  width: 120px;
  max-width: 100%;
}

nav {
    display: flex;
    align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-shadow: 0px 4px 4px #282828;
  transition: color 0.3s;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
.nav-links a i {
    margin-right: 8px;
}


.boton-nav-sesion :hover{
    background-color: #fff;
    color: black;
}

/* header color ------------------*/

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-link {
    text-decoration: none;
    color: black;
    font-weight: normal;
    transition: color 0.3s, font-weight 0.3s;
}

.menu-link:hover {
    color: rgb(162, 255, 0);
}

.menu-link.activo {
    color:  #ffef42;
    font-weight: bold;
    border-bottom: 2px solid yellow;
}
/* informes ------------------------------*/

    .informes{

           background-image: url(../imagenes/Propuesta-2-web-cevesh.png);
           background-repeat: no-repeat;
           background-size: cover;
      padding: 20px;
      display: flex;
      justify-content: center;
    }

  .form-container {
    margin-top: 180px;
      background: white;
      padding: 30px;
      max-width: 800px;
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 22px;
      border: none;
      background: #b1b1b1;
      transition: border-color 0.3s;
      font-size: 16px;
      border-radius: 5px 5px 0 0;
   
   
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-bottom-color: #2b2e83;
      outline: none;
      background: #ffffff;
    }

    .form-group input::placeholder{
      color: #ffffff;
    }

       .form-group textarea::placeholder{
      color: #ffffff;
    }


    .error {
      color: red;
      font-size: 14px;
      margin-top: 5px;
      display: none;
    }

    button {
      background: #2b2e83;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 15px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
    }

    button:hover {
      background: #1a1d70;
    }

    /* Mensaje de éxito */
    #mensajeExito {
      display: none;
      margin-top: 25px;
      padding: 20px;
      background-color: #e0ffe5;
      border: 1px solid #6edc8c;
      color: #218b4c;
      border-radius: 10px;
      text-align: center;
      font-weight: bold;
      animation: fadeIn 1s ease-in-out;
    }

    #mensajeExito i {
      color: #4caf50;
      margin-right: 10px;
      font-size: 20px;
      animation: bounce 1s infinite;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
   
/* mapa ---------------------------*/

 .map-section {
      max-width: 1200px;
      margin: 40px auto;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }

    .map-image {
      flex: 1 1 300px;
      background-image: url(../imagenes/UBICACION\ CEVESH.png);
      background-repeat: no-repeat;
      background-size:contain;
      background-position: center;
      min-height: 300px;
    }

    .map-text {
      flex: 1 1 300px;
      padding: 30px;
      background-color: #2b2e83;
      color: white;
    }

    .map-text h2 {
      margin-top: 0;
      font-size: 28px;
    }

    .map-text p {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .map-container {
      width: 100%;
      height: 300px;
      border: 0;
      margin-top: 20px;
      border-radius: 12px;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .map-section {
        flex-direction: column;
      }

      .map-image, .map-text {
        flex: 1 1 100%;
      }
    }

    /* Botón WhatsApp flotante */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

/* footer -------------------------*/


footer {
    background-image: url(../imagenes/Prueba-imagen-FORMULARIO.png);
    color: rgb(255, 255, 255);
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.footer-item i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.footer-bottom a{
    color: rgb(192, 191, 191);
    text-decoration: none;
}

.footer-bottom a:hover{
    color: #f0f0f0;

}

.social-buttons a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-left: 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-buttons a:hover {
    color: #b2e73f;
}

/* boton hacia arriba --------------*/

#btn-scroll-top {

  position: fixed;
  bottom: 80px;
  right: 37px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: none; /* Oculto por defecto */
  z-index: 1000;
  transition: background 0.3s, transform 0.3s;
  line-height: 20px;
  text-align: center;
  padding: 0;
}

#btn-scroll-top:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}



/* nuestras alianzas ----------------------*/

 
    

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #2b2e83;
        flex-direction: column;
        width: 150px;
        display: none;
        border-radius: 8px;
        padding: 10px;
        
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

         .seccion-mv {
        flex-direction: column;
      }

      .separador-vertical {
        display: none;
      }

      .columna {
        width: 100%;
        padding: 20px;
      }

     .alianza img {
        height: 60px;
      }

}

 @media (max-width: 992px) {
      .contenedor-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .contenedor-grid {
        grid-template-columns: 1fr;
      }
    }


