/* Estilos para botones de WhatsApp */
.btn-whatsapp {
    --btn-bg: #25D366 !important;
    --btn-bg-hover: #128C7E !important;
    color: white !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.9rem 1.4rem !important;
    border-radius: 0.25rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 5 !important;
}

.btn-whatsapp:hover {
    background-color: var(--btn-bg-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
}

.btn-whatsapp i {
    margin-right: 6px !important;
    font-size: 1.1em !important;
}

.contact-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

@media (max-width: 576px) {
    .contact-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .contact-actions .btn-modern,
    .contact-actions .btn-whatsapp {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* Corrección específica para el formulario de contacto */
#contactForm .contact-actions {
    margin-top: 1rem !important;
}

#contactForm .btn-modern,
#contactForm .btn-whatsapp {
    flex: 1 1 auto !important;
    text-align: center !important;
    min-width: 180px !important;
}

/* Mejora del feedback visual en hover y focus */
#contactForm .btn-modern:focus,
#contactForm .btn-whatsapp:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(27, 110, 168, 0.3) !important;
}

#contactForm .btn-whatsapp:focus {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3) !important;
}