:root {
    --green: #09271f;
    --gold: #d8b659;
    --cream: #f5f2ea;
    --ink: #111611
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif
}

a {
    text-decoration: none;
    color: inherit
}

.wrap {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

header {
    position: fixed;
    z-index: 30;
    width: 100%;
    height: 92px;
    padding: 0 max(28px, calc((100vw - 1180px)/2));
    display: flex;
    align-items: center;
    transition: .3s
}

header.solid {
    height: 74px;
    background: #071d18f5;
    box-shadow: 0 8px 25px #0004
}

.logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
   
}
nav {
    margin-left: auto;
    display: flex;
    gap: 28px;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 600
}

nav>a {
    opacity: .8
}

nav>a:hover {
    opacity: 1;
    color: #f1d77e
}

.pill {
    border: 1px solid #ffffff55;
    border-radius: 30px;
    padding: 13px 19px
}

.hamb {
    display: none
}

.hero {
    height: max(750px, 100vh);
    min-height: 700px;
    position: relative;
    color: white;
    overflow: hidden
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #041611f0 0%, #041611ad 47%, #04161133), linear-gradient(0deg, #041611aa, transparent 55%)
}

.heroText {
    position: relative;
    padding-top: 180px;
    animation: up .8s ease
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(25px)
    }
}

.over {
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #f0d278
}

.over.dark {
    color: #997d31
}

.hero h1 {
    font-size: clamp(52px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 28px 0
}

.heroText>p:not(.over) {
    max-width: 590px;
    color: #d6ded9;
    line-height: 1.8;
    font-size: 16px
}

em {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 600
}

.buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px
}

.btn {
    padding: 16px 25px;
    display: inline-flex;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s
}

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

.gold {
    background: var(--gold);
    color: #17221e
}

.glass {
    border: 1px solid #ffffff55;
    background: #ffffff0d
}

.sign {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px
}

.sign>b {
    border: 1px solid #d8b65988;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: serif
}

.sign span,
.sign small {
    display: block
}

.sign strong {
    font-size: 12px
}

.sign small {
    font-size: 10px;
    color: #9daba5;
    margin-top: 3px
}

.stats {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 54%;
    background: #f5f2eaf2;
    color: #17221e;
    display: flex;
    gap: 55px;
    padding: 26px max(35px, calc((100vw - 1180px)/2)) 26px 50px
}

.stats span {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.stats b {
    font-size: 9px;
    color: #9a8037;
    text-transform: uppercase;
    letter-spacing: .1em
}

.section {
    padding: 105px 0
}

.heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 50px
}

.heading>p {
    max-width: 420px;
    color: #69716d;
    line-height: 1.8;
    font-size: 13px
}

h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    letter-spacing: -.045em;
    margin: 15px 0
}

.property {
    display: grid;
    grid-template-columns: 1.3fr .8fr;
    min-height: 610px;
    background: white;
    box-shadow: 0 25px 65px #15251c14
}

.property-secondary {
    margin-top: 48px;
}

.gallery {
    position: relative;
    min-height: 550px;
    background: #ccc;
    overflow: hidden
}

.gallery>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery label,
.gallery i {
    position: absolute;
    top: 22px;
    padding: 8px 12px;
    font-size: 9px;
    font-style: normal
}

.gallery label {
    left: 22px;
    background: var(--gold);
    font-weight: 700
}

.gallery i {
    right: 22px;
    background: #071a15bb;
    color: white
}

.gallery>button {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: white
}

.prev {
    left: 18px
}

.next {
    right: 18px
}

.dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #09271faa;
    border-radius: 30px;
    padding: 8px;
    display: flex;
    gap: 5px
}

.dots button {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 5px;
    background: #ffffff77;
    padding: 0
}

.dots .on {
    width: 18px;
    background: var(--gold)
}

.info {
    background: var(--green);
    color: white;
    padding: 48px 42px
}

.info h3 {
    font-size: 42px;
    letter-spacing: -.04em;
    margin: 8px 0
}

.info>small {
    color: #9db0a8
}

.info>p:not(.over) {
    color: #c2cec9;
    line-height: 1.8;
    font-size: 12px;
    margin: 25px 0
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-block: 1px solid #ffffff1c;
    padding: 19px 0;
    gap: 12px
}

.features span {
    font-size: 11px;
    color: #c3cec9
}

.features b {
    color: var(--gold)
}

.info ul {
    padding-left: 17px;
    font-size: 11px;
    line-height: 2
}

.info li::marker {
    color: var(--gold)
}

.wide {
    width: 100%;
    margin-top: 22px
}

.about {
    background: white
}

.split {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 95px;
    align-items: center
}

.portrait {
    position: relative;
    height: 580px
}

.portrait>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.seal {
    position: absolute;
    right: -40px;
    bottom: 40px;
    width: 165px;
    height: 165px;
    background: var(--green);
    border: 5px solid white;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.seal b {
    color: var(--gold);
    font-size: 28px
}

.seal small {
    font-size: 8px
}

.split>div>p:not(.over) {
    color: #69716d;
    line-height: 1.9;
    font-size: 13px;
    margin: 28px 0
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0
}

.checks span {
    font-size: 11px;
    font-weight: 600
}

.checks span:before {
    content: '✓';
    color: #a58631;
    margin-right: 7px
}

.link {
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 7px
}

.region {
    background: linear-gradient(115deg, #071e18, #174237);
    color: white
}

.region .heading {
    margin-top: 0
}

.region .heading>p {
    color: #b7c5bf
}

.regionGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid #ffffff20
}

.regionGrid article {
    padding: 33px 24px;
    border-right: 1px solid #ffffff20
}

.regionGrid article:last-child {
    border: 0
}

.regionGrid b {
    color: var(--gold);
    font-family: serif
}

.regionGrid h3 {
    margin-top: 40px;
    font-size: 16px
}

.regionGrid p {
    font-size: 11px;
    line-height: 1.7;
    color: #aabbb4
}

.contact {
    background: #eee9df
}

.contact .split {
    grid-template-columns: .8fr 1.1fr
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.contacts a {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px
}

.contacts span,
.contacts small {
    display: block
}

.contacts small {
    text-transform: uppercase;
    font-size: 8px;
    color: #888;
    margin-bottom: 3px
}

form {
    background: white;
    padding: 36px;
    box-shadow: 0 20px 55px #1b291f12
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

label {
    display: block;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 14px
}

input,
select,
textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #dfe2de;
    padding: 12px;
    margin-top: 6px;
    font: 12px Manrope;
    text-transform: none;
    letter-spacing: 0;
    outline: none
}

input:focus,
select:focus,
textarea:focus {
    border-color: #a88934
}

.consent {
    display: flex;
    align-items: center;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400
}

.consent input {
    width: auto;
    margin: 0 8px 0 0
}

form>small {
    color: #888;
    font-size: 8px;
    line-height: 1.5;
    display: block;
    margin-top: 10px
}

footer {
    background: #061a15;
    color: #aebcb6;
    padding: 65px 0 22px
}

.foot {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 65px;
    padding-bottom: 45px
}

.foot img {
    width: 190px;
    height: 80px;
    object-fit: contain;
    object-position: left
}

.foot a,
.foot p {
    display: block;
    font-size: 10px;
    line-height: 1.8;
    margin: 7px 0
}

.foot h4 {
    color: white;
    font-size: 11px
}

.legal {
    border-top: 1px solid #ffffff14;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 8px
}

.legal b {
    color: var(--gold)
}

.floating {
    position: fixed;
    z-index: 20;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25c763;
    color: white;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 8px 25px #16934366
}

.floating span {
    position: absolute;
    right: 67px;
    white-space: nowrap;
    background: #09271f;
    padding: 8px 10px;
    font-size: 9px;
    border-radius: 3px;
    opacity: 0
}

.floating:hover span {
    opacity: 1
}

.top {
    position: fixed;
    right: 87px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    opacity: 0;
    pointer-events: none
}

.top.show {
    opacity: 1;
    pointer-events: auto
}

@media(max-width:850px) {
    .wrap {
        width: min(100% - 32px, 650px)
    }

    .section {
        padding: 72px 0
    }

    header {
        height: 74px;
        padding: 0 16px
    }

    .logo {
        width: 125px
    }

    .hamb {
        display: block;
        margin-left: auto;
        background: none;
        border: 0;
        color: white;
        font-size: 28px;
        z-index: 2
    }

    nav {
        position: fixed;
        inset: 0;
        background: #08251e;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
        transform: translateX(100%);
        transition: .3s
    }

    nav.open {
        transform: none
    }

    .hero {
        height: 830px;
        min-height: 100svh
    }

    .heroText {
        padding-top: 140px
    }

    .hero h1 {
        font-size: 52px
    }

    .buttons {
        flex-direction: column;
        max-width: 330px
    }

    .stats {
        left: 0;
        min-width: 100%;
        padding: 20px 16px;
        gap: 20px;
        overflow: auto
    }

    .heading {
        display: block
    }

    .heading>p {
        margin-top: 24px
    }

    .property,
    .split,
    .contact .split {
        grid-template-columns: 1fr
    }

    .gallery {
        min-height: 430px
    }

    .info {
        padding: 35px 25px
    }

    .split {
        gap: 50px
    }

    .portrait {
        height: 460px;
        margin-right: 18px
    }

    .seal {
        right: -20px;
        width: 140px;
        height: 140px
    }

    .regionGrid {
        grid-template-columns: 1fr 1fr
    }

    .regionGrid article:nth-child(2) {
        border-right: 0
    }

    .two {
        grid-template-columns: 1fr
    }

    .foot {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .legal {
        flex-direction: column;
        gap: 7px
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 44px
    }

    .heroText>p:not(.over) {
        font-size: 13px
    }

    .stats span:last-child {
        display: none
    }

    .property {
        margin: 0 -16px
    }

    .gallery {
        min-height: 350px
    }

    .features {
        grid-template-columns: 1fr
    }

    .checks,
    .regionGrid {
        grid-template-columns: 1fr
    }

    .regionGrid article {
        border-right: 0;
        border-bottom: 1px solid #ffffff1a
    }

    .portrait {
        height: 380px
    }

    form {
        padding: 24px
    }

    .contact .split {
        gap: 35px
    }

    .legal {
        font-size: 7px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    html {
        scroll-behavior: auto
    }
}

/* Ajustes tipográficos e de navegação */
h1,
h2,
h3,
h4,
.info h3,
.regionGrid h3,
.foot h4 {
    font-family: 'Poppins', Arial, sans-serif
}

h1 em,
h2 em,
h3 em,
h4 em {
    font-family: inherit
}

p,
.heroText>p:not(.over),
.heading>p,
.info>p:not(.over),
.split>div>p:not(.over),
.regionGrid p,
.foot p,
form>small {
    font-family: 'Montserrat', Arial, sans-serif
}

.heroText>p:not(.over) {
    font-size: 18px
}

.heading>p,
.split>div>p:not(.over) {
    font-size: 15px
}

.info>p:not(.over) {
    font-size: 14px
}

.regionGrid p {
    font-size: 13px
}

.foot p {
    font-size: 12px
}

form>small {
    font-size: 10px
}

.floating {
    right: 20px;
    bottom: 20px
}

.floating img {
    width: 31px;
    height: 31px;
    display: block
}

.top {
    right: 26px;
    bottom: 88px;
    width: 44px;
    height: 44px;
    z-index: 19;
    color: var(--green);
    font-size: 20px;
    box-shadow: 0 6px 18px #0002
}

.nav-close {
    display: none
}

@media(max-width:850px) {
    body.menu-open {
        overflow: hidden
    }

    .hamb {
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid #ffffff33;
        border-radius: 50%;
        font-size: 0;
        position: relative
    }

    .hamb:before,
    .hamb:after {
        content: '';
        position: absolute;
        left: 11px;
        width: 17px;
        height: 1px;
        background: #fff
    }

    .hamb:before {
        top: 15px
    }

    .hamb:after {
        top: 22px
    }

    .hamb[aria-expanded="true"] {
        opacity: 0;
        pointer-events: none
    }

    nav {
        inset: 0 auto 0 0;
        width: min(72vw, 340px);
        height: 100svh;
        padding: 88px 30px 36px;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        font-size: 15px;
        background: linear-gradient(155deg, #0b2c24, #061c17);
        box-shadow: 16px 0 45px #0005;
        transform: translateX(-105%)
    }

    nav.open {
        transform: translateX(0)
    }

    nav>a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #ffffff12
    }

    nav .pill {
        margin-top: 25px;
        width: auto;
        padding: 12px 18px;
        border-bottom: 1px solid #ffffff55
    }

    .nav-close {
        display: flex;
        position: absolute;
        top: 24px;
        left: 28px;
        align-items: center;
        gap: 10px;
        border: 0;
        background: transparent;
        color: #d8c990;
        font: 500 11px 'Montserrat', sans-serif;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 8px 0
    }

    .nav-close span {
        color: #ffffff99
    }

    .heroText>p:not(.over) {
        font-size: 15px
    }

    .heading>p,
    .split>div>p:not(.over) {
        font-size: 15px
    }

    .floating {
        right: 16px;
        bottom: 16px
    }

    .top {
        right: 22px;
        bottom: 84px
    }
}

/* Hierarquia tipografica padronizada e hero mais limpo */
body,
p,
a,
span,
small,
label,
input,
select,
textarea,
button {
    font-family: 'Montserrat', Arial, sans-serif
}

h1,
h2,
h3,
h4,
.info h3,
.regionGrid h3,
.foot h4 {
    font-family: 'Poppins', Arial, sans-serif
}

body {
    font-size: 16px
}

.over {
    font-size: 13px
}

.hero {
    height: max(720px, 100vh);
    min-height: 680px
}

.hero .shade {
    background: linear-gradient(90deg, #041611b8 0%, #04161166 46%, #0416110d 78%), linear-gradient(0deg, #04161152, transparent 50%);
    pointer-events: none
}

.heroText {
    padding-top: clamp(155px, 21vh, 220px)
}

.hero h1 {
    max-width: 780px;
    margin: 22px 0
}

.heroText>p:not(.over) {
    max-width: 540px;
    font-size: 18px;
    line-height: 1.65
}

.buttons {
    margin-top: 28px
}

.heading>p,
.split>div>p:not(.over),
.info>p:not(.over),
.regionGrid p,
.foot p {
    font-size: 16px
}

.info>small,
.features span,
.info ul,
.checks span,
.contacts a,
.foot a {
    font-size: 14px
}

.gallery label,
.gallery i,
label,
form>small,
.contacts small,
.seal small {
    font-size: 12px
}

input,
select,
textarea {
    font-size: 14px
}

.btn,
.link,
nav {
    font-size: 14px
}

.foot h4 {
    font-size: 16px
}

.legal {
    font-size: 13px;
    line-height: 1.6
}

.floating span {
    font-size: 12px
}

@media(max-width:850px) {
    nav {
        font-size: 16px
    }

    .nav-close {
        font-size: 12px
    }

    .hero {
        height: max(700px, 100svh);
        min-height: 700px
    }

    .heroText {
        padding-top: 145px
    }

    .heroText>p:not(.over),
    .heading>p,
    .split>div>p:not(.over) {
        font-size: 16px
    }
}

@media(max-width:480px) {
    .heroText>p:not(.over) {
        font-size: 16px
    }

    .legal {
        font-size: 12px
    }

    .foot a,
    .foot p {
        font-size: 15px
    }
}
