.gallery-item img, .ventajas img {
    aspect-ratio: 16/9;  /* o la relación que corresponda */
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Reservar espacio para imágenes antes de cargar */
.gallery-item, .ventajas {
    min-height: 200px; /* ajusta según necesites */
}


.header-nav {
    height: 60px; /* altura fija */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    /* Eliminar cualquier transición de altura */
}
.carousel-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button, .button-up {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    transform: scale(1);
    transition: opacity 0.3s ease;
    /* usar opacity en lugar de transform para mostrar/ocultar */
}

.team {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}