.logo img {
    height: 40px;      /* prueba entre 35px y 45px */
    width: auto;
    object-fit: contain;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: linear-gradient(90deg, #000000, #000000);
}

.about {
  padding: 80px 20px;
  text-align: center;
}

.about-box {
  max-width: 900px;      /* 👈 evita que se vea ancho */
  margin: 0 auto;        /* 👈 centra */
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  line-height: 1.7;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px); /* ✨ efecto moderno */
}



.team h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;   /* 🔥 NO recorta */
  background: #f5f5f5;   /* relleno elegante */
  border-radius: 12px;
}


.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #16171c;
}

.team-card p {
  font-size: 14px;
  color: orange;
  font-weight: 500;
}



footer {
  background: #16171c;
  padding: 60px 80px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-box h3 {
  margin-bottom: 15px;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

.footer-box a:hover {
  color: #ff8c1a;
}

.socials i {
  margin-right: 12px;
  cursor: pointer;
}

.socials i:hover {
  color: #ff8c1a;
}

copyright {
  text-align: center;
}

footer p.copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.services .service,
.services .service:visited,
.services .service:hover,
.services .service:active {
  text-decoration: none;
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;          /* 🔥 ancho fijo */
  height: 60px;         /* 🔥 alto fijo (IGUAL) */

  background: #25D366;
  color: white;

  display: flex;        /* 🔥 centra el ícono */
  align-items: center;
  justify-content: center;

  font-size: 32px;
  border-radius: 50%;   /* 🔥 círculo perfecto */

  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float,
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:active {
  text-decoration: none;
  color: white;
}


.btn {
  text-decoration: none;
  color: white;
}
