/* Overlay oscuro */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Clase para mostrar el popup */
.contact-overlay.is-open {
    display: flex;
}

/* Caja del formulario */
.contact-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.contact-modal h2 {
    margin: 0 0 4px;
    text-align: center;
    color: #4a2c7a;
}

.contact-modal p.subtitle {
    margin: 0 0 24px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Campos */
.contact-field {
    margin-bottom: 12px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.contact-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Botones */
.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: flex-end;
}

.contact-btn-primary {
    background: #4a2c7a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    font-weight: 600;
}

.contact-btn-secondary {
    background: #666;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    font-weight: 500;
}

.contact-btn-primary:hover {
    filter: brightness(1.05);
}

.contact-btn-secondary:hover {
    filter: brightness(1.05);
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 24px 18px;
    }

    .contact-actions {
        flex-direction: column-reverse;
    }

    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
    }
}