/* =========================
   CONFIRMACION DENUNCIA
========================= */
.complaint-body--confirm {
    padding-bottom: 60px;
}

.complaint-intro--confirm {
    margin-bottom: 34px;
}

.confirm-title {
    margin: 28px 0 28px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

.confirm-text {
    max-width: 680px;
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #222222;
}

.confirm-table-wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.confirm-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.confirm-table th,
.confirm-table td {
    border: 1px solid #a9bccb;
    padding: 18px 24px;
    vertical-align: middle;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
    color: #1f1f1f;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.confirm-table th {
    width: 42%;
    font-weight: 700;
    background: #ffffff;
}

.confirm-table td {
    width: 58%;
    font-weight: 400;
    word-break: break-word;
}

.confirm-actions {
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.confirm-actions__back,
.confirm-actions__submit {
    min-height: 48px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.confirm-actions__back {
    background: #d9d9d9;
    color: #111111;
}

.confirm-actions__back:hover {
    background: #d0d0d0;
}

.confirm-actions__submit {
    background: var(--form-blue);
    color: #ffffff;
}

.confirm-actions__submit:hover {
    background: #255b82;
}

.complaint-page--confirm {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.complaint-page--confirm .complaint-body--confirm {
    flex: 1 0 auto;
}

.complaint-page--confirm .confirm-actions {
    margin-top: auto;
}

.voice-modal__button {
    min-width: 160px;
    height: 38px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-align: center;
}

.voice-modal__button--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.voice-modal__actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE CONFIRMACION
========================= */
@media (max-width: 900px) {
    .confirm-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .confirm-table th,
    .confirm-table td {
        padding: 16px 18px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .confirm-title {
        font-size: 18px;
    }

    .confirm-text {
        font-size: 13px;
    }

    .confirm-table th,
    .confirm-table td {
        display: block;
        width: 100%;
        padding: 14px;
    }

    .confirm-table tr {
        display: block;
        margin-bottom: 10px;
    }

    .confirm-actions {
        grid-template-columns: 1fr;
    }

    .confirm-actions__back,
    .confirm-actions__submit {
        width: 100%;
    }
}