/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 11 dic 2025, 15:52:24
    Author     : Juan Carlos
*/

/* HERO */
.hero {
    background: url('../img/hero.jpg') center center/cover no-repeat;
    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 40px;
    border-radius: 10px;
    color: white;
}

/* ENLACES DE ZONAS */
.zona-link {
    display: block;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
}

.zona-link:hover {
    background: #0d6efd;
    color: white;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    font-size: 32px;
    padding: 10px 14px;
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.2s;
}

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

/* OCULTAR TELÉFONO EN MÓVIL */
.phone-desktop {
    font-size: 1rem;
}

.phone-mobile {
    display: none;
}

@media (max-width: 768px) {
    .phone-desktop {
        display: none !important;
    }
    .phone-mobile {
        display: inline !important;
    }
}
