﻿/* ==========================================================
CONTACTO – MISMO SISTEMA VISUAL QUE PARTICIPAR
========================================================== */

.pantalla-contacto {
    width: 100%;
    max-width: 520px;
    margin: 24px auto 0;
    background-color: var(--base);
    color: var(--texto-primari);
    padding:15px;
}

.contacto-card {
    background-color: #fff;
    border-radius: var(--radii-radi-mlg);
    padding: 40px
}

.contacto-text {
    text-align: center;
    margin-bottom: 24px;
}

.contacto-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color:#000;
}

.contacto-subtitle {
    margin-top: 12px;
       font-size: 16px;
    line-height: 22px;
        text-align: left;
    color: #000;
}


    .contacto-subtitle strong {
        font-weight: 700;
        font-size: 18px;
    }
.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #000;
}

.form-textarea {
    resize: vertical;
}


.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000;
    width: 100%;
}

    .form-check input[type="checkbox"] {
        margin-top: 2px;
    }

    .form-check label {
        flex: 1;
        line-height: 1.4;
    }

    .legal-link {
        display: inline;
        color: #111; /* o var(--resaltat) si los quieres amarillos */
        text-decoration: underline;
    }

.btn-contacto {
    height: 48px;
    background-color: var(--resaltat);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.form-ok {
    margin-top: 12px;
    color: #7ed957;
    text-align: center;
}

.form-errors {
    color: #ff6b6b;
}

.text-danger {
    color: #ff6b6b;
}

/* Centrar el captcha */
.captcha-wrapper {
    display: flex;
    justify-content: center; /* centra horizontal */
    margin: 12px 0 16px;
}
