/* Estilos para el botón de WhatsApp */
.whatsapp-quote-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.whatsapp-quote-content h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.whatsapp-quote-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-quote-box {
        margin-top: 15px;
        padding: 15px;
    }
    
    .whatsapp-quote-content h3 {
        font-size: 16px;
    }
    
    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 13px;
    }
}
