body {
    font-family: 'Roboto', sans-serif;
    color: #444;
    background-color: #fdfdfd;
}

h1, h2, h5 { font-family: 'Montserrat', sans-serif; }

.color-primario { color: #253375; }

/* Hero */
.hero-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-icon { width: 70px; }

.texto-con-borde {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Cards */
.service-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
    padding: 15px;
}

.service-card:hover { transform: translateY(-5px); }

.bg-light-custom { background-color: #f0f0ff !important; }

.bg-light-custom-2 {
    background-color: #f8f8ff !important; /* El color alternativo de tus filas */
}

.linea-decorativa {
    width: 50px;
    height: 3px;
    background-color: #253375;
}

/* Footer */
.footer-custom { background-color: #051140; }
.fb-icon { color: #4267B2; }
.wa-icon { color: #25D366; }

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}