/* =========================
   CONTÁCTANOS
========================= */

.contact-section {
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    margin-bottom: 20px;
}

.contact-title span {
    font-size: 28px;
    font-weight: 800;
}

.contact-text {
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
}

.contact-group label {
    font-size: 14px;
    font-weight: 600;
    text-align: left;      /* 👈 fuerza alineación izquierda */
    align-self: flex-start; /* 👈 evita centrado por flex */
}

.contact-group label {
    font-size: 14px;
    font-weight: 600;
}

/* INPUTS */
.contact-group input,
.contact-group textarea {
    border: 2px solid #c40000;
    border-radius: 24px;
    padding: 14px 18px;
    font-size: 15px;
    outline: none;
    resize: none;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
}

.contact-group input:focus,
.contact-group textarea:focus {
    border-color: #ff0000;
}

/* BOTONES */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.contact-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
}

/* Enviar */
.contact-btn-send {
    background: #000000;
    color: #fff;
}

/* Volver */
.contact-btn-back {
    background: transparent;
    border: 2px solid #c40000;
    color: #000000;
}

/* Hover */
.contact-btn-send:hover {
    background: #a80000;
}

.contact-btn-back:hover {
    background: #c40000;
    color: #fff;
}

@media (max-width: 768px) {

    .contact-title span {
        font-size: 22px;
    }

    .contact-text {
        font-size: 14px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }
}
.contact-alert {
    display: none;
    max-width: 620px;
    margin: 24px auto 0;
    padding: 18px 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-family: inherit;
}

.contact-alert-success {
    background: #e9f7ef;
    border-left: 6px solid #2e7d32;
    color: #1b5e20;
}

.contact-alert-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-alert-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-alert-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #1b5e20;
}

.contact-alert-close:hover {
    opacity: 0.7;
}

