/* 🔄 RESPONSIVE NAVBAR */
@media (max-width: 910px) {
    .nav-toggle {
      display: block;
      background: none;
      border: none;
      margin-left: auto;
      cursor: pointer;
      color: #09213d;
    }
    .header-contact .phone{
      display: none;
  }
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #fff;
      padding: 1rem 0;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .navbar {
      flex-wrap: wrap;
      align-items: center;
      position: relative;
    }
  
    .navbar img {
      height: 26px;
    }
  
    .header-contact .mail{
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 12px;
    }
    .features {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
      }
    
      .feature-box {
        width: 100%;
        max-width: 360px;
        margin-bottom: 2rem; /* espacio extra por si no aplica el gap en algún navegador */
      }
    
      .feature-box i {
        width: 50px;
        height: 50px;
        padding: 14px;
      }
    
      
      .header-top-wrapper {
        justify-content: center;
        text-align: center;
      }
      .footer-top {
        flex-direction: column;
        align-items: center; /* o flex-start si lo quieres alineado a la izquierda */
        text-align: center; /* útil si los textos están en columnas */
        gap: 2rem;
      }
      .footer-box{
        width: 100%;
      }

  }
  @media (max-width: 510px) {
    .header-contact .phone{
        display: none;
    }
    .features {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
      }
    
      .feature-box {
        width: 100%;
        max-width: 360px;
      }
    
      .feature-box i {
        width: 50px;
        height: 50px;
        padding: 14px;
      }
    
      
      .gallerySwiper .swiper-slide {
        height: 200px;
      }
  }
  /* ✅ ÍCONO ACTIVO PARA MENÚ */
  .nav-toggle i.fa-xmark {
    display: none;
  }
  .nav-toggle.active i.fa-bars {
    display: none;
  }
  .nav-toggle.active i.fa-xmark {
    display: inline;
  }  