/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* Ajuste responsive del logo central */
.logo img {
  width: 100%;
  max-width: 350px; /* Tamaño para escritorio */
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 180px; /* Tamaño para celular */
  }
}
/* BOTÓN WHATSAPP - DESKTOP */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ícono centrado */
.float .fa-whatsapp {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* BOTÓN WHATSAPP - MOBILE */
@media (max-width: 480px) {
  .float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
  }

  .float .fa-whatsapp {
    font-size: 22px;
  }
}