/* HERO */
.hero-nosotros {
    height: 60vh;
    background: url('../images/nosotros/nosotros_prev.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-nosotros .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  
  .hero-nosotros h1 {
    color: white;
    font-size: 60px;
    letter-spacing: 5px;
    position: relative;
  }

  /* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.6); /* negro transparente */
  border-radius: 50%;
  display: none; /* oculto por defecto */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* ícono blanco */
}

.whatsapp-float:active {
  transform: scale(0.9);
}

  
  /* CONTENIDO */
  .nosotros-page {
    padding: 120px 20px 60px; /* 🔥 más espacio arriba */
  }
  
  .nosotros-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px; /* 🔥 más aire entre imagen y texto */
    align-items: center;
  }
  
  .nosotros-img img {
    width: 100%;
    border-radius: 10px;
  }
  
  .nosotros-texto span {
    color: gray;
    font-size: 14px;
  }
  
  .nosotros-texto h2 {
    font-size: 36px;
    margin: 10px 0 20px;
  }
  
  .nosotros-texto p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
  
    .hero-nosotros h1 {
      font-size: 40px;
    }
  
    .nosotros-container {
      flex-direction: column;
    }
  
    .nosotros-texto {
      text-align: center;
    }

    .nosotros-page {
        padding: 100px 16px 40px;
      }

      .contacto-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .contacto-info .info-item {
        text-align: center;
      }

      .whatsapp-float {
        display: flex;
      }
  
  }