:root {
    --blue-950: #092638;
    --blue-900: #123d5a;
    --blue-800: #1b506f;
    --blue-100: #e8f0f4;
    --sand: #d8c8b8;
    --cream: #f7f5f1;
    --white: #ffffff;
    --text: #17303f;
    --muted: #657782;
    --border: #dce5e9;
    --shadow: 0 18px 50px rgba(9, 38, 56, .10);
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
}

body,
button,
input,
textarea,
select {
    font: inherit;
}

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

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 999;
    padding: 12px 16px;
    color: var(--white);
    background: var(--blue-950);
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    background: rgba(9, 38, 56, .96);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.05;
}

.site-brand strong {
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.site-brand span {
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .62rem;
    opacity: .72;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-menu a {
    padding: 28px 0 24px;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    font-size: .91rem;
}

.main-menu a:hover,
.main-menu a.active {
    border-color: var(--sand);
}

.menu-button {
    display: none;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 7px;
    color: var(--white);
    background: transparent;
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(92, 151, 183, .55), transparent 34%),
        linear-gradient(125deg, #082638 0%, #174f70 56%, #93b6c8 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 27, 41, .74), rgba(5, 27, 41, .08)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 119px,
            rgba(255, 255, 255, .025) 120px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

.hero h1 {
    max-width: 850px;
    margin: 18px 0 24px;
    font-family: Georgia, serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.04em;
}

.hero-text {
    max-width: 650px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, .84);
}

.eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .72rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--blue-900);
}

.button-light {
    color: var(--blue-950);
    background: var(--white);
}

.section {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

.section-soft {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100% - 1240px) / 2));
    background: var(--cream);
}

.section-grid {
    display: grid;
    gap: 70px;
}

.two-columns {
    grid-template-columns: .9fr 1.1fr;
}

.section h2,
.internal-hero h1,
.not-found h1 {
    margin: 0 0 22px;
    font-family: Georgia, serif;
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.08;
}

.section p,
.content-main p,
.legal-content p {
    line-height: 1.75;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue-900);
    font-weight: 700;
}

.centered {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 320px;
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--white);
}

.service-card > span {
    color: var(--blue-800);
    font-size: .78rem;
    font-weight: 700;
}

.service-card h3 {
    margin: 55px 0 16px;
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue-900);
    font-weight: 700;
}

.region-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 20px;
    margin-top: 45px;
}

.region-card {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    padding: 38px;
    color: var(--white);
    background-size: cover;
}

.region-floripa {
    background:
        linear-gradient(rgba(8, 38, 56, .2), rgba(8, 38, 56, .8)),
        linear-gradient(145deg, #6fa4bc, #0c405d);
}

.region-sp {
    background:
        linear-gradient(rgba(8, 38, 56, .1), rgba(8, 38, 56, .86)),
        linear-gradient(145deg, #8c9da7, #173c52);
}

.region-card h3 {
    max-width: 560px;
    margin: 8px 0 22px;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

.region-card a {
    font-weight: 700;
}

.international-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid var(--border);
}

.international-section > div {
    max-width: 760px;
}

.callout-section {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100% - 1240px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--white);
    background: var(--blue-900);
}

.callout-section h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.internal-hero {
    min-height: 440px;
    display: grid;
    align-items: center;
    padding: 80px max(20px, calc((100% - 1240px) / 2));
    color: var(--white);
    background:
        radial-gradient(circle at 80% 10%, rgba(137, 187, 211, .5), transparent 35%),
        linear-gradient(130deg, #082638, #1b5677);
}

.internal-hero.compact {
    min-height: 350px;
}

.internal-hero > div {
    max-width: 850px;
}

.internal-hero p {
    max-width: 650px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, .7fr);
    gap: 70px;
    align-items: start;
}

.content-main h2,
.legal-content h2 {
    margin: 45px 0 16px;
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
}

.content-main h2:first-child {
    margin-top: 0;
}

.contact-card {
    position: sticky;
    top: 110px;
    padding: 34px;
    border: 1px solid var(--border);
    background: var(--cream);
}

.contact-card h2 {
    font-size: 2rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.property-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

.property-card > a {
    text-decoration: none;
}

.property-image {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--muted);
    background: var(--blue-100);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    padding: 24px;
}

.property-location {
    margin: 0 0 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7rem;
}

.property-content h2 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: .85rem;
}

.property-price {
    color: var(--blue-900);
    font-size: 1.1rem;
}

.public-empty-state {
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--cream);
}

.public-empty-state h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-content {
    max-width: 900px;
}

.not-found {
    min-height: 650px;
    display: grid;
    place-items: center;
    padding: 50px 20px;
    text-align: center;
    background: var(--cream);
}

.site-footer {
    padding: 80px max(20px, calc((100% - 1240px) / 2)) 30px;
    color: rgba(255, 255, 255, .75);
    background: var(--blue-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 70px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-grid strong {
    color: var(--white);
}

.footer-grid a {
    text-decoration: none;
}

.footer-brand {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .8rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--white);
    background: #176b4a;
    box-shadow: var(--shadow);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 700;
}

@media (max-width: 980px) {
    .menu-button {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        padding: 15px 20px 25px;
        background: var(--blue-950);
    }

    .main-menu.open {
        display: grid;
    }

    .main-menu a {
        padding: 12px 0;
        border-bottom-width: 1px;
    }

    .two-columns,
    .content-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .region-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }

    .international-section,
    .callout-section {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 28px, 1240px);
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: min(100% - 32px, 1240px);
    }

    .hero h1 {
        font-size: 3.15rem;
    }

    .section {
        width: min(100% - 32px, 1240px);
        padding: 75px 0;
    }

    .section-soft,
    .callout-section {
        width: 100%;
        padding: 75px 16px;
    }

    .service-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }

    .region-card {
        min-height: 380px;
        padding: 28px;
    }

    .internal-hero {
        min-height: 390px;
        padding-inline: 16px;
    }

    .public-empty-state {
        padding: 50px 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}

/* Premium home */

.premium-hero {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    color: var(--white);
    background: var(--blue-950);
}

.premium-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(70px, 9vw, 145px)
        clamp(30px, 7vw, 115px)
        70px
        max(30px, calc((100vw - 1240px) / 2));
}

.premium-hero h1 {
    max-width: 800px;
    margin: 17px 0 26px;
    font-family: Georgia, serif;
    font-size: clamp(3.5rem, 6.6vw, 7.4rem);
    font-weight: 400;
    line-height: .91;
    letter-spacing: -.055em;
}

.premium-hero-text {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.7;
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
    background: transparent;
}

.button-outline-light:hover {
    background: rgba(255, 255, 255, .08);
}

.premium-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: clamp(55px, 8vw, 110px);
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.premium-hero-stats strong,
.premium-hero-stats span {
    display: block;
}

.premium-hero-stats strong {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.premium-hero-stats span {
    margin-top: 7px;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    line-height: 1.45;
}

.premium-hero-image {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #d9dde0;
}

.premium-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(9, 38, 56, .2),
            transparent 30%
        ),
        linear-gradient(
            0deg,
            rgba(9, 38, 56, .42),
            transparent 42%
        );
}

.premium-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-signature {
    position: absolute;
    right: 36px;
    bottom: 36px;
    z-index: 2;
    max-width: 290px;
    padding: 22px 24px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(9, 38, 56, .45);
    backdrop-filter: blur(12px);
}

.hero-signature span,
.hero-signature strong {
    display: block;
}

.hero-signature span {
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .65rem;
    opacity: .72;
}

.hero-signature strong {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
}

.premium-intro {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(90px, 11vw, 160px) 0;
    display: grid;
    grid-template-columns: 90px minmax(0, .95fr) minmax(0, .75fr);
    gap: clamp(35px, 6vw, 90px);
    align-items: start;
}

.premium-intro-number {
    color: var(--blue-800);
    font-family: Georgia, serif;
    font-size: 1.1rem;
}

.premium-intro h2,
.premium-services h2,
.premium-regions h2,
.premium-story h2,
.premium-global h2,
.premium-final-cta h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.7rem, 5.2vw, 5.4rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.premium-intro-copy p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.8;
}

.premium-link {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    color: var(--blue-900);
    text-decoration: none;
    font-weight: 700;
}

.premium-editorial {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    min-height: 760px;
    background: var(--cream);
}

.editorial-image {
    min-height: 700px;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.editorial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(55px, 7vw, 110px);
}

.editorial-copy h2 {
    margin: 0 0 30px;
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 4.7vw, 4.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.editorial-copy > p {
    color: var(--muted);
    line-height: 1.8;
}

.editorial-points {
    display: grid;
    gap: 18px;
    margin: 38px 0;
}

.editorial-points div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
}

.editorial-points strong {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.editorial-points span {
    color: var(--muted);
    line-height: 1.55;
}

.premium-services {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(100px, 12vw, 180px) 0;
}

.premium-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr);
    gap: clamp(45px, 8vw, 120px);
    align-items: end;
    margin-bottom: 65px;
}

.premium-section-heading > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.premium-service-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.premium-service-card:hover {
    z-index: 2;
    color: var(--white);
    background: var(--blue-900);
    transform: translateY(-8px);
}

.premium-service-card > span {
    font-size: .75rem;
    letter-spacing: .1em;
}

.premium-service-card h3 {
    margin: auto 0 20px;
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
}

.premium-service-card p {
    min-height: 90px;
    color: var(--muted);
    line-height: 1.65;
}

.premium-service-card:hover p {
    color: rgba(255, 255, 255, .72);
}

.premium-service-card strong {
    margin-top: 18px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.premium-regions {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    color: var(--white);
    background: var(--blue-950);
}

.premium-regions-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(75px, 9vw, 140px)
        clamp(35px, 7vw, 110px)
        clamp(75px, 9vw, 140px)
        max(30px, calc((100vw - 1240px) / 2));
}

.premium-regions-copy p {
    max-width: 590px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.premium-link-light {
    color: var(--white);
}

.premium-regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.premium-regions-list article {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    border-left: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(99, 158, 188, .18),
            transparent 40%
        );
}

.premium-regions-list span {
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .67rem;
    opacity: .58;
}

.premium-regions-list h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
}

.premium-story {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(100px, 12vw, 180px) 0;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 9vw, 135px);
    align-items: center;
}

.story-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.story-collage {
    position: relative;
    min-height: 780px;
}

.story-image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-one {
    top: 0;
    left: 0;
    width: 64%;
    height: 73%;
}

.story-image-one img {
    object-position: center 28%;
}

.story-image-two {
    right: 0;
    bottom: 0;
    width: 52%;
    height: 60%;
    border: 12px solid var(--white);
}

.story-image-two img {
    object-position: center 25%;
}

.premium-global {
    display: grid;
    grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr);
    min-height: 720px;
    color: var(--white);
    background: var(--blue-900);
}

.premium-global-image {
    overflow: hidden;
}

.premium-global-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.premium-global-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(75px, 9vw, 140px)
        max(30px, calc((100vw - 1240px) / 2))
        clamp(75px, 9vw, 140px)
        clamp(45px, 8vw, 130px);
}

.premium-global-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

.premium-global-copy .button {
    align-self: flex-start;
    margin-top: 25px;
}

.premium-final-cta {
    padding:
        clamp(110px, 14vw, 210px)
        max(20px, calc((100% - 1060px) / 2));
    text-align: center;
    background: var(--cream);
}

.premium-final-cta h2 {
    max-width: 1020px;
    margin: 0 auto 42px;
}

@media (max-width: 1060px) {
    .premium-hero,
    .premium-editorial,
    .premium-regions,
    .premium-story,
    .premium-global {
        grid-template-columns: 1fr;
    }

    .premium-hero-copy {
        min-height: 720px;
        padding-inline: max(25px, calc((100vw - 900px) / 2));
    }

    .premium-hero-image {
        min-height: 760px;
    }

    .premium-intro {
        grid-template-columns: 50px 1fr;
    }

    .premium-intro-copy {
        grid-column: 2;
    }

    .premium-section-heading {
        grid-template-columns: 1fr;
    }

    .premium-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-regions-copy,
    .premium-global-copy {
        padding-inline: max(25px, calc((100vw - 900px) / 2));
    }

    .premium-story {
        width: min(900px, calc(100% - 40px));
    }

    .story-collage {
        min-height: 700px;
    }

    .premium-global-image {
        min-height: 760px;
    }
}

@media (max-width: 680px) {
    .premium-hero {
        min-height: auto;
    }

    .premium-hero-copy {
        min-height: 650px;
        padding: 75px 20px 55px;
    }

    .premium-hero h1 {
        font-size: clamp(3.1rem, 15vw, 4.8rem);
    }

    .premium-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-hero-image {
        min-height: 580px;
    }

    .premium-hero-image img {
        object-position: center 20%;
    }

    .hero-signature {
        right: 18px;
        bottom: 18px;
        left: 18px;
        max-width: none;
    }

    .premium-intro {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        padding: 85px 0;
    }

    .premium-intro-copy {
        grid-column: auto;
    }

    .premium-intro h2,
    .premium-services h2,
    .premium-regions h2,
    .premium-story h2,
    .premium-global h2,
    .premium-final-cta h2 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .premium-editorial {
        width: 100%;
    }

    .editorial-image {
        min-height: 580px;
    }

    .editorial-copy {
        padding: 65px 22px;
    }

    .editorial-points div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .premium-services,
    .premium-story {
        width: calc(100% - 32px);
    }

    .premium-service-grid,
    .premium-regions-list {
        grid-template-columns: 1fr;
    }

    .premium-service-card {
        min-height: 340px;
    }

    .premium-regions-list article {
        min-height: 250px;
    }

    .story-collage {
        min-height: 590px;
    }

    .story-image-one {
        width: 76%;
        height: 68%;
    }

    .story-image-two {
        width: 63%;
        height: 54%;
        border-width: 8px;
    }

    .premium-global-image {
        min-height: 580px;
    }

    .premium-final-cta {
        padding-inline: 20px;
    }
}

.footer-admin-button {
    width: fit-content;
    margin-top: 12px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 3px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.footer-admin-button:hover,
.footer-admin-button:focus-visible {
    color: #092638;
    border-color: #ffffff;
    background: #ffffff;
}

/* Logo oficial */
.site-header {
    color: var(--blue-950);
    border-bottom: 1px solid rgba(9, 38, 56, .10);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 28px rgba(9, 38, 56, .05);
}

.header-inner {
    min-height: 96px;
}

.site-brand-logo {
    width: 255px;
    height: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.site-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.main-menu a {
    color: var(--blue-950);
}

.main-menu a:hover,
.main-menu a.active {
    border-color: var(--blue-900);
}

.menu-button {
    color: var(--blue-950);
    border-color: rgba(9, 38, 56, .28);
    background: transparent;
}

.footer-logo {
    width: min(330px, 100%);
    display: block;
    padding: 18px;
    background: #ffffff;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 980px) {
    .main-menu {
        top: 96px;
        background: #ffffff;
        box-shadow: 0 16px 30px rgba(9, 38, 56, .12);
    }

    .main-menu a {
        color: var(--blue-950);
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 84px;
    }

    .site-brand-logo {
        width: 215px;
        height: 62px;
    }

    .main-menu {
        top: 84px;
    }
}

@media (max-width: 390px) {
    .site-brand-logo {
        width: 190px;
    }
}

@media (max-width: 680px) {
    .story-collage {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: end;
    }

    .story-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        border: 0;
        box-shadow: none;
    }

    .story-image-one {
        aspect-ratio: 3 / 4.5;
    }

    .story-image-two {
        aspect-ratio: 3 / 4;
        transform: translateY(34px);
    }

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .story-image-one img {
        object-position: center 26%;
    }

    .story-image-two img {
        object-position: center 20%;
    }

    .premium-story {
        gap: 45px;
        padding-bottom: 120px;
    }
}

/* Header com logo premium */
.site-header {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(9, 38, 56, .97);
    box-shadow: none;
}

.header-inner {
    min-height: 96px;
    gap: 36px;
}

.site-brand-header {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-brand-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 76px;
    padding: 10px 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.site-brand-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.main-menu {
    margin-left: auto;
}

.main-menu a {
    color: #ffffff;
}

.main-menu a:hover,
.main-menu a.active {
    border-color: #d8c8b8;
}

.menu-button {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .25);
    background: transparent;
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 88px;
        gap: 20px;
    }

    .site-brand-badge {
        width: 190px;
        height: 62px;
        padding: 8px 12px;
    }

    .main-menu {
        top: 88px;
        background: #092638;
        box-shadow: 0 18px 30px rgba(9, 38, 56, .18);
    }

    .main-menu a {
        color: #ffffff;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 78px;
        gap: 14px;
    }

    .site-brand-badge {
        width: 160px;
        height: 52px;
        padding: 7px 10px;
    }

    .main-menu {
        top: 78px;
    }

    .menu-button {
        padding: 10px 12px;
        font-size: .9rem;
    }
}

@media (max-width: 390px) {
    .site-brand-badge {
        width: 145px;
        height: 48px;
        padding: 6px 8px;
    }
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 6px 0;
}

.footer-socials a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: .92rem;
}

.footer-socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width .2s ease;
}

.footer-socials a:hover::after,
.footer-socials a:focus-visible::after {
    width: 100%;
}

@media (max-width: 640px) {
    .footer-socials {
        gap: 12px 18px;
    }
}
