/* ClientHub Pro - Frontend Styles */
/* Estilos para cualquier elemento que aparezca en el frontend */

.clienthub-pro-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clienthub-pro-widget h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
}

.clienthub-pro-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.clienthub-pro-contact-form .form-group {
    margin-bottom: 15px;
}

.clienthub-pro-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.clienthub-pro-contact-form input,
.clienthub-pro-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.clienthub-pro-contact-form input:focus,
.clienthub-pro-contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.clienthub-pro-contact-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clienthub-pro-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.clienthub-pro-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.clienthub-pro-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .clienthub-pro-widget {
        padding: 15px;
    }
    
    .clienthub-pro-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 