/* Estilos del Formulario de Contacto */
.contacto-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    color: #333;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.contacto-form textarea {
    height: 150px;
    resize: vertical;
}

.contacto-form button {
    background-color: #d4af37;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contacto-form button:hover {
    background-color: #b8971f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 151, 31, 0.3);
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #999;
}

.contacto-form select option {
    color: #333;
    background-color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-form {
        padding: 30px 20px;
    }
}