/**
 * Terms Block Styles
 */

.block-terms__content {
    padding: 13.9375em 0 9.5625em;
    max-width: 52.375em;
    margin: auto;
}
@media screen and (max-width: 1024px) {
    .block-terms__content {
        padding: 8em 1em 5em;
        max-width: 100%;
        margin: auto;
    }
}

.block-terms__title {
    margin-bottom: 5.375em;
    display: block;
}

@media screen and (max-width: 1024px) {
    .block-terms__title {
        margin-bottom: 2em;
        display: block;
    }
}

.block-terms__description > * + * {
  margin-top: 2em; /* espaço entre blocos (p, ul, ol, h2...) */
}

@media screen and (max-width: 1024px) {
    .block-terms__description > * + * {
    margin-top: 1em;
    }
}

.block-terms__description p {
  margin: 0; /* zera o padrão */
}

.block-terms__description p + p {
  margin-top: 2em; /* espaço entre parágrafos */
}

@media screen and (max-width: 1024px) {
    .block-terms__description p + p {
        margin-top: 1em;
    }
}

/* se o editor usar <br>, dá um respiro também */
.block-terms__description br {
  display: block;
  content: "";
  margin-top: 1em;
}

.block-terms__description strong,
.block-terms__description b {
  font-weight: 700;
}

/* ---------------------------------------------------------------------------
   Legal pages (/privacy/, /cookies/, /terms/) — generated by
   scripts/build-legal.mjs. These are long-form reading documents, so the type
   here relaxes the site's tight display line-height. Nothing below is used by
   any other block: .block-terms is exclusive to the legal pages.
   --------------------------------------------------------------------------- */

/* .paragraph-l runs at line-height 1.2, which is right for a two-line pull
   quote and punishing across a 700-word policy section. */
.block-terms__description {
    line-height: 1.65;
}

.block-terms__description h2 {
    margin-top: 3em;
    margin-bottom: 1.25em;
}

.block-terms__description > h2:first-child {
    margin-top: 0;
}

.block-terms__description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-terms__description li {
    position: relative;
    padding-left: 1.5em;
}

.block-terms__description li + li {
    margin-top: 0.75em;
}

.block-terms__description li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.5em;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.block-terms__description a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition: color .3s ease;
}

.block-terms__description a:hover {
    color: var(--color-3, #C2644F);
}

.block-terms__description code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.875em;
    letter-spacing: 0;
    word-break: break-word;
}

.legal-effective {
    margin-top: -3.5em;
    margin-bottom: 4em;
    opacity: 0.6;
}

@media screen and (max-width: 1024px) {
    .legal-effective {
        margin-top: -1em;
        margin-bottom: 2.5em;
    }
}

/* An unfilled value in config/legal.json. Deliberately conspicuous: a legal
   page that quietly ships a blank where the controller's identity belongs is
   worse than one that says so. validate:legal fails while any remain. */
.legal-placeholder {
    display: inline-block;
    padding: 0.1em 0.5em;
    border: 1px dashed var(--color-3, #C2644F);
    color: var(--color-3, #C2644F);
    font-family: var(--font-primary);
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* Consent control, Cookie & Analytics Notice §7. */
.legal-consent {
    margin-top: 2em;
    padding: 2em;
    border: 1px solid var(--color-7, #03090D60);
}

.legal-consent__state {
    margin: 0 0 1.5em;
    font-family: var(--font-primary);
    font-size: 0.875em;
    text-transform: uppercase;
    letter-spacing: 0.04375em;
    line-height: 1;
}

.legal-consent__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
}

.legal-consent__note {
    margin: 1.5em 0 0;
    font-size: 0.9375em;
    opacity: 0.7;
}

.legal-consent__note:empty {
    display: none;
}

@media screen and (max-width: 1024px) {
    .legal-consent {
        padding: 1.25em;
    }
    .legal-consent__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}




