/* =============================================
   Ventas UCM - Estilos Personalizados
   ============================================= */

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

/* Hero con imagen de fondo */
.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                url('https://ventasucm.cl/wp-content/uploads/2026/05/Gemini_Generated_Image_m0gsicm0gsicm0gs.jpg');
    background-size: cover;
    background-position: center;
}

/* Tarjetas de servicios */
.service-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-5px);
    border-left: 4px solid #dc2626;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Botón flotante WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse-green 2s infinite;
    text-decoration: none;
}

@keyframes pulse-green {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Menú móvil */
#mobile-menu {
    display: none;
}
#mobile-menu.open {
    display: block;
}

/* Eliminar márgenes WordPress por defecto */
.wp-site-blocks,
#page,
#content {
    margin: 0;
    padding: 0;
}
