/* =========================================
   ESTILOS SUCURSALES - UNIFICADOS (AZUL 0000FF)
   ========================================= */

:root {
    --azul-propio: #0000FF;      /* ✅ Azul puro actualizado */
    --azul-hover: #0000CC;       /* ✅ Azul más intenso para interacción */
    --gris-fondo: #f8f9fa;
    --azul-transparente: rgba(0, 0, 255, 0.1); /* Resplandor azulado */
}

body { background-color: #f4f7fe; }

/* Tarjetas */
.branch-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--azul-transparente);
}

.badge-sucursal {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--azul-propio);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.75rem;
    z-index: 5;
}

/* Horarios Table Style */
.horarios-box {
    background-color: var(--gris-fondo);
    border: 1px dashed #ccc;
    border-radius: 10px;
}

.icon-box-small {
    color: var(--azul-propio);
    font-size: 0.9rem;
}

/* Botones */
.btn-primary-custom {
    background: var(--azul-propio);
    color: white;
    border: none;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-primary-custom:hover { 
    background: var(--azul-hover); 
    color: white; 
}

/* Banner Inferior */
.help-card {
    background: white;
    border-radius: 18px;
    padding: 25px 40px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 255, 0.05); /* Sombra ajustada */
}

.btn-email {
    border: 1.5px solid var(--azul-propio);
    color: var(--azul-propio);
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-email:hover { 
    background: var(--azul-propio); 
    color: white; 
}

.btn-whatsapp-simple {
    background: #25d366; /* Se mantiene verde original de WhatsApp */
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp-simple:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}