
    /* Hero section */
    .hero {
        border-radius: 10px;
        margin-left:25px;
        margin-right:25px;
        margin-bottom:20px;
        border: 15px solid #f18930;
      background-image: url('./assets/Hero.webp');
      background-size: cover;           
      background-position: center;      
      background-repeat: no-repeat;

      /* Altura del hero */
      height: 80vh;                     /* 80% de la altura de la pantalla */
      min-height: 400px;

      /* Espaciado: arriba y lados */
      padding: 100px 40px 60px 40px;     /* Arriba | Derecha | Abajo | Izquierda */
      box-sizing: border-box;

      /* Centrar texto vertical y horizontalmente */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

      /* Color del texto y sombra para legibilidad */
      color: white;
      font-family: 'Balsamiq Sans', sans-serif;
    }

    /* Título */
    .hero h1 {
      font-size: 4.5rem;
      margin: 0 0 2rem 0;
      font-weight: bold;
    }

    /* Subtítulo */
    .hero p {
      font-size: 1.4rem;
      max-width: 700px;
      margin: 0 auto 2rem auto;
    }

    /* Botón opcional */
    .hero .btn {
      background-color: #f18930;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: 0.3s;
    }

    .hero .btn:hover {
      background-color: #f7713c;
    }

    /* Responsive para móviles */
    @media (max-width: 768px) {
      .hero {
        padding: 80px 20px 40px 20px;
        height: 70vh;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1.1rem;
      }
    }

    /* Estilos del carrousel Swiper */
.mySwiper {
  width: 100%;
  height: 80vh;           /* Mantiene la misma altura que tu hero */
  min-height: 400px;
  margin-bottom: 20px;    /* Espacio abajo como antes */
}

.swiper-slide {
  width: 100%;
}

/* Las diapositivas de noticias tendrán el mismo estilo que el hero */
.noticia-slide .hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* El fondo se establecerá dinámicamente con JS */
}

/* Asegura que el contenido del hero esté centrado en todas las slides */
.hero {
  width: 100%;
  height: 100%;
  margin: 0; /* Quitamos los márgenes laterales porque ahora el contenedor los maneja */
}

/* Botones de navegación (flechas) - color naranja para que combine */
.swiper-button-next,
.swiper-button-prev {
  color: #f18930 !important;
  background: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

/* Puntos de paginación abajo */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
  background: #f18930;
}
.proposito {
  background-image: url('./assets/Proposito.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 400px;
  position: relative;
  color: #0D2C51;
  margin: 25px;
  border-radius: 10px;
}

.proposito-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 370px;
  text-align: left;             /* ← Texto alineado a la izquierda */
  padding: 20px;
}

.proposito-content h3 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  color: #0D2C51;
  font-weight: 700;
  font-family: 'Balsamiq Sans', sans-serif;
  
}

.proposito-content p {
  font-size: 1.3rem;
  margin: 0 0 1.5rem 0;
  font-family: 'Balsamiq Sans', sans-serif;
}

/* INFO DISPONIBLE */


.info_container {
  display: flex;
  gap: 4rem;
  align-items: 'center';
  text-align: 'center';
  align-content: 'center';
  margin: 1.5px;
}

.info_container img{
  width: 13rem;
  height: 10rem;
}

.tarjetas {
      padding: 60px 20px;
      background: #f8f9fa;
      font-family: 'Balsamiq Sans', sans-serif;
    }

    .tarjeta {
      text-align: center;
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tarjeta:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(241, 137, 48, 0.2);
    }

    .icono {
      width: 90px;
      height: 90px;
      background: #f18930;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 6px 15px rgba(241, 137, 48, 0.3);
    }

    .icono img {
      width: 50px;
      height: 50px;
      filter: brightness(0) invert(1); /* Blanco */
    }

    .tarjeta h3 {
      font-size: 1.4rem;
      font-weight: bold;
      color: #333;
      margin: 0 0 15px 0;
      font-family: 'Fredoka', sans-serif;
    }

    .tarjeta p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      margin: 0;
    }

    /* Responsive con Bootstrap */
    @media (max-width: 576px) {
      .tarjeta { padding: 25px 15px; }
      .icono { width: 70px; height: 70px; }
      .icono img { width: 40px; height: 40px; }
      .tarjeta h3 { font-size: 1.2rem; }
    }
    
    /* ==== ESTILOS DE LA SECCIÓN UBICACIÓN ==== */
.seccion-ubicacion {
  padding: 0px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contenedor-ubicacion {
  max-width: 1100px;
  margin: 0 auto;
}

.contenedor-ubicacion h2 {
  font-size: 42px;
  color: #0D2C51;
  margin-bottom: 20px;
}

.mapa-contenedor {
 position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding-bottom: 35%;        /* ← ESTO ES LO IMPORTANTE: hace el mapa súper horizontal */
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: solid 4px #0D2C51;
}
.mapa-contenedor iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}


