/* Secciones generales */
section {
    padding: 60px 0;
}

/* Hero section */
.bg-dark.text-white {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Galería */
#galeria img {
    transition: transform 0.4s ease;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#galeria img:hover {
    transform: scale(1.05);
}

/* Servicios */
#servicios .col-md-3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#servicios .col-md-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
#servicios h4 {
    font-weight: bold;
}

/* Botón de WhatsApp */
.whatsapp-float {
    background-color: #25d366;
    border: 3px solid white;
    padding: 15px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background: #212529;
    color: #bbb;
    font-size: 0.9rem;
}
.footer a {
    color: #4ca1af;
}
.footer a:hover {
    color: white;
}
