@font-face {
    font-family: "Inter";
    src: url("./Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Merriweather Sans */

@font-face {
    font-family: "Merriweather Sans";
    src: url("./merriweather-sans-v28-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather Sans";
    src: url("./merriweather-sans-v28-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* IBM Plex Mono */

@font-face {
    font-family: "IBM Plex Mono";
    src: url("./ibm-plex-mono-v20-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("./ibm-plex-mono-v20-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0B2A66;
    --navy-deep: #071D4A;
    --blue: #1554D6;
    --cyan: #2BAAEC;
    --ink: #10192E;
    --slate: #57647C;
    --paper: #F4F8FE;
    --line: rgba(11, 42, 102, .12);
    --white: #fafafa;
    --gold: #F0A93D;
    --font-display: 'Merriweather Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --container-desktop: 1296px;
    --container-notebook: 990px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.08;
    letter-spacing: -.01em;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: var(--container-desktop);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width:1439px) and (min-width:1024px) {
    .container {
        max-width: var(--container-notebook);
    }
}

@media (max-width:1023px) {
    .container {
        padding: 0 22px;
    }
}

@media (max-width:560px) {
    .container {
        padding: 0 18px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
}

.eyebrow svg {
    width: 14px;
    height: 14px;
    flex: none;
}

.eyebrow.on-dark {
    color: var(--cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(21, 84, 214, .55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(21, 84, 214, .6);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-outline-navy {
    background: transparent;
    border-color: rgba(11, 42, 102, .25);
    color: var(--navy);
}

.btn-outline-navy:hover {
    border-color: var(--navy);
    background: rgba(11, 42, 102, .04);
}

.btn-sm {
    padding: 11px 22px;
    font-size: 14px;
}

/* ---------- reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================= HEADER ================= */
header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}

header.site .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

header.site.scrolled {
    background: rgba(8, 25, 64, .86);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 8px 30px -14px rgba(0, 0, 0, .4);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 34px;
    width: auto;
}

nav.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

nav.primary-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: #fff;
    opacity: .85;
    position: relative;
    padding: 4px 0;
}

nav.primary-nav a:hover {
    opacity: 1;
}

nav.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

nav.primary-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    color: #fff;
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

@media (max-width:900px) {
    nav.primary-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(78vw, 340px);
        height: 100vh;
        background: var(--navy-deep);
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
    }

    nav.primary-nav.open {
        transform: translateX(0);
    }

    nav.primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    nav.primary-nav a {
        font-size: 19px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions .btn-primary {
        display: none;
    }
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(120% 90% at 82% 8%, rgba(43, 170, 236, .35), transparent 55%),
        linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 46%, #0E3A9A 78%, #1554D6 100%);
    overflow: hidden;
    padding: 150px 0 90px;
}

.hero-chevron {
    position: absolute;
    top: -8%;
    right: -6%;
    width: 62vw;
    max-width: 900px;
    opacity: .16;
    transform: rotate(0deg);
    pointer-events: none;
}

.hero-chevron.two {
    top: auto;
    bottom: -18%;
    right: auto;
    left: -10%;
    width: 40vw;
    max-width: 560px;
    opacity: .10;
    transform: rotate(180deg);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: min(230px, 42vw);
    margin-bottom: 34px;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35));
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--cyan);
}

.hero p.lede {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}

.hero-stats .stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.hero-visual {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55);
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual .badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
    background: rgba(8, 20, 48, .72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.hero-visual .badge img.mcmv-mini {
    height: 40px;
    width: auto;
}

.hero-visual .badge img.mm-mini {
    height: 25px;
    width: auto;
}

.hero-visual .badge strong {
    display: block;
    color: #fff;
    font-size: 13.5px;
}

.hero-visual .badge span {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

@media (max-width:980px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-visual {
        max-width: 420px;
    }
}

/* scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(#fff, transparent);
    animation: scrollcue 2s infinite;
}

@keyframes scrollcue {
    0% {
        opacity: .2;
        transform: scaleY(.3);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: .2;
        transform: scaleY(.3);
        transform-origin: bottom;
    }
}

@media (prefers-reduced-motion:reduce) {
    .scroll-cue .line {
        animation: none;
    }
}

/* ================= SECTION HEADERS ================= */
.section {
    padding: 110px 0;
}

.section.tight {
    padding: 90px 0;
}

.section-head {
    max-width: 990px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-top: 14px;
    color: var(--navy);
}

.section-head p {
    margin-top: 16px;
    color: var(--slate);
    font-size: 16.5px;
    line-height: 1.65;
}

.section-head.on-dark h2 {
    color: #fff;
}

.section-head.on-dark p {
    color: rgba(255, 255, 255, .7);
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================= EMPREENDIMENTOS CAROUSEL ================= */
.empreendimentos {
    padding: 64px 0 92px;
    background: linear-gradient(180deg, var(--navy-deep), var(--navy) 60%, #0A2C78);
    position: relative;
    overflow: hidden;
}

.empreendimentos .top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.car-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.car-btn:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
}

.car-btn:active {
    transform: scale(.94);
}

.car-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track::before,
.carousel-track::after {
    content: "";
    flex: 0 0 1px;
}

.prop-card {
    flex: 0 0 auto;
    width: 340px;
    scroll-snap-align: start;
    background: #0E1F52;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .5);
    border-color: rgba(43, 170, 236, .4);
}

.prop-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.prop-gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.carousel-track {
    cursor: grab;
}

.carousel-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.prop-gallery-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.prop-gallery-track::-webkit-scrollbar {
    display: none;
}

.prop-gallery-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.prop-gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    -webkit-user-drag: none;
}

.prop-gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
}

.prop-gallery-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    transition: background .2s ease, width .2s ease;
    pointer-events: auto;
}

.prop-gallery-dots .dot.active {
    background: #fff;
    width: 16px;
    border-radius: 100px;
}

.prop-status {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 7px 14px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.prop-status.entregue {
    background: var(--cyan);
    color: #04203D;
}

.prop-status.lancamento {
    background: var(--gold);
    color: #3A2100;
}

.prop-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.prop-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #8AA0D6;
}

.prop-loc svg {
    width: 13px;
    height: 13px;
    flex: none;
}

.prop-body h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.prop-body p.desc {
    color: #B7C4E6;
    font-size: 14px;
    line-height: 1.55;
}

.prop-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
    padding-top: 6px;
}

.prop-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #D7E1F7;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 6px 10px;
    border-radius: 9px;
}

.prop-specs svg {
    width: 13px;
    height: 13px;
    opacity: .8;
}

.prop-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
}

.prop-link svg {
    width: 15px;
    height: 15px;
    transition: transform .2s ease;
}

.prop-card:hover .prop-link svg {
    transform: translateX(4px);
}

.empreendimentos .see-all {
    margin-top: 46px;
    text-align: center;
}

/* ================= VANTAGENS ================= */
.vantagens {
    padding: 64px 0 92px;
    background: var(--white);
}

.vant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.vant-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.vant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(11, 42, 102, .25);
}

.vant-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vant-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.vant-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.vant-card p {
    color: var(--slate);
    font-size: 14.5px;
    line-height: 1.6;
}

.mcmv-feature {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(120deg, var(--navy-deep), var(--blue) 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.mcmv-feature .mcmv-visual {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
    position: relative;
}

.mcmv-feature .mcmv-visual img {
    width: 100%;
    max-width: 280px;
}

.mcmv-feature .mcmv-copy {
    padding: 48px 50px;
    color: #fff;
}

.mcmv-feature .eyebrow {
    margin-bottom: 16px;
}

.mcmv-feature h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 16px;
}

.mcmv-feature p {
    color: rgba(255, 255, 255, .82);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}

.mcmv-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 26px;
    margin-bottom: 30px;
}

.mcmv-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.mcmv-list svg {
    width: 17px;
    height: 17px;
    flex: none;
    color: var(--cyan);
    margin-top: 1px;
}

@media (max-width:980px) {
    .vant-grid {
        grid-template-columns: 1fr;
    }

    .mcmv-feature {
        grid-template-columns: 1fr;
    }

    .mcmv-feature .mcmv-visual {
        padding: 36px;
    }
}

/* ================= MORE MAIS ================= */
.moremais.itajuba {
    background-color: var(--white);
}


.moremais.itajuba .moremais-logo {
    height: 56px;
}

.moremais.itajuba .eyebrow,
.moremais.itajuba .ficha-item span {
    color: var(--blue);
}

.moremais.itajuba .moremais-copy h3 {
    color: var(--navy);
}

.moremais.itajuba .moremais-copy p.lede,
.moremais.itajuba .ficha-item strong {
    color: var(--slate);
}

.moremais.itajuba .moremais-loc span {
    background: rgba(21, 43, 84, .9);
    border: 1px solid rgba(21, 43, 84, .1);
}

.moremais {
    background: radial-gradient(140% 100% at 100% 0%, rgba(43, 170, 236, .22), transparent 55%), var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.moremais-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.moremais-logo {
    height: 46px;
    width: auto;
}

.selos-row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.selos-row img {
    height: 52px;
    width: auto;
}

.moremais-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: start;
}

.moremais-gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.moremais-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.mg-main {
    grid-row: span 2;
    aspect-ratio: 3/4;
}

.mg-side {
    aspect-ratio: 16/10;
}

.mg-side-mobile {
    display: none;
}

.moremais-copy h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: #fff;
    margin-bottom: 16px;
}

.moremais-copy p.lede {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ficha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin-bottom: 32px;
}

.ficha-item {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 12px;
}

.ficha-item span {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8AA0D6;
    margin-bottom: 5px;
}

.ficha-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.moremais-loc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.moremais-loc span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 8px 13px;
    border-radius: 100px;
    font-size: 12.5px;
    color: #D7E1F7;
}

.moremais-loc svg {
    width: 13px;
    height: 13px;
    color: var(--cyan);
}

.moremais-stats {
    display: flex;
    gap: 40px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.moremais-stats b {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    color: #fff;
}

.moremais-stats span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
}

@media (max-width:980px) {
    .moremais-grid {
        grid-template-columns: 1fr;
    }

    .ficha-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .moremais-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .mg-main {
        grid-row: span 1;
        aspect-ratio: 16/11;
    }

    .mg-side-mobile {
        display: block;
    }
}

/* ================= SOBRE ================= */
.sobre-top.numbers {
    grid-template-columns: 1fr;
}

.sobre-top.numbers-down {
    margin-top: 32px;
}

.sobre {
    padding: 64px 0 92px;
    background: var(--white);
}

.sobre-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 70px;
}

.sobre-top p.big {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.35;
}

.sobre-top .support {
    margin-top: 26px;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sobre-stat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 12px;
    text-align: center;
}

.sobre-stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--blue);
    font-weight: 700;
}

.sobre-stat span {
    font-size: 12.5px;
    color: var(--slate);
    letter-spacing: .02em;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.diff-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.diff-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.diff-card:hover img {
    transform: scale(1.08);
}

.diff-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 29, 74, .92) 0%, rgba(7, 29, 74, .15) 55%, transparent 75%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.diff-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.diff-card p {
    color: rgba(255, 255, 255, .78);
    font-size: 12.5px;
    line-height: 1.5;
}

@media (max-width:980px) {
    .sobre-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .diff-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .sobre-stats {
        grid-template-columns: 1fr;
    }
}

/* ================= CONTATO ================= */
.contato {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    color: #fff;
}

.contato-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
}

.contato-info h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin: 14px 0 18px;
}

.contato-info p {
    color: rgba(255, 255, 255, .75);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.contato-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contato-detail svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex: none;
    margin-top: 2px;
}

.contato-detail strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.contato-detail span,
.contato-detail a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

footer .social-row {
    margin-top: 16px;
}

.social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.social-row a:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.social-row svg {
    width: 18px;
    height: 18px;
}

.contato-form {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    color: var(--ink);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 18px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.field input,
.field textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s ease, background .2s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: #fff;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 22px;
}

.check-row input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
}

.check-row label {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.5;
}

.check-row label a:hover {
    text-decoration: underline;
}

.contato-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 15.5px;
}

.form-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--slate);
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 46px;
    height: 46px;
    color: var(--blue);
    margin-bottom: 14px;
}

.form-success h4 {
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--slate);
    font-size: 14px;
}

@media (max-width:980px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 26px;
    }
}

/* ================= FOOTER ================= */
footer.site {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .7);
    padding: 70px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
    height: 48px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: rgba(255, 255, 255, .6);
}

.footer-col h5 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .68);
    transition: color .2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1/-1;
    }
}

@media (max-width:560px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}