/* ==========================================================================
   Verenna — Vivapark Porto Belo
   ========================================================================== */

:root {
    --color-teal: #0b3d38;
    --color-teal-deep: #062e2a;
    --color-teal-soft: #8fbab5;
    --color-sage: #c5d6d0;
    --color-cream: #f4f1ec;
    --color-sand: #e8e2d8;
    --color-white: #ffffff;
    --color-text: #1a2e2b;
    --color-muted: #5c6f6b;

    /* Tipografia Canva: Garet (títulos) + Arimo (corpo) + script (acentos) */
    --font-display: "garet", "Arimo", sans-serif;
    --font-body: "Arimo", "garet", sans-serif;
    --font-script: "Allura", cursive;
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --color-hero-ink: #00423a;

    --fs-hero-title: clamp(3.25rem, 9.9704vw, 5.15rem);
    --fs-hero-sub: clamp(1.15rem, 2.88915vw, 1.65rem);
    --fs-section: clamp(1.35rem, 3.0591vw, 1.95rem);
    --fs-script: clamp(2.6rem, 5.8916vw, 3.75rem);
    --fs-lead: clamp(1rem, 1.9261vw, 1.2rem);
    --fs-body: clamp(0.9rem, 1.3596vw, 1rem);
    --fs-small: clamp(0.8rem, 1.18965vw, 0.9rem);
    --lh-tight: 1.15;
    --lh-title: 1.28;
    --lh-body: 1.55;
    --tracking-title: -0.015em;
    --tracking-caps: 0.06em;

    --space-1: 0.35rem;
    --space-2: 0.7rem;
    --space-3: 1.15rem;
    --space-4: 1.75rem;
    --space-5: 2.75rem;
    --space-6: 4rem;
    --space-section: clamp(3rem, 7vw, 5.5rem);

    --header-h: 4.5rem;
    --radius: 0.75rem;
    --radius-pill: 999px;
    --shadow-panel: 0 18px 50px rgb(6 46 42 / 0.28);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: min(70rem, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 113.3%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--color-text);
    background: var(--color-cream);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.75rem;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-teal);
}

.btn--light:hover {
    background: var(--color-sage);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    height: var(--header-h);
    background: transparent;
    pointer-events: none;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: var(--container);
    height: 100%;
    margin-inline: auto;
}

.site-header__brand {
    display: none;
}

.site-header__cta {
    pointer-events: auto;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgb(0 71 62 / 0.35);
    border-radius: var(--radius-pill);
    background: rgb(255 255 255 / 0.72);
    color: var(--color-hero-ink);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.site-header__cta:hover {
    background: var(--color-hero-ink);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    align-items: start;
    justify-items: center;
    overflow: hidden;
    color: var(--color-hero-ink);
}

.hero__media,
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__bg {
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.02);
    animation: hero-zoom 12s var(--ease) forwards;
}

/* folha2.png = folha + linha horizontal (fundo preto → screen) */
.hero__leaf {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: min(92vw, 72rem);
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: top left;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    display: grid;
    justify-items: left;
    width: min(36rem, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(2.25rem, 5.5vh, 3.75rem) 1rem 0;
    text-align: center;
    color: var(--color-hero-ink);
    animation: rise 1s var(--ease) both;
}

.hero__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.7rem 1rem;
    margin-bottom: clamp(1.1rem, 2.8vh, 1.85rem);
}

.hero__logos-divider {
    flex: 0 0 1px;
    width: 1px;
    height: 1.94rem;
    background: rgb(255 255 255 / 0.55);
}

.hero__logo--vivapark,
.hero__logo--conrado {
    width: auto;
    height: clamp(2.125rem, 4vw, 3rem);
    object-fit: contain;
    mix-blend-mode: screen;
}

.hero__logo--conrado {
    height: clamp(1.625rem, 3.125vw, 2.3125rem);
}

.hero__title {
    margin: 0;
    line-height: 0;
    text-align: center;
}

.hero__title-logo {
    display: block;
    width: min(15.5rem, 42vw);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.hero__subtitle {
    display: contents;
    justify-items: left;
    gap: 0.06em;
    width: max-content;
    max-width: 100%;
    margin: 0.55rem auto 0;
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 2.35vw, 1rem);
    font-weight: 400;
    line-height: 1.22;
    text-align: left;
    color: var(--color-hero-ink);
}

.hero__subtitle-line {
    display: block;
    white-space: nowrap;
}

.hero__subtitle-script {
    display: inline-block;
    margin-left: 0.22rem;
    font-family: var(--font-script);
    font-size: 2.35em;
    font-weight: 400;
    font-style: normal;
    line-height: 0.82;
    letter-spacing: 0.01em;
    vertical-align: -0.08em;
    color: var(--color-hero-ink);
}

/* --------------------------------------------------------------------------
   Towers / Arquitetura
   -------------------------------------------------------------------------- */

.towers {
    position: relative;
    display: grid;
    align-items: start;
    justify-items: center;
    min-height: min(100vh, 58rem);
    padding: clamp(3.5rem, 9vh, 6.5rem) 1.25rem clamp(3rem, 6vh, 5rem);
    overflow: hidden;
    background: var(--color-cream);
}

.towers__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.towers__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(8.75rem, 6.5vh, 4.75rem);
    width: min(14.55rem, 36vw);
    margin: 0 auto;
    
}

.towers__block {
    display: grid;
    gap: 0.45rem;
    width: min(20.5rem, 100%);
}

.towers__block--1 {
    justify-self: start;
}

.towers__block--2 {
    justify-self: end;
    width: min(21rem, 100%);
}

.towers__heading {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem 0.5rem;
    flex-wrap: nowrap;
}

.towers__block--1 .towers__heading {
    justify-content: flex-start;
}

.towers__block--2 .towers__heading {
    justify-content: flex-end;
}

.towers__script {
    margin: 0;
    color: var(--color-hero-ink);
    font-family: var(--font-script);
    font-size: clamp(2.85rem, 5.2vw, 4.15rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.72;
}

.towers__title {
    margin: 0 0 0.2em;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.55vw, 1.15rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-hero-ink);
    white-space: nowrap;
}

.towers__text {
    margin: 0;
    max-width: 19rem;
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.05vw, 0.92rem);
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: var(--color-hero-ink);
}

.towers__block--2 .towers__text {
    max-width: 19.5rem;
    margin-left: auto;
    text-align: right;
}

.towers__text strong {
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Pool
   -------------------------------------------------------------------------- */

.pool {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    align-items: start;
    min-height: min(100vh, 56rem);
    padding: clamp(2.5rem, 6.5vh, 4.25rem) 1.25rem clamp(2.75rem, 7vh, 4.5rem);
    overflow: hidden;
    color: var(--color-hero-ink);
    background: #dfeceb;
}

.pool__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.pool__title {
    position: relative;
    z-index: 2;
    width: min(34rem, calc(100% - 1.5rem));
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    text-align: center;
    color: var(--color-hero-ink);
    text-shadow: 0 1px 12px rgb(255 255 255 / 0.45);
}

.pool__card {
    position: relative;
    z-index: 2;
    align-self: center;
    width: min(28rem, calc(100% - 2rem));
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.35rem);
    background: rgb(126 196 188 / 0.88);
    color: var(--color-hero-ink);
    animation: rise 0.9s var(--ease) both;
}

.pool__features-list {
    display: grid;
    gap: 1.05rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    justify-items: start;
}

.pool__features-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.pool__features-icon {
    flex: 0 0 2.15rem;
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
}

.pool__features-text {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.55vw, 1.15rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-hero-ink);
}

.pool__features-text strong {
    color: var(--color-hero-ink);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Balcony
   -------------------------------------------------------------------------- */

.balcony {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(85vh, 44rem);
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
    overflow: hidden;
}

.balcony__media,
.balcony__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.balcony__card {
    position: relative;
    z-index: 1;
    align-self: end;
    width: min(42rem, 92%);
    margin: clamp(8rem, 22vh, 14rem) 0 clamp(2rem, 5vh, 3.5rem);
    padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.75rem, 4vw, 3rem);
    border-radius: 0;
    background: rgb(42 63 59 / 0.82);
    color: var(--color-white);
    box-shadow: none;
    animation: rise 0.8s var(--ease) both;
}

.balcony__title {
    margin: 0 0 var(--space-3);
    font-family: var(--font-display);
    font-size: var(--fs-section);
    font-weight: 400;
    line-height: var(--lh-title);
    letter-spacing: var(--tracking-title);
    color: var(--color-white);
}

.balcony__title strong {
    font-weight: 700;
}

.balcony__text {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: rgb(255 255 255 / 0.94);
    text-align: left;
}

.balcony__text + .balcony__text {
    margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 42rem;
    padding: clamp(3rem, 8vw, 6rem) 1.25rem;
    overflow: hidden;
}

.contact__media,
.contact__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact__bg {
    object-fit: cover;
}

.contact__veil {
    position: absolute;
    inset: 0;
    background: rgb(6 46 42 / 0.28);
}

.contact__leaf {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: clamp(9rem, 22vw, 16rem);
    height: auto;
    object-fit: contain;
    object-position: top right;
    pointer-events: none;
    user-select: none;
    opacity: 0.92;
    transform: scaleX(-1);
}

.contact__panel {
    position: relative;
    z-index: 1;
    width: min(48rem, 100%);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 0;
    background: rgba(26, 50, 50, 0.639);
    color: var(--color-white);
    box-shadow: none;
}

.contact__title {
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--color-white);
}

.contact__subtitle {
    margin-bottom: var(--space-4);
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.contact__alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.92rem;
}

.contact__alert--success {
    background: rgb(143 186 181 / 0.25);
}

.contact__alert--error,
.contact__alert--invalid-email {
    background: rgb(255 255 255 / 0.12);
}

.contact__form {
    display: grid;
    gap: var(--space-2);
    padding: 40px
}

.contact__field label {
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    opacity: 0.9;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--color-white);
    color: var(--color-text);
    font: inherit;
}

.contact__field textarea {
    border-radius: 1.1rem;
    resize: vertical;
    min-height: 6.5rem;
}

.contact__field input:focus,
.contact__field textarea:focus {
    outline: 2px solid var(--color-teal-soft);
    outline-offset: 2px;
}

.contact__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact__submit {
    width: 100%;
    margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   Location
   -------------------------------------------------------------------------- */

.location__scene {
    position: relative;
    min-height: min(78vh, 42rem);
    display: grid;
    align-items: start;
    justify-items: start;
    overflow: hidden;
    color: var(--color-white);
}

.location__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.location__veil {
    display: none;
}

.location__copy {
    position: relative;
    z-index: 1;
    width: min(46rem, 68%);
    max-width: calc(100% - 4rem);
    margin: 0;
    padding:
        clamp(3.25rem, 8vw, 5.5rem)
        clamp(1.5rem, 4vw, 3rem)
        clamp(2.5rem, 6vw, 4rem)
        clamp(2.5rem, 10vw, 7.5rem);
    text-align: left;
    box-sizing: border-box;
}

.location__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--color-white);
    text-align: left;
}

.location__title strong {
    font-weight: 700;
}

.location__subtitle {
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-white);
    text-align: left;
}

.location__text {
    margin: 0;
    max-width: 42rem;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    text-align: left;
}

.location__text + .location__text {
    margin-top: clamp(1.15rem, 2.5vw, 1.65rem);
}

.location__map-wrap {
    background: #014d49;
    padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
}

.location__map {
    display: block;
    width: min(46rem, 100%);
    height: min(22rem, 52vw);
    margin-inline: auto;
    border: 0;
    border-radius: 0;
    filter: none;
}

/* --------------------------------------------------------------------------
   Vivapark
   -------------------------------------------------------------------------- */

.vivapark {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(92vh, 54rem);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    overflow: hidden;
    color: var(--color-white);
    background: #0a2f2a;
}

.vivapark__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.vivapark__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    width: min(58%, 40rem);
    margin-left: clamp(1rem, 4vw, 2.5rem);
    margin-right: auto;
    padding:
        clamp(1.75rem, 3.5vw, 2.75rem)
        clamp(1.5rem, 3.5vw, 2.75rem)
        clamp(1.5rem, 3vw, 2.25rem)
        clamp(1.75rem, 4vw, 3rem);
    box-sizing: border-box;
    background: #014d49;
    text-align: left;
}

.vivapark__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: clamp(2.2rem, 4.2vw, 3.1rem);
    margin-inline: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.vivapark__texts {
    display: grid;
    gap: var(--space-3);
}

.vivapark__text {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--color-white);
    text-align: left;
    overflow-wrap: break-word;
}

.vivapark__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.55rem, 1.4vw, 1.1rem);
    margin: var(--space-2) 0 0;
    padding: 0;
    list-style: none;
}

.vivapark__badge {
    flex: 0 1 auto;
    max-width: 100%;
}

.vivapark__badge img {
    display: block;
    width: auto;
    max-width: 100%;
    height: clamp(4.375rem, 8.75vw, 6.5625rem);
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   Aerial
   -------------------------------------------------------------------------- */

.aerial {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #042a2b;
    color: rgb(245 245 240);
}

.aerial__stage {
    position: relative;
    display: grid;
    min-height: min(70vh, 40rem);
    overflow: hidden;
}

.aerial__media,
.aerial__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.aerial__panel {
    position: relative;
    z-index: 1;
    justify-self: end;
    align-self: center;
    width: min(28rem, calc(100% - 2rem));
    margin: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem) 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgb(10 40 38 / 0.55);
    backdrop-filter: blur(4px);
}

.aerial__tour {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #042a2b;
    padding: clamp(1.1rem, 2.8vw, 1.85rem) clamp(1.25rem, 4vw, 2.5rem);
}

.aerial__tour-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.9rem, 2.2vw, 1.5rem);
    text-decoration: none;
    color: inherit;
}

.aerial__tour-label {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2.4vw, 1.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--color-white);
    white-space: nowrap;
}

.aerial__tour-qr {
    display: block;
    width: clamp(4.25rem, 8vw, 5.75rem);
    height: auto;
    aspect-ratio: 1;
    background: var(--color-white);
    box-shadow: 0 0 0 2px var(--color-white);
}

.aerial__list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aerial__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.aerial__label {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.35;
    color: rgb(245 245 240 / 0.95);
}

.aerial__icon {
    flex: 0 0 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgb(245 245 240 / 0.45);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.2rem;
}

.aerial__icon--drainage {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M3 15h4l2-4h4l2 3h6M5 18h14'/%3E%3C/svg%3E");
}

.aerial__icon--ete {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-3 4-5 7-5 10a5 5 0 0 0 10 0c0-3-2-6-5-10Z'/%3E%3Cpath d='M8 19c1.5 1.2 6.5 1.2 8 0'/%3E%3C/svg%3E");
}

.aerial__icon--led {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M9 18h6M10 21h4M8 10a4 4 0 1 1 8 0c0 2-1 3-2 4H10c-1-1-2-2-2-4Z'/%3E%3C/svg%3E");
}

.aerial__icon--cable {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M4 10h16v6H4zM8 10V7a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v3'/%3E%3C/svg%3E");
}

.aerial__icon--ev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M4 15h12l2-5H7L4 15Zm2 0v3m10-3v3M7 10V7h6'/%3E%3Cpath d='M17 8h3l1 3'/%3E%3C/svg%3E");
}

.aerial__icon--digital {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M4 12s3-6 8-6 8 6 8 6-3 6-8 6-8-6-8-6Z'/%3E%3C/svg%3E");
}

.aerial__icon--analytics {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l3 2'/%3E%3C/svg%3E");
}

.aerial__icon--face {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H5v3M16 4h3v3M8 20H5v-3M16 20h3v-3'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M8 17c1-2 2.5-3 4-3s3 1 4 3'/%3E%3C/svg%3E");
}

.aerial__icon--vehicle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H5v3M16 4h3v3M8 20H5v-3M16 20h3v-3'/%3E%3Cpath d='M7 14h8l1.5-4H9L7 14Zm1.5 0v2.5m6-2.5v2.5'/%3E%3C/svg%3E");
}

.aerial__icon--bollard {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M10 4h4v12H10zM8 20h8M11 8h2'/%3E%3C/svg%3E");
}

.aerial__icon--totem {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f5f5f0' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M7 11V8a5 5 0 0 1 10 0v3'/%3E%3Cpath d='M6 11h12v3a6 6 0 0 1-12 0v-3Z'/%3E%3Cpath d='M12 17v3'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Amenities
   -------------------------------------------------------------------------- */

.amenities {
    background:
        url("../img/fundo_verde_folha.jpg") center / cover no-repeat,
        #0a3d38;
    color: var(--color-white);
}

.amenities__inner {
    width: min(64rem, calc(100% - 2rem));
    margin-inline: auto;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.amenities__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2) clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.amenities__logo {
    width: auto;
    height: clamp(2.35rem, 4vw, 3.15rem);
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.amenities__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.95rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: var(--tracking-title);
    color: var(--color-white);
    text-align: left;
}

.amenities__title-line {
    display: block;
}

.amenities__title-bold {
    display: block;
    font-weight: 700;
}

.amenities__map {
    margin: 0 auto clamp(2rem, 4.5vw, 3rem);
    max-width: 46rem;
}

.amenities__map img {
    width: 100%;
    height: auto;
    border: 1px solid rgb(255 255 255 / 0.55);
    border-radius: 0;
    object-fit: cover;
}

.amenities__legend {
    display: block;
    max-width: 48rem;
    margin-inline: auto;
}

.amenities__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(14, auto);
    grid-auto-flow: column;
    gap: 0.5rem 1.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.amenities__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.amenities__num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    min-width: 1.55rem;
    padding: 0;
    border-radius: 30%;
    background: #7ec8be;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1;
}

.amenities__item-label {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 1.05vw, 0.95rem);
    line-height: 1.3;
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        url("../img/fundo_cinza_folha.jpg") left top / cover no-repeat,
        #f3f4f3;
    color: var(--color-hero-ink);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: min(46rem, calc(100% - 2.5rem));
    margin-inline: auto;
    padding: clamp(3.25rem, 7.5vw, 4.75rem) 0;
    text-align: center;
}

.site-footer__visit {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.85vw, 1.22rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-hero-ink);
}

.site-footer__address {
    margin: 0 0 clamp(1.6rem, 3.8vw, 2.25rem);
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 1.02rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-hero-ink);
}

.site-footer__social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 clamp(1.6rem, 3.8vw, 2.25rem);
    padding: 0;
    list-style: none;
}

.site-footer__social-link {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 0;
    border-radius: 0.55rem;
    background: var(--color-hero-ink);
    color: var(--color-white);
    transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-footer__social-link:hover {
    transform: translateY(-2px);
    background: var(--color-teal);
}

.site-footer__social-icon {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.site-footer__social-link--youtube .site-footer__social-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.5 31.5 0 0 0 0 12a31.5 31.5 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.5 31.5 0 0 0 24 12a31.5 31.5 0 0 0-.5-5.8ZM9.8 15.5v-7l6.3 3.5-6.3 3.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.5 31.5 0 0 0 0 12a31.5 31.5 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.5 31.5 0 0 0 24 12a31.5 31.5 0 0 0-.5-5.8ZM9.8 15.5v-7l6.3 3.5-6.3 3.5Z'/%3E%3C/svg%3E");
}

.site-footer__social-link--instagram .site-footer__social-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm11 1.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm11 1.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E");
}

.site-footer__social-link--linkedin .site-footer__social-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5A2.5 2.5 0 1 1 5 8.5a2.5 2.5 0 0 1-.02-5ZM3.5 9.5h3V21h-3V9.5ZM9.5 9.5h2.9v1.6h.04c.4-.75 1.4-1.55 2.9-1.55 3.1 0 3.7 2.05 3.7 4.7V21h-3v-5.2c0-1.25 0-2.85-1.75-2.85s-2 1.35-2 2.75V21h-3V9.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5A2.5 2.5 0 1 1 5 8.5a2.5 2.5 0 0 1-.02-5ZM3.5 9.5h3V21h-3V9.5ZM9.5 9.5h2.9v1.6h.04c.4-.75 1.4-1.55 2.9-1.55 3.1 0 3.7 2.05 3.7 4.7V21h-3v-5.2c0-1.25 0-2.85-1.75-2.85s-2 1.35-2 2.75V21h-3V9.5Z'/%3E%3C/svg%3E");
}

.site-footer__social-link--tiktok .site-footer__social-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.5 3c.4 2.3 1.8 4 4 4.4V10c-1.5 0-2.9-.5-4-1.3V15a5.5 5.5 0 1 1-5.5-5.5c.3 0 .6 0 .9.1v2.7a2.8 2.8 0 1 0 2 2.7V3h2.6Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.5 3c.4 2.3 1.8 4 4 4.4V10c-1.5 0-2.9-.5-4-1.3V15a5.5 5.5 0 1 1-5.5-5.5c.3 0 .6 0 .9.1v2.7a2.8 2.8 0 1 0 2 2.7V3h2.6Z'/%3E%3C/svg%3E");
}

.site-footer__legal {
    margin: 0 auto;
    max-width: 42rem;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.05vw, 0.8rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-hero-ink);
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header.is-scrolled {
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

.site-header.is-scrolled .site-header__cta {
    border-color: transparent;
    background: var(--color-hero-ink);
    color: var(--color-white);
}

.reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero__bg,
    .hero__content,
    .pool__card,
    .balcony__card {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
