/* css/contacto.css */
@import url('index.css');
.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
}
.contact-container {
    max-width: 650px;
    margin: 0 auto;
}
.contact-container h2 {
    font-size: 28px;
    color: #0f172a;
    text-align: center;
    margin-bottom: 10px;
}
.contact-container .desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 35px;
}
.direct-form {
    background-color: #f8fafc;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.f-group {
    margin-bottom: 20px;
}
.f-group label {
    display: block;
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 500;
}
.f-group input, .f-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 15px;
    color: #0f172a;
    font-family: inherit;
}
.btn-send {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.btn-send:hover {
    background-color: #1e293b;
}
