/* Estilos para la sección de contacto */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
}

.form-group input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: #f5f7fa;
    box-shadow: inset 2px 2px 5px #d1d9e6, 
                inset -2px -2px 5px #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: inset 1px 1px 2px #d1d9e6, 
                inset -1px -1px 2px #ffffff;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f5f7fa;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option:hover {
    background-image: var(--gradient-bg);
    color: white;
}

.package-option input[type="radio"] {
    margin: 0;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: #D44638;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-btn i {
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }
    
    .contact-container {
        padding: 20px;
    }
}