/* ======================================================
       TÉRMINOS Y CONDICIONES (mismos estilos, sin inline)
       + ajuste de anclaje para que el header no tape la sección
       ====================================================== */

/* Ajuste global para anclas (cuando haces click en #sec-x) */
html {
    scroll-padding-top: 8.25rem;
    /* súbelo/bájalo según altura real del header */
}

/* Ajuste extra por sección (por si algún navegador no respeta scroll-padding) */
.tc__section {
    scroll-margin-top: 8.25rem;
}

.tc__header {
    margin-bottom: 2.5rem;
}

.tc__kicker {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.tc__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.tc__lead {
    max-width: 72ch;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.tc__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tc__article {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
    padding: clamp(1.25rem, 2.5vw, 2.25rem);
    min-width: 0;
}

.tc__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(231, 76, 60, 0.35);
    background: rgba(231, 76, 60, 0.06);
    color: var(--color-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.tc__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
}

.tc__toc {
    margin-bottom: 1.75rem;
}

.tc__tocTitle {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.tc__tocList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
}

.tc__section {
    padding-top: 1.5rem;
}

.tc__section--first {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tc__h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.tc__gridList {
    display: grid;
    gap: 0.5rem;
}

.tc__ol {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.25rem;
    list-style: decimal;
    margin: 0;
}

.tc__callout {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--color-primary);
    background: rgba(0, 0, 0, 0.02);
}

.tc__calloutTitle {
    margin-bottom: 0.75rem;
}

.tc__contact {
    display: grid;
    gap: 0.6rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
    margin-top: 0;
}

.tc__footer {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tc__footerMeta {
    margin-bottom: 0.25rem;
}

.tc__actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tc__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: transparent;
}

.tc__btnUp {
    color: var(--color-primary);
    font-weight: 600;
}

.tc__btn--primary {
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: var(--color-primary);
}

.tc__aside {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
    padding: 1.25rem;
}

.tc__asideTitle {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--color-black);
}

.tc__asideText {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.tc__asideLinks {
    display: grid;
    gap: 0.5rem;
}

.tc__asideLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-black);
}

.tc__bullet {
    color: var(--color-primary);
    font-weight: 700;
}

.tc__asideDivider {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tc__pLast {
    margin-bottom: 0;
}

.tc__mt {
    margin-top: 1rem;
}

.tc__mbSm {
    margin-bottom: 0.75rem;
}

/* Responsive sin tocar el CSS global: media query embebida para ajustar el layout */
@media (min-width: 992px) {
    .tc__layout {
        grid-template-columns: 1.55fr 0.75fr;
        align-items: start;
    }

    .tc__aside[aria-label="Nota informativa"] {
        position: sticky;
        top: 7.5rem;
    }
}