/* Aplicamos la fuente Montserrat como predeterminada */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F4F5F7; /* bg-brand-gray-light */
}
/* Añadido: Estilo para el logo del header */
.logo-cipres{
    max-width: 200px;
}
.logo-cipres-pie{
    max-width: 150px;
}
.texto-redes{
    margin: 0 auto !important;
}
.persona-afiliacion-cipres{
    max-width: 280px !important;
}
@media (max-width: 767px) {
.titulo-principal{
    margin-top: 170px;
    font-size: 27px !important;
    margin-bottom: 5px !important;
}
.contenedor-planes{
    margin-bottom: 170px;
}
}

/* ===== INICIO: CSS AÑADIDO PARA WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
/* ===== FIN: CSS AÑADIDO PARA WHATSAPP ===== */