/* ==========================================================
   CONTACTO
========================================================== */

.contacto {
    position: relative;
    min-height: calc(100vh - 200px);
    padding: 150px 8% 120px;
    background:
        radial-gradient(circle at 75% 40%, rgba(155, 77, 202, 0.28), transparent 35%),
        #0b0710;
    color: #ffffff;
    overflow: hidden;
}

.contacto-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contacto-label {
    color: #c98cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.contacto h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(55px, 7vw, 90px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 1px;
    text-shadow:
        0 0 5px #ffffff,
        0 0 15px rgba(201, 140, 255, 0.5);
}

.contacto-info > p:not(.contacto-label) {
    max-width: 450px;
    margin-top: 35px;
    color: #a99eaf;
    font-size: 14px;
    line-height: 1.8;
}

.contacto-email {
    display: inline-block;
    margin-top: 30px;
    color: #c98cff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.contacto-email:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(201, 140, 255, 0.8);
}

.contacto-info .contacto-email + .contacto-email {
    margin-top: 12px;
    font-size: 11px;
}

/* ==========================================================
   FORMULARIO DE CONTACTO
========================================================== */

.contacto-formulario {
    padding: 40px;
    background: rgba(17, 11, 25, 0.75);
    border: 1px solid rgba(201, 140, 255, 0.25);
    border-radius: 8px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(155, 77, 202, 0.08);
}

.contacto-formulario form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 9px;
    color: #c98cff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    background: rgba(11, 7, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    outline: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #706776;
}

.form-group select {
    color: #a99eaf;
    cursor: pointer;
}

.form-group select option {
    background: #110b19;
    color: #ffffff;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9b4dca;
    background: rgba(11, 7, 16, 0.9);
    box-shadow:
        0 0 8px rgba(155, 77, 202, 0.2),
        0 0 18px rgba(201, 140, 255, 0.08);
}

.contacto-formulario .button {
    width: fit-content;
    margin-top: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}


/* ==========================================================
   CONTACTO — PÁGINA DE GRACIAS
========================================================== */

.contacto--gracias {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gracias-content {
    max-width: 500px;
}

.gracias-content .button {
    margin-top: 40px;
}