/* Espacio para que el navbar fijo no tape el contenido */
body {
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Botón Flotante de WhatsApp */
.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Colores corporativos (Azul Acero y Amarillo Seguridad) */
.text-primary-custom {
    color: #003366;
}

.bg-primary-custom {
    background-color: #003366;
}