:root {
  --verde-oscuro: #065b5b;
  --verde-claro: #66b2b2;
  --azul: #28779c;
  --fondo: #e8f3f3;
  --blanco: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
}

.transparent-navbar {
  background: transparent;
  transition: background 0.3s ease;
}
.transparent-navbar.scrolled {
  background: var(--verde-oscuro);
}

.hero {
  background: var(--verde-oscuro);
  height: 100vh;
  padding: 20px;
}
.hero-logo {
  max-width: 150px;
}

footer {
  background: var(--azul);
}

.btn-top {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--azul);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s ease;
}
.btn-top:hover {
  background: var(--verde-claro);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.whatsapp-float img {
  width: 32px;
}

#galeria img {
    width: 100%;
    height: 220px; /* alto uniforme para todas */
    object-fit: cover; /* recorta sin deformar */
    object-position: center; /* centra el contenido recortado */
    border-radius: 8px;
    background-color: #f8f9fa; /* fondo neutro por si sobra espacio */
}

