/* Estilos adicionales para la sección de contacto */
.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 5px;
    margin-bottom: 25px;
}

.contact-info-block.half {
    flex: 1;
    min-width: 0;  /* Evita desbordamiento */
    box-sizing: border-box;
}

/* Estilos para los enlaces de teléfono */
.phone-call {
    color: #e63946;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-call i {
    margin-right: 5px;
}

.phone-call:hover {
    color: #1d3557;
}

/* Estilos para el enlace de WhatsApp */
.whatsapp-link {
    color: #25D366;  /* Color oficial de WhatsApp */
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.whatsapp-link i {
    margin-right: 5px;
    font-size: 1.2em;
}

.whatsapp-link:hover {
    color: #128C7E;  /* Color más oscuro de WhatsApp */
}

/* Estilos para los párrafos de teléfono */
.phone-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.phone-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .contact-info-row {
        flex-direction: column;
    }
} 