/* ===== SECCIÓN PRINCIPAL ===== */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* ===== CONTENEDOR FLEX ===== */
.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

/* ===== TEXTO IZQUIERDA ===== */
.contact-text {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.contact-description {
    font-size: 40px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.4;
    color: #000000;
}

/* ===== FORMULARIO ===== */
.contact-form-card {
    background: #dad9d9;
    border: 3px solid var(--primary-color);
    width: 600px;
    padding: 5%;
    border-radius: 25px;
    color: rgb(0, 0, 0);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.contact-form-card label {
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.contact-input {
    width: 100%;
    padding: 12px;
    margin: 6px 0 15px 0;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 15px;
    outline: none;
}

.contact-textarea {
    width: 100%;
    height: 90px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    padding: 12px;
    outline: none;
    resize: none;
    margin-top: 8px;
}

.contact-submit {
    margin-top: 20px;
    width: 50%;
    padding: 14px;
    border: none;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 800;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.25s;
    align-self: flex-end;
}

.contact-submit:hover {
    background: #f2f2f2;
    transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-text {
        order: 2;
    }

    .contact-form-card {
        order: 1;
        width: 90%;
        max-width: 420px;
    }

    .contact-title {
        font-size: 38px;
    }

    .contact-description {
        font-size: 22px;
        max-width: 100%;
    }
}