/* RESET GENERAL */
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    outline: none;
  }
  body{
    font-family: 'Poppins', sans-serif;
  }
  html, body {
    overflow-x: hidden;
  }
  html, p{
    font-size: 14px;
  }
  html, title h3{
    font-size: 17px;
  }

  /* HEADER */
  .header-top-wrapper {
    background: #f8f8f8; /* Azul oscuro */
    color: #272727;
    padding: 0.5rem 2rem;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .header-contact p {
    margin-right: 35px;
  }
  .header-contact i {
    margin-right: 5px;
    color: #001025;
  }

  /* NAVBAR */
  .navbar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 0.5rem;
    position: relative;
  }
  .navbar img {
    height: 35px; /* Tamaño ajustable del logo */
    width: auto;
  }
  .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
  }
  .nav-links :hover{
    color: #00657e;
  }
  .nav-links .sub_GRT{
    border-bottom: #000000 1px solid;
  }
  .nav-links a {
    text-decoration: none;
    color: rgba(0, 3, 19, 0.88);
    font-size: 14px;
  }

  li.Login {
    list-style: none;
    display: inline-block;
    margin-left: 1rem;
  }
  
  li.Login a {
    background-color: #09213d; /* Azul oscuro */
    color: #fff;
    padding: 9px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  li.Login a i {
    font-size: 0.8rem;
    margin-right: 3px;
  }
  
  li.Login a:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
  }
  

  /* Botón de menú */
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* SWIPER */
  .swiper-section {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* FEATURES */
  .features {
    display: flex;
    justify-content: space-around;
    padding: 2rem 1rem;
  }
  .feature-box {
    text-align: center;
    width: 30%;
    border-bottom: 3px solid #054480;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  .feature-box i {
    font-size: 2rem;
    background: #001f3f;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  

  /* ABOUT */
  .about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
    flex-wrap: wrap;
  }
  
  .about-img {
    position: relative;
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .about-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .badge {
    position: absolute;
    bottom: -10px;
    left: 10px;
    background-color: rgb(9, 33, 61);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  .about-text {
    flex: 1 1 400px;
    max-width: 600px;
  }
  
  .about-text .subtitle {
    color: #00509d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .about-text .title {
    margin-bottom: 1rem;
  }
  
  .about-text p {
    line-height: 1.6;
  }
  

  /* INFO SECTION */
/* 💧 Estilos para sección de ahorro de agua */
.water-saving-section {
  padding: 4rem 2rem;
  background: #f2faff;
  text-align: center;
}

.water-saving-section .title {
  margin-bottom: 2rem;
  color: #003366;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.tip {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tip:hover {
  transform: translateY(-5px);
}

.tip i {
  font-size: 2.5rem;
  color: #0077c8;
  margin-bottom: 1rem;
}

.tip h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.tip p {
  color: #444;
}

.climate-message {
  margin-top: 2rem;
  background: #01a0a0;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}

.climate-message h3 {
  margin-bottom: 1rem;
}

.climate-message span {
  font-weight: bold;
  color: #fff;
}
.climate-message img{
  height: 100px;
}

  /* GALLERY */
  .gallery {
    padding: 3rem 1rem;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .gallery .title {
    color: #09213d;
    margin-bottom: 0.5rem;
  }
  
  .gallery img[alt=""] {
    margin-bottom: 1.5rem;
  }
  
  .gallerySwiper {
    width: 100%;
    padding: 1rem 0;
  }
  
  .gallery .swiper-slide {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1; /* Cuadrado */
    border-radius: 1rem;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que no se estire */
    border-radius: 0.5rem;
  }
  
  

  /* FOOTER */
  footer {
    background: #05172b;
    color: white;
    padding: 2rem 1rem;
  }
  .footer-box li{
    margin-top: 5px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-box {
    width: 30%;
  }
  .footer-box p{
    margin-top: 7px;
  }
  .footer-box h3.title {
    color: white;
    margin-bottom: 1rem;
  }
  .footer-box .socials i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #ffffff20;
    margin-top: 1rem;
    padding-top: 1rem;
    color: #f8fbff;
    font-size: 0.9rem;
  }
  .footer-bottom a{
    color: #6d90c9;
  }
  .menu-footer li{
    font-size: 14px;
  }

  /* TEXTOS */
  .title {
    color: #00428d;
    margin-bottom: 0.5rem;
  }
  .subtitle {
    color: #0858ad;
    margin-bottom: 0.25rem;
  }



  /* Ajustes para mostrar el botón junto al logo en el navbar */
.navbar {
    position: relative;
  }
  
  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #09213d;
    cursor: pointer;
  }
  
  /* Posicionarlo al lado derecho del logo */
  .navbar .nav-toggle {
    margin-left: auto;
    margin-right: 1rem;
  }
  
  /* Íconos de menú y cerrar */
  .nav-toggle i.fa-xmark {
    display: none;
  }
  
  .nav-toggle.active i.fa-bars {
    display: none;
  }
  
  .nav-toggle.active i.fa-xmark {
    display: inline;
  }
  