/* ─── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
    --bg:           #080810;
    --bg-alt:       #0f0f1a;
    --bg-card:      #12121e;
    --ink:          #ffffff;
    --ink-muted:    rgba(255,255,255,0.55);
    --ink-faint:    rgba(255,255,255,0.25);
    --accent:       #e8530a;
    --accent-hover: #c4420a;
    --accent-glow:  rgba(232,83,10,0.25);
    --gold:         #f0a500;
    --green:        #22c55e;
    --surface:      #12121e;
    --border:       rgba(255,255,255,0.08);
    --border-hover: rgba(232,83,10,0.4);

    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --size-xs:   0.75rem;
    --size-sm:   0.875rem;
    --size-base: 1rem;
    --size-lg:   1.125rem;
    --size-xl:   1.5rem;
    --size-2xl:  2rem;
    --size-3xl:  2.75rem;
    --size-4xl:  3.75rem;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semi:   600;
    --weight-bold:   700;
    --weight-black:  800;
    --leading-tight: 1.15;
    --leading-body:  1.7;

    --max-width:  1200px;
    --nav-height: 72px;
    --section-y:  100px;
    --section-x:  5%;
    --radius-sm:  4px;
    --radius:     10px;
    --radius-lg:  18px;
    --radius-xl:  28px;
    --ease:       cubic-bezier(0.4,0,0.2,1);
    --duration:   240ms;
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
    background:var(--bg);
    color:var(--ink);
    font-family:var(--font-body);
    font-size:var(--size-base);
    line-height:var(--leading-body);
    -webkit-font-smoothing:antialiased;
}
img,video { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }
input,textarea,select { font:inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family:var(--font-heading);
    font-weight:var(--weight-black);
    line-height:var(--leading-tight);
    color:var(--ink);
}
h1 { font-size:clamp(2.4rem,5.5vw,4.2rem); }
h2 { font-size:clamp(1.9rem,3.5vw,3rem); }
h3 { font-size:clamp(1.15rem,2vw,1.5rem); }
h4 { font-size:var(--size-lg); }
p  { color:var(--ink-muted); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
    padding:0.75rem 1.75rem;
    border-radius:var(--radius);
    font-size:var(--size-base);
    font-weight:var(--weight-semi);
    transition:background var(--duration) var(--ease),
               color var(--duration) var(--ease),
               transform var(--duration) var(--ease),
               box-shadow var(--duration) var(--ease);
    white-space:nowrap;
    border:2px solid transparent;
}
.btn:hover { transform:translateY(-2px); }
.btn--primary {
    background:var(--accent);
    color:#fff;
    border-color:var(--accent);
}
.btn--primary:hover {
    background:var(--accent-hover);
    border-color:var(--accent-hover);
    box-shadow:0 8px 24px var(--accent-glow);
}
.btn--outline {
    background:transparent;
    color:var(--ink);
    border-color:rgba(255,255,255,0.3);
}
.btn--outline:hover {
    border-color:var(--accent);
    color:var(--accent);
}
.btn--sm { padding:0.5rem 1.1rem; font-size:var(--size-sm); }
.btn--lg { padding:0.9rem 2.2rem; font-size:var(--size-lg); }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
    position:fixed; top:0; left:0; right:0;
    height:var(--nav-height);
    z-index:100;
    background:transparent;
    transition:background var(--duration) var(--ease),
               backdrop-filter var(--duration) var(--ease),
               border-color var(--duration) var(--ease);
    border-bottom:1px solid transparent;
}
.nav.is-scrolled {
    background:rgba(8,8,16,0.9);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-color:var(--border);
}
.nav__inner {
    max-width:var(--max-width);
    height:100%;
    margin-inline:auto;
    padding-inline:var(--section-x);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:2rem;
}
.nav__logo {
    display:flex;
    align-items:center;
    gap:0.6rem;
    flex-shrink:0;
}
.nav__logo-icon {
    width:36px; height:36px;
    background:var(--accent);
    color:#fff;
    border-radius:var(--radius-sm);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:var(--weight-black);
    font-size:var(--size-lg);
    line-height:1;
}
.nav__logo-text {
    font-size:var(--size-lg);
    font-weight:var(--weight-medium);
    color:var(--ink);
}
.nav__logo-text strong { font-weight:var(--weight-black); color:var(--accent); }
.nav__links {
    display:flex;
    align-items:center;
    gap:2rem;
    margin-left:auto;
}
.nav__links li a {
    font-size:var(--size-sm);
    font-weight:var(--weight-medium);
    color:var(--ink-muted);
    transition:color var(--duration) var(--ease);
}
.nav__links li a:hover { color:var(--ink); }
.nav__links li a.btn { color:#fff; }
.nav__toggle {
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:36px; height:36px;
    padding:4px;
    flex-shrink:0;
}
.nav__toggle span {
    display:block;
    height:2px;
    background:var(--ink);
    border-radius:2px;
    transition:transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
    transform-origin:center;
}
.nav--open .nav__toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav--open .nav__toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
    min-height:100svh;
    display:flex;
    align-items:center;
    padding-top:var(--nav-height);
    padding-inline:var(--section-x);
    background-color:var(--bg);
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}
.hero::before {
    content:'';
    position:absolute;
    inset:0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px);
    pointer-events:none;
    z-index:1;
}
.hero__overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(8,8,16,0.88) 0%, rgba(8,8,16,0.6) 55%, rgba(8,8,16,0.3) 100%);
    z-index:2;
}
.hero__inner {
    position:relative;
    z-index:3;
    max-width:var(--max-width);
    margin-inline:auto;
    width:100%;
    padding-block:calc(var(--section-y) * 0.8);
}
.hero__badge {
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
    background:rgba(232,83,10,0.15);
    border:1px solid rgba(232,83,10,0.35);
    color:var(--accent);
    font-size:var(--size-sm);
    font-weight:var(--weight-semi);
    padding:0.35rem 0.9rem;
    border-radius:999px;
    margin-bottom:1.5rem;
    letter-spacing:0.02em;
}
.hero__badge::before {
    content:'';
    width:6px; height:6px;
    background:var(--accent);
    border-radius:50%;
    animation:pulse 2s infinite;
}
.hero__eyebrow {
    font-size:var(--size-sm);
    font-weight:var(--weight-semi);
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:1rem;
}
.hero__title {
    margin-bottom:1.5rem;
    max-width:16ch;
    letter-spacing:-0.02em;
}
.hero__subtitle {
    font-size:var(--size-lg);
    color:rgba(255,255,255,0.7);
    margin-bottom:2.5rem;
    max-width:48ch;
}
.hero__ctas { display:flex; gap:1rem; flex-wrap:wrap; }
.hero__scroll-hint {
    position:absolute;
    bottom:2.5rem;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
}
.hero__scroll-hint span {
    display:block;
    width:2px;
    height:40px;
    background:linear-gradient(to bottom, transparent, var(--accent));
    margin-inline:auto;
    animation:scrollLine 2s ease-in-out infinite;
}

/* ─── STATS BAR ──────────────────────────────────────────────────────────── */
.stats {
    background:var(--accent);
    padding:2rem var(--section-x);
}
.stats__inner {
    max-width:var(--max-width);
    margin-inline:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
    text-align:center;
}
.stats__item { display:flex; flex-direction:column; gap:0.25rem; }
.stats__num {
    font-size:clamp(1.8rem,3vw,2.5rem);
    font-weight:var(--weight-black);
    color:#fff;
    line-height:1.1;
}
.stats__label {
    font-size:var(--size-sm);
    color:rgba(255,255,255,0.75);
    font-weight:var(--weight-medium);
}

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
    padding:var(--section-y) var(--section-x);
}
.section__inner {
    max-width:var(--max-width);
    margin-inline:auto;
}
.section__header {
    margin-bottom:3.5rem;
}
.section__eyebrow {
    font-size:var(--size-sm);
    font-weight:var(--weight-semi);
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:0.75rem;
}
.section__title { margin-bottom:1rem; }
.section__body  { font-size:var(--size-lg); max-width:55ch; }
.text-center { text-align:center; }
.text-center p { margin-inline:auto; }
.text-center .section__body { margin-inline:auto; }

/* ─── IMÓVEIS ────────────────────────────────────────────────────────────── */
.imoveis { background:var(--bg-alt); }
.imoveis__filters {
    display:flex;
    gap:0.75rem;
    flex-wrap:wrap;
    margin-bottom:2.5rem;
}
.filter-btn {
    padding:0.5rem 1.25rem;
    border-radius:999px;
    font-size:var(--size-sm);
    font-weight:var(--weight-medium);
    color:var(--ink-muted);
    border:1px solid var(--border);
    background:var(--bg-card);
    transition:all var(--duration) var(--ease);
}
.filter-btn:hover, .filter-btn.active {
    background:var(--accent);
    color:#fff;
    border-color:var(--accent);
}
.imoveis__grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.75rem;
}
.imoveis__empty {
    grid-column:1/-1;
    text-align:center;
    padding:3rem;
    color:var(--ink-muted);
}
.imovel-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    transition:transform var(--duration) var(--ease),
               border-color var(--duration) var(--ease),
               box-shadow var(--duration) var(--ease);
}
.imovel-card:hover {
    transform:translateY(-4px);
    border-color:var(--border-hover);
    box-shadow:0 16px 48px rgba(232,83,10,0.12);
}
.imovel-card__img {
    height:220px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    gap:0.5rem;
    padding:1rem;
}
.imovel-card__badge {
    align-self:flex-start;
    font-size:var(--size-xs);
    font-weight:var(--weight-bold);
    padding:0.3rem 0.7rem;
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:0.06em;
}
.imovel-card__badge--venda       { background:var(--accent); color:#fff; }
.imovel-card__badge--arrendamento { background:var(--gold); color:#111; }
.imovel-card__badge--novo        { background:var(--green); color:#fff; }
.imovel-card__body { padding:1.5rem; }
.imovel-card__tipo {
    font-size:var(--size-xs);
    font-weight:var(--weight-semi);
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:0.08em;
    margin-bottom:0.4rem;
}
.imovel-card__title {
    font-size:var(--size-lg);
    font-weight:var(--weight-bold);
    margin-bottom:0.5rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.imovel-card__local {
    display:flex;
    align-items:center;
    gap:0.35rem;
    font-size:var(--size-sm);
    color:var(--ink-muted);
    margin-bottom:1rem;
}
.imovel-card__local svg { width:14px; height:14px; flex-shrink:0; color:var(--accent); }
.imovel-card__specs {
    display:flex;
    gap:1rem;
    margin-bottom:1.25rem;
    padding-top:1rem;
    border-top:1px solid var(--border);
}
.imovel-card__specs span {
    display:flex;
    align-items:center;
    gap:0.3rem;
    font-size:var(--size-sm);
    color:var(--ink-muted);
}
.imovel-card__specs svg { width:14px; height:14px; flex-shrink:0; }
.imovel-card__footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}
.imovel-card__preco {
    font-size:var(--size-xl);
    font-weight:var(--weight-black);
    color:var(--ink);
    white-space:nowrap;
}

/* ─── SERVIÇOS ───────────────────────────────────────────────────────────── */
.servicos { background:var(--bg); }

.servicos__bento {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:auto auto auto;
    gap:1.5rem;
}

/* Row 1: featured (2col) + card */
.servico-card:nth-child(1) { grid-column:span 2; }

/* Row 2: 3 equal cards — default */

/* Row 3: wide card (2col) + accent card */
.servico-card--wide   { grid-column:span 2; }

.servico-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    display:flex;
    flex-direction:column;
    gap:0.75rem;
    transition:border-color var(--duration) var(--ease),
               transform var(--duration) var(--ease),
               box-shadow var(--duration) var(--ease);
}
.servico-card:hover {
    border-color:var(--border-hover);
    transform:translateY(-3px);
    box-shadow:0 12px 36px rgba(232,83,10,0.1);
}
.servico-card--featured {
    background:linear-gradient(135deg, rgba(232,83,10,0.1) 0%, var(--bg-card) 60%);
    border-color:rgba(232,83,10,0.25);
}
.servico-card--featured:hover {
    border-color:rgba(232,83,10,0.5);
    box-shadow:0 16px 48px rgba(232,83,10,0.15);
}
.servico-card--accent {
    background:linear-gradient(135deg, rgba(240,165,0,0.07) 0%, var(--bg-card) 70%);
    border-color:rgba(240,165,0,0.2);
}
.servico-card--accent:hover { border-color:rgba(240,165,0,0.4); }

.servico-card__icon {
    width:52px; height:52px;
    background:rgba(232,83,10,0.12);
    border-radius:var(--radius);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:var(--accent);
}
.servico-card__icon svg { width:24px; height:24px; }
.servico-card__tag {
    display:inline-flex;
    align-self:flex-start;
    background:var(--accent);
    color:#fff;
    font-size:var(--size-xs);
    font-weight:var(--weight-bold);
    padding:0.25rem 0.65rem;
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:0.06em;
}
.servico-card__title {
    font-size:var(--size-lg);
    font-weight:var(--weight-bold);
    margin-top:0.25rem;
}
.servico-card--featured .servico-card__title { font-size:var(--size-xl); }
.servico-card__desc { font-size:var(--size-sm); line-height:1.7; flex:1; }
.servico-card__link {
    display:inline-flex;
    align-items:center;
    gap:0.4rem;
    font-size:var(--size-sm);
    font-weight:var(--weight-semi);
    color:var(--accent);
    margin-top:0.5rem;
    transition:gap var(--duration) var(--ease);
}
.servico-card__link:hover { gap:0.7rem; }
.servico-card__link svg { width:14px; height:14px; }

/* Wide card — horizontal layout */
.servico-card--wide {
    flex-direction:row;
    align-items:center;
    gap:2.5rem;
    padding:2rem 2.5rem;
}
.servico-card--wide .servico-card__wide-left {
    display:flex;
    align-items:flex-start;
    gap:1.5rem;
    flex:1;
}
.servico-card--wide .servico-card__desc { flex:none; }
.servico-card__wide-right {
    display:flex;
    align-items:center;
    gap:2rem;
    flex-shrink:0;
}
.servico-card__stat {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.2rem;
    text-align:center;
}
.servico-card__stat span {
    font-size:var(--size-2xl);
    font-weight:var(--weight-black);
    color:var(--accent);
    line-height:1;
}
.servico-card__stat {
    font-size:var(--size-xs);
    color:var(--ink-muted);
    white-space:nowrap;
}

/* ─── SOBRE ──────────────────────────────────────────────────────────────── */
.sobre { background:var(--bg-alt); }
.sobre__inner {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5rem;
    align-items:center;
}
.sobre__img-wrap {
    position:relative;
    border-radius:var(--radius-xl);
    overflow:visible;
}
.sobre__img {
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:var(--radius-xl);
    display:block;
}
.sobre__img-badge {
    position:absolute;
    bottom:-1.5rem;
    right:-1.5rem;
    background:var(--accent);
    color:#fff;
    border-radius:var(--radius-lg);
    padding:1.25rem 1.5rem;
    text-align:center;
    box-shadow:0 8px 32px var(--accent-glow);
}
.sobre__img-badge-num {
    display:block;
    font-size:2rem;
    font-weight:var(--weight-black);
    line-height:1;
}
.sobre__img-badge-txt {
    display:block;
    font-size:var(--size-xs);
    opacity:0.85;
    margin-top:0.25rem;
    line-height:1.4;
}
.sobre__body {
    font-size:var(--size-lg);
    line-height:1.75;
    margin-bottom:2rem;
    max-width:52ch;
}
.sobre__bullets {
    display:flex;
    flex-direction:column;
    gap:0.75rem;
    margin-bottom:2.5rem;
}
.sobre__bullets li {
    display:flex;
    align-items:center;
    gap:0.75rem;
    font-size:var(--size-base);
    color:var(--ink-muted);
}
.sobre__bullets svg {
    width:18px; height:18px;
    color:var(--accent);
    flex-shrink:0;
}

/* ─── EQUIPA ─────────────────────────────────────────────────────────────── */
.equipa { background:var(--bg); }
.equipa__grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
}
.membro-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    transition:transform var(--duration) var(--ease),
               border-color var(--duration) var(--ease);
}
.membro-card:hover {
    transform:translateY(-4px);
    border-color:var(--border-hover);
}
.membro-card__img {
    height:260px;
    background-size:cover;
    background-position:top center;
}
.membro-card__body { padding:1.25rem; }
.membro-card__nome {
    font-size:var(--size-lg);
    font-weight:var(--weight-bold);
    margin-bottom:0.25rem;
}
.membro-card__cargo {
    font-size:var(--size-sm);
    color:var(--accent);
    font-weight:var(--weight-medium);
}

/* ─── TESTEMUNHOS ────────────────────────────────────────────────────────── */
.testemunhos { background:var(--bg-alt); }
.testemunhos__grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
}
.test-card {
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    transition:border-color var(--duration) var(--ease),
               transform var(--duration) var(--ease);
}
.test-card:hover {
    border-color:var(--border-hover);
    transform:translateY(-3px);
}
.test-card__stars {
    display:flex;
    gap:0.2rem;
    margin-bottom:1rem;
}
.test-card__stars svg {
    width:16px; height:16px;
    color:var(--gold);
}
.test-card__text {
    font-size:var(--size-base);
    line-height:1.7;
    color:rgba(255,255,255,0.75);
    margin-bottom:1.5rem;
    font-style:italic;
}
.test-card__author {
    display:flex;
    flex-direction:column;
    gap:0.15rem;
    border-top:1px solid var(--border);
    padding-top:1rem;
}
.test-card__author strong {
    font-size:var(--size-sm);
    font-weight:var(--weight-bold);
    color:var(--ink);
}
.test-card__author span {
    font-size:var(--size-xs);
    color:var(--accent);
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
    background:linear-gradient(135deg, var(--accent) 0%, #b03800 100%);
    padding:var(--section-y) var(--section-x);
    text-align:center;
    position:relative;
    overflow:hidden;
}
.cta-banner::before {
    content:'';
    position:absolute;
    inset:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner {
    position:relative;
    z-index:1;
    max-width:700px;
    margin-inline:auto;
}
.cta-banner__title {
    font-size:clamp(1.8rem,3.5vw,2.8rem);
    color:#fff;
    margin-bottom:1rem;
    letter-spacing:-0.02em;
}
.cta-banner__sub {
    font-size:var(--size-lg);
    color:rgba(255,255,255,0.8);
    margin-bottom:2rem;
    max-width:none;
}
.cta-banner .btn--primary {
    background:#fff;
    color:var(--accent);
    border-color:#fff;
}
.cta-banner .btn--primary:hover {
    background:rgba(255,255,255,0.9);
    box-shadow:0 8px 32px rgba(0,0,0,0.2);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
    background:var(--bg);
    border-top:1px solid var(--border);
    padding-top:calc(var(--section-y) * 0.9);
}
.footer__inner {
    max-width:var(--max-width);
    margin-inline:auto;
    padding-inline:var(--section-x);
    display:grid;
    grid-template-columns:1.6fr repeat(3,1fr);
    gap:3rem;
    padding-bottom:calc(var(--section-y) * 0.7);
}
.footer__logo {
    font-size:var(--size-xl);
    font-weight:var(--weight-medium);
    color:var(--ink);
    display:inline-block;
    margin-bottom:1rem;
}
.footer__logo strong { font-weight:var(--weight-black); color:var(--accent); }
.footer__tagline {
    font-size:var(--size-sm);
    color:var(--ink-muted);
    max-width:26ch;
    line-height:1.6;
}
.footer__heading {
    font-size:var(--size-xs);
    font-weight:var(--weight-bold);
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:1.25rem;
}
.footer__list { display:flex; flex-direction:column; gap:0.6rem; }
.footer__list li, .footer__list li a {
    font-size:var(--size-sm);
    color:var(--ink-muted);
    transition:color var(--duration) var(--ease);
}
.footer__list li a:hover { color:var(--ink); }
.footer__form-title {
    font-size:var(--size-sm);
    font-weight:var(--weight-semi);
    color:var(--ink);
    margin-bottom:1rem;
}
.footer__bottom {
    border-top:1px solid var(--border);
    max-width:var(--max-width);
    margin-inline:auto;
    padding:1.5rem var(--section-x);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    flex-wrap:wrap;
}
.footer__bottom p {
    font-size:var(--size-xs);
    color:var(--ink-faint);
    max-width:none;
}
.footer__bottom a { color:var(--accent); }

/* ─── FLUENT FORMS OVERRIDES ─────────────────────────────────────────────── */
.fluentform .ff-el-input--label label { color:var(--ink-muted) !important; font-size:var(--size-sm) !important; }
.fluentform .ff-el-form-control {
    background:rgba(255,255,255,0.06) !important;
    border:1px solid var(--border) !important;
    color:var(--ink) !important;
    border-radius:var(--radius-sm) !important;
    font-size:var(--size-sm) !important;
}
.fluentform .ff-el-form-control:focus {
    border-color:var(--accent) !important;
    outline:none !important;
    box-shadow:0 0 0 3px var(--accent-glow) !important;
}
.fluentform .ff-btn-submit {
    background:var(--accent) !important;
    border-color:var(--accent) !important;
    color:#fff !important;
    font-weight:var(--weight-semi) !important;
    border-radius:var(--radius) !important;
    width:100% !important;
}
.fluentform .ff-btn-submit:hover { background:var(--accent-hover) !important; }

/* ─── FLOATING BUTTONS ───────────────────────────────────────────────────── */
.float-whatsapp, .float-phone {
    position:fixed;
    right:1.5rem;
    z-index:90;
    width:52px; height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.3);
    transition:transform var(--duration) var(--ease),
               box-shadow var(--duration) var(--ease);
}
.float-whatsapp:hover, .float-phone:hover {
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 8px 28px rgba(0,0,0,0.4);
}
.float-whatsapp {
    bottom:5.5rem;
    background:#25d366;
}
.float-phone {
    bottom:1.5rem;
    background:var(--accent);
}
.float-whatsapp svg, .float-phone svg {
    width:24px; height:24px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
    opacity:0;
    transition:opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal       { transform:translateY(30px); }
.reveal-left  { transform:translateX(-40px); }
.reveal-right { transform:translateX(40px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
    opacity:1;
    transform:translate(0);
}

/* ─── KEYFRAMES ──────────────────────────────────────────────────────────── */
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(1.3); }
}
@keyframes scrollLine {
    0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
    50%  { opacity:1; }
    100% { opacity:0; transform:scaleY(1); transform-origin:top; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width:1024px) {
    .imoveis__grid { grid-template-columns:repeat(2,1fr); }
    .equipa__grid  { grid-template-columns:repeat(2,1fr); }
    .sobre__inner  { grid-template-columns:1fr; gap:3rem; }
    .sobre__img    { height:380px; }
    .sobre__img-badge { bottom:-1rem; right:1rem; }
}
@media (max-width:900px) {
    .stats__inner { grid-template-columns:repeat(2,1fr); }
    .servicos__bento { grid-template-columns:1fr 1fr; }
    .servico-card:nth-child(1) { grid-column:span 2; }
    .servico-card--wide { grid-column:span 2; flex-direction:column; align-items:flex-start; gap:1.5rem; }
    .servico-card--wide .servico-card__wide-left { flex-direction:column; }
    .servico-card__wide-right { width:100%; justify-content:flex-start; }
    .testemunhos__grid { grid-template-columns:1fr 1fr; }
    .footer__inner { grid-template-columns:1fr 1fr; gap:2rem; }
}
@media (max-width:768px) {
    :root { --section-y:65px; --section-x:6%; --nav-height:64px; }
    .nav__toggle { display:flex; }
    .nav__links {
        position:fixed;
        top:var(--nav-height);
        left:0; right:0; bottom:0;
        background:var(--bg);
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:1.5rem var(--section-x);
        transform:translateX(100%);
        transition:transform var(--duration) var(--ease);
        overflow-y:auto;
        border-top:1px solid var(--border);
    }
    .nav--open .nav__links { transform:translateX(0); }
    .nav__links li { width:100%; border-bottom:1px solid var(--border); }
    .nav__links li a {
        display:block;
        padding:1rem 0;
        font-size:var(--size-base);
        color:var(--ink-muted);
    }
    .nav__links li a.btn {
        margin-block:1rem;
        display:inline-flex;
    }
    .imoveis__grid { grid-template-columns:1fr; }
    .equipa__grid  { grid-template-columns:repeat(2,1fr); }
    .servicos__grid { grid-template-columns:1fr; }
    .testemunhos__grid { grid-template-columns:1fr; }
    .hero__ctas { flex-direction:column; align-items:flex-start; }
    .hero__ctas .btn { width:fit-content; }
}
@media (max-width:480px) {
    .stats__inner  { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
    .equipa__grid  { grid-template-columns:1fr; }
    .footer__inner { grid-template-columns:1fr; }
    .footer__bottom { flex-direction:column; text-align:center; }
    .hero__badge   { font-size:0.7rem; }
}

/* ─── SINGLE IMOVEL ─────────────────────────────────────────────────────── */
.single-imovel__hero {
    height:420px;
    background-size:cover;
    background-position:center;
    position:relative;
    border-radius:var(--radius-xl);
    overflow:hidden;
    margin-bottom:2.5rem;
    display:flex;
    align-items:flex-end;
}
.single-imovel__overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(8,8,16,0.9) 0%, transparent 60%);
}
.single-imovel__hero-content {
    position:relative;
    z-index:1;
    padding:2rem;
    display:flex;
    flex-direction:column;
    gap:0.5rem;
}
.single-imovel__hero-content h1 { font-size:clamp(1.5rem,3vw,2.2rem); }
.single-imovel__hero-content p  { color:rgba(255,255,255,0.7); }
.single-imovel__preco {
    font-size:clamp(1.8rem,3vw,2.5rem);
    font-weight:var(--weight-black);
    color:var(--accent);
    margin-bottom:1.5rem;
}
.single-imovel__specs {
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
    margin-bottom:2rem;
    padding:1.5rem;
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
}
.single-imovel__specs div {
    display:flex;
    flex-direction:column;
    gap:0.2rem;
}
.single-imovel__specs strong {
    font-size:var(--size-lg);
    font-weight:var(--weight-bold);
    color:var(--ink);
}
.single-imovel__specs span {
    font-size:var(--size-xs);
    color:var(--ink-muted);
    text-transform:uppercase;
    letter-spacing:0.08em;
}
.single-imovel__desc {
    color:var(--ink-muted);
    line-height:1.75;
    margin-bottom:2rem;
}
