:root {
    --portal-ink: #274f58;
    --portal-ink-soft: #3d777c;
    --portal-teal: #3e8589;
    --portal-teal-dark: #2f676d;
    --portal-coral: #d9707a;
    --portal-coral-deep: #bd5866;
    --portal-coral-bright: #f19b9c;
    --portal-sun: #f5d4c9;
    --portal-cream: #fbedeb;
    --portal-paper: #fffaf7;
    --portal-muted: #617477;
    --portal-line: rgba(39, 79, 88, 0.14);
    --portal-serif: "Fraunces", Georgia, serif;
    --portal-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--portal-cream);
}

body.portal-page {
    margin: 0;
    color: var(--portal-ink);
    background: var(--portal-paper);
    font-family: var(--portal-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.portal-page img {
    display: block;
    max-width: 100%;
}

.portal-page a {
    color: inherit;
    text-decoration: none;
}

.portal-page button {
    font: inherit;
}

.portal-page .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.portal-width {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
}

.portal-header {
    position: fixed;
    z-index: 20;
    top: 0;
    width: 100%;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.portal-header.is-scrolled {
    color: var(--portal-ink);
    border-color: var(--portal-line);
    background: rgba(251, 237, 235, 0.94);
    box-shadow: 0 8px 28px rgba(39, 79, 88, 0.1);
    backdrop-filter: blur(16px);
}

.portal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 30px;
}

.portal-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.portal-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: #fff;
}

.portal-header.is-scrolled .portal-brand-mark {
    border-color: var(--portal-line);
}

.portal-brand-mark img {
    width: 37px;
    height: 36px;
    object-fit: contain;
}

.portal-brand-lockup {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.portal-brand-lockup small {
    margin-top: 4px;
    color: var(--portal-coral-deep);
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portal-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 45, 51, 0.22);
    backdrop-filter: blur(10px);
    transition: border-color 260ms ease, background-color 260ms ease;
}

.portal-header.is-scrolled .portal-nav {
    border-color: var(--portal-line);
    background: rgba(255, 250, 247, 0.55);
}

.portal-nav a {
    position: relative;
    padding: 8px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    font-weight: 600;
    transition: color 180ms ease, background-color 180ms ease;
}

.portal-header.is-scrolled .portal-nav a {
    color: rgba(39, 79, 88, 0.74);
}

.portal-nav a:hover,
.portal-nav a:focus-visible,
.portal-header.is-scrolled .portal-nav a:hover,
.portal-header.is-scrolled .portal-nav a:focus-visible {
    color: var(--portal-coral);
    background: rgba(241, 155, 156, 0.12);
}

/* Página atual (ex.: Saber mais) */
.portal-nav a.is-active {
    color: #fff;
    background: rgba(241, 155, 156, 0.22);
}

.portal-header.is-scrolled .portal-nav a.is-active {
    color: var(--portal-coral-deep);
    background: rgba(241, 155, 156, 0.16);
}

.portal-language-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Ações fora da pílula (igual à homepage) */
.portal-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.portal-language-control::after {
    position: absolute;
    right: 13px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    pointer-events: none;
    transform: rotate(45deg) translateY(-50%);
    opacity: 0.7;
}

.portal-language-selector {
    min-width: 64px;
    min-height: 36px;
    padding: 0 26px 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    outline: 0;
    color: #fff;
    background: rgba(39, 79, 88, 0.12);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
}

.portal-language-selector:hover,
.portal-language-selector:focus-visible {
    border-color: var(--portal-coral);
    color: var(--portal-coral);
}

.portal-language-selector option {
    color: var(--portal-ink);
    background: var(--portal-paper);
}

.portal-header.is-scrolled .portal-language-selector {
    border-color: rgba(39, 79, 88, 0.26);
    color: var(--portal-ink);
    background: rgba(255, 250, 247, 0.72);
}

.portal-page .portal-nav-cta,
.portal-page .portal-mobile-cta {
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--portal-coral-deep);
    box-shadow: 0 6px 18px rgba(169, 71, 88, 0.3);
    transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.portal-page .portal-nav-cta:hover,
.portal-page .portal-nav-cta:focus-visible,
.portal-page .portal-mobile-cta:hover,
.portal-page .portal-mobile-cta:focus-visible {
    color: #fff !important;
    background: #a94758;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(169, 71, 88, 0.4);
}

.portal-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    padding: 8px;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.portal-menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px 0 0 auto;
    background: currentColor;
    transition: transform 180ms ease, width 180ms ease;
}

.portal-menu-toggle span:last-child {
    width: 13px;
}

.portal-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.portal-menu-toggle[aria-expanded="true"] span:last-child {
    width: 20px;
    transform: translateY(-3px) rotate(-45deg);
}

.portal-mobile-nav {
    display: none;
}

.portal-hero {
    position: relative;
    min-height: 515px;
    overflow: hidden;
    color: #fff;
    background-color: var(--portal-ink);
    background-image: linear-gradient(90deg, rgba(39, 79, 88, 0.97) 7%, rgba(39, 79, 88, 0.78) 48%, rgba(39, 79, 88, 0.3) 100%),
        var(--portal-hero-image);
    background-position: center;
    background-size: cover;
}

.portal-hero::after {
    position: absolute;
    right: 8%;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(241, 155, 156, 0.35);
    border-radius: 50%;
    content: "";
}

.portal-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 515px;
    padding-top: 120px;
    padding-bottom: 65px;
}

.portal-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 600;
}

.portal-breadcrumbs a:hover {
    color: var(--portal-sun);
}

.portal-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--portal-sun);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portal-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--portal-coral);
    box-shadow: 0 0 0 5px rgba(241, 155, 156, 0.2);
    content: "";
}

.portal-hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 6.3rem);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.portal-hero h1 em {
    color: var(--portal-sun);
    font-family: var(--portal-serif);
    font-style: italic;
}

.portal-hero-lead {
    max-width: 560px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.55;
}

.portal-main {
    padding: 82px 0 110px;
}

.portal-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: start;
    margin-bottom: 77px;
}

.portal-intro-grid h2,
.portal-article h2 {
    margin: 0 0 20px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.portal-intro-grid h2 em,
.portal-article h2 em {
    color: var(--portal-coral);
    font-family: var(--portal-serif);
    font-style: italic;
}

.portal-intro-lead {
    margin: 0;
    color: var(--portal-ink);
    font-family: var(--portal-serif);
    font-size: 21px;
    line-height: 1.35;
}

.portal-intro-grid > div:last-child p,
.portal-article p {
    color: var(--portal-muted);
    font-size: 15px;
    line-height: 1.7;
}

.portal-intro-grid > div:last-child p:first-child {
    margin-top: 5px;
}

.portal-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 85px;
    border-top: 1px solid var(--portal-line);
    border-bottom: 1px solid var(--portal-line);
}

.portal-fact {
    min-height: 132px;
    padding: 22px 21px 22px 0;
    border-right: 1px solid var(--portal-line);
}

.portal-fact + .portal-fact {
    padding-left: 21px;
}

.portal-fact:last-child {
    border-right: 0;
}

.portal-fact small {
    display: block;
    margin-bottom: 12px;
    color: var(--portal-teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portal-fact strong {
    display: block;
    color: var(--portal-ink);
    font-family: var(--portal-serif);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.05;
}

.portal-fact span {
    display: block;
    margin-top: 5px;
    color: var(--portal-muted);
    font-size: 11px;
}

.portal-article {
    max-width: 790px;
    margin: 0 auto;
}

.portal-article > h2 {
    margin-top: 70px;
}

.portal-article > h2:first-child {
    margin-top: 0;
}

.portal-article h3 {
    margin: 32px 0 9px;
    font-family: var(--portal-serif);
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.portal-article p {
    margin: 0 0 17px;
}

.portal-highlight {
    margin: 38px 0;
    padding: 28px 30px;
    border-left: 3px solid var(--portal-coral);
    background: var(--portal-cream);
}

.portal-highlight p {
    margin: 0;
    color: var(--portal-ink);
    font-family: var(--portal-serif);
    font-size: 22px;
    line-height: 1.25;
}

.portal-highlight small {
    display: block;
    margin-top: 13px;
    color: var(--portal-coral);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portal-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 26px 0 38px;
}

.portal-compare-card {
    padding: 24px;
    border: 1px solid var(--portal-line);
    border-radius: 5px;
    background: #fff;
}

.portal-compare-card.featured {
    color: #fff;
    border-color: var(--portal-ink-soft);
    background: var(--portal-ink-soft);
}

.portal-compare-card small {
    display: block;
    margin-bottom: 14px;
    color: var(--portal-teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portal-compare-card.featured small {
    color: var(--portal-sun);
}

.portal-compare-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
}

.portal-compare-card p {
    margin: 0;
    font-size: 13px;
}

.portal-compare-card.featured p {
    color: rgba(255, 255, 255, 0.68);
}

.portal-offer {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    margin: 59px 0;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: var(--portal-ink);
    box-shadow: 0 20px 50px rgba(39, 79, 88, 0.18);
}

.portal-offer-image {
    min-height: 390px;
    background-image: var(--portal-offer-image);
    background-position: center;
    background-size: cover;
}

.portal-offer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 42px;
}

.portal-offer-copy .portal-kicker {
    color: var(--portal-sun);
}

.portal-offer-copy h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--portal-serif);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.portal-offer-copy p {
    max-width: 365px;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.portal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 400px;
    margin: 0 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-detail {
    padding: 13px 12px 13px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-detail:nth-child(even) {
    padding-left: 12px;
    border-right: 0;
}

.portal-detail small {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-detail strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-family: var(--portal-serif);
    font-size: 17px;
    font-weight: 500;
}

.portal-page .portal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    min-height: 47px;
    padding: 13px 19px;
    border-radius: 999px;
    color: var(--portal-ink);
    background: var(--portal-coral-bright);
    font-size: 12px;
    font-weight: 700;
    transition: transform 200ms ease, background-color 200ms ease;
}

.portal-button span {
    font-size: 18px;
    font-weight: 400;
    line-height: 0;
}

.portal-page .portal-button:hover,
.portal-page .portal-button:focus-visible {
    background: #f7b5b4;
    transform: translateY(-3px);
}

.portal-page .portal-button-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
}

.portal-page .portal-button-secondary:hover,
.portal-page .portal-button-secondary:focus-visible {
    color: var(--portal-ink);
    background: #fff;
}

.portal-article .portal-button {
    margin-top: 7px;
}

.portal-faq {
    margin: 35px 0 0;
    border-top: 1px solid var(--portal-line);
}

.portal-faq details {
    padding: 18px 0;
    border-bottom: 1px solid var(--portal-line);
}

.portal-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--portal-ink);
    font-family: var(--portal-serif);
    font-size: 18px;
    font-weight: 600;
    list-style: none;
}

.portal-faq summary::-webkit-details-marker {
    display: none;
}

.portal-faq summary::after {
    color: var(--portal-coral);
    content: "+";
    font-family: var(--portal-sans);
    font-size: 22px;
    font-weight: 400;
}

.portal-faq details[open] summary::after {
    content: "−";
}

.portal-faq details p {
    max-width: 680px;
    margin: 12px 30px 0 0;
    font-size: 13px;
}

.portal-related {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 35px;
}

.portal-page .portal-related-card {
    min-height: 165px;
    padding: 21px;
    border: 1px solid var(--portal-line);
    background: var(--portal-cream);
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.portal-page .portal-related-card:hover,
.portal-page .portal-related-card:focus-visible {
    color: #fff;
    background: var(--portal-ink-soft);
    transform: translateY(-4px);
}

.portal-related-card small {
    color: var(--portal-teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.portal-related-card:hover small,
.portal-related-card:focus-visible small {
    color: var(--portal-sun);
}

.portal-related-card h3 {
    margin: 23px 0 0;
    font-size: 23px;
}

.portal-related-card span {
    display: inline-block;
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
}

.portal-cta {
    position: relative;
    overflow: hidden;
    margin: 80px 0 0;
    padding: 56px 60px;
    border-radius: 8px;
    color: #fff;
    background: var(--portal-ink-soft);
}

.portal-cta::after {
    position: absolute;
    right: -70px;
    bottom: -135px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(241, 155, 156, 0.38);
    border-radius: 50%;
    content: "";
}

.portal-cta h2 {
    max-width: 560px;
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 0.92;
}

.portal-cta h2 em {
    color: var(--portal-sun);
    font-family: var(--portal-serif);
    font-style: italic;
}

.portal-cta p {
    max-width: 435px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.portal-footer {
    color: rgba(255, 255, 255, 0.62);
    background: var(--portal-ink);
}

.portal-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 95px;
}

.portal-footer p {
    margin: 0;
    font-family: var(--portal-serif);
    font-size: 16px;
}

.portal-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11px;
}

.portal-footer-links a:hover,
.portal-footer-links a:focus-visible {
    color: #fff;
}

.portal-page a:focus-visible,
.portal-page button:focus-visible,
.portal-page summary:focus-visible {
    outline: 3px solid rgba(217, 112, 122, 0.58);
    outline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    z-index: 50;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1020px;
    margin: 0 auto;
    padding: 16px 19px;
    border: 1px solid rgba(39, 79, 88, 0.14);
    border-radius: 10px;
    color: var(--portal-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 15px 45px rgba(39, 79, 88, 0.24);
    transition: transform 350ms ease;
    backdrop-filter: blur(18px);
}

.translate-y-full {
    transform: translateY(calc(100% + 30px));
}

.translate-y-0 {
    transform: translateY(0);
}

.cookie-banner strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
}

.cookie-banner p {
    margin: 0;
    color: var(--portal-muted);
    font-size: 11px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.cookie-actions button,
.cookie-actions a {
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
}

.cookie-actions button:first-child {
    border-color: var(--portal-line);
    color: var(--portal-muted);
    background: transparent;
}

.cookie-actions button:nth-child(2) {
    color: #fff;
    background: var(--portal-teal);
}

.cookie-actions a {
    color: var(--portal-teal);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .portal-width {
        width: calc(100% - 34px);
    }

    .portal-header-inner {
        min-height: 73px;
    }

    .portal-nav {
        display: none;
    }

    .portal-language-control {
        display: inline-flex;
        margin: 0 0 9px;
    }

    .portal-menu-toggle {
        display: block;
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .portal-nav-cta {
        display: none;
    }

    .portal-mobile-nav {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        padding: 0 17px;
        border-top: 0 solid var(--portal-line);
        color: var(--portal-ink);
        background: rgba(251, 237, 235, 0.96);
        backdrop-filter: blur(18px) saturate(1.3);
        box-shadow: 0 18px 40px rgba(39, 79, 88, 0.14);
        opacity: 0;
        transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 240ms ease, padding 300ms ease, border-color 300ms ease;
    }

    .portal-mobile-nav.is-open {
        max-height: 400px;
        padding-top: 10px;
        padding-bottom: 16px;
        border-top-width: 1px;
        opacity: 1;
    }

    .portal-mobile-nav a {
        padding: 14px 2px;
        border-bottom: 1px solid var(--portal-line);
        font-size: 14px;
        font-weight: 600;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 260ms ease, transform 260ms ease, color 180ms ease;
    }

    .portal-mobile-nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .portal-mobile-nav.is-open a:nth-child(1) { transition-delay: 40ms; }
    .portal-mobile-nav.is-open a:nth-child(2) { transition-delay: 80ms; }
    .portal-mobile-nav.is-open a:nth-child(3) { transition-delay: 120ms; }
    .portal-mobile-nav.is-open a:nth-child(4) { transition-delay: 160ms; }

    .portal-mobile-nav a:hover,
    .portal-mobile-nav a:focus-visible {
        color: var(--portal-coral-deep);
    }

    .portal-mobile-nav .portal-language-selector {
        min-height: 40px;
        border-color: rgba(39, 79, 88, 0.28);
        color: var(--portal-ink);
        background: rgba(255, 250, 247, 0.8);
    }

    .portal-mobile-nav a:last-child {
        border-bottom: 0;
    }

    .portal-mobile-cta {
        margin-top: 10px;
        padding: 13px 14px !important;
        border-bottom: 0 !important;
        text-align: center;
    }

    .portal-hero,
    .portal-hero-inner {
        min-height: 480px;
    }

    .portal-hero {
        background-image: linear-gradient(90deg, rgba(39, 79, 88, 0.94) 0%, rgba(39, 79, 88, 0.65) 100%),
            var(--portal-hero-image);
    }

    .portal-hero-inner {
        padding-top: 105px;
        padding-bottom: 48px;
    }

    .portal-hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .portal-hero-lead {
        font-size: 15px;
    }

    .portal-main {
        padding: 60px 0 75px;
    }

    .portal-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 55px;
    }

    .portal-fact-grid {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 60px;
    }

    .portal-fact,
    .portal-fact + .portal-fact {
        min-height: 115px;
        padding: 17px 15px 17px 0;
        border-right: 1px solid var(--portal-line);
    }

    .portal-fact:nth-child(2n) {
        padding-left: 15px;
        border-right: 0;
    }

    .portal-fact:nth-child(n + 3) {
        border-top: 1px solid var(--portal-line);
    }

    .portal-fact strong {
        font-size: 18px;
    }

    .portal-article h3 {
        font-size: 24px;
    }

    .portal-compare,
    .portal-related {
        grid-template-columns: 1fr;
    }

    .portal-offer {
        grid-template-columns: 1fr;
    }

    .portal-offer-image {
        min-height: 260px;
    }

    .portal-offer-copy {
        padding: 31px 24px;
    }

    .portal-offer-copy h2 {
        font-size: 36px;
    }

    .portal-cta {
        margin-top: 60px;
        padding: 38px 24px;
    }

    .portal-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 145px;
        padding: 26px 0;
    }

    .cookie-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 15px;
    }

    .cookie-actions {
        flex-wrap: wrap;
    }
}

/* Contrato mobile final para páginas de portal, ofertas e destinos. */
@media (max-width: 430px) {
    .portal-page {
        overflow-x: clip;
    }

    .portal-width {
        width: calc(100% - 28px);
        max-width: none;
    }

    .portal-header-inner {
        min-height: 68px;
        gap: 10px;
    }

    .portal-brand-lockup {
        max-width: 148px;
        font-size: 11px;
    }

    .portal-brand-lockup small {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .portal-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .portal-mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    .portal-hero,
    .portal-hero-inner {
        min-height: 455px;
    }

    .portal-hero-inner {
        padding-top: 96px;
        padding-bottom: 42px;
    }

    .portal-hero h1 {
        max-width: 100%;
        font-size: clamp(2.7rem, 14vw, 4.1rem);
        overflow-wrap: anywhere;
    }

    .portal-main {
        padding: 54px 0 68px;
    }

    .portal-intro-grid,
    .portal-compare,
    .portal-related,
    .portal-offer {
        min-width: 0;
    }

    .portal-fact-grid {
        grid-template-columns: 1fr;
    }

    .portal-fact,
    .portal-fact + .portal-fact {
        min-height: 0;
        padding: 17px 0;
        border-right: 0;
    }

    .portal-fact + .portal-fact {
        border-top: 1px solid var(--portal-line);
    }

    .portal-offer-image {
        min-height: 220px;
    }

    .portal-offer-copy {
        padding: 27px 21px;
    }

    .portal-offer-copy h2,
    .portal-article h2 {
        font-size: clamp(2rem, 11vw, 2.8rem);
        overflow-wrap: anywhere;
    }

    .portal-button,
    .portal-cta a,
    .portal-mobile-cta,
    .portal-language-selector,
    .cookie-actions button,
    .cookie-actions a {
        min-height: 44px;
    }

    .portal-cta {
        padding: 31px 21px;
    }
}

/* Editorial comparisons remain readable on narrow screens. */
.portal-table-wrap { max-width: 100%; overflow-x: auto; margin: 28px 0; }
.portal-table-wrap table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.6; }
.portal-table-wrap caption { text-align: left; font-weight: 700; padding-bottom: 14px; }
.portal-table-wrap th, .portal-table-wrap td { text-align: left; vertical-align: top; padding: 15px; border-bottom: 1px solid #d9e2de; min-width: 130px; }
.portal-table-wrap thead { background: var(--portal-cream); }
.portal-editorial-note { margin-top: 36px !important; font-size: 13px; color: var(--portal-muted); }
