/* Carlos Eduardo Prime — Landing Page
   Typography: Playfair Display (display serif) · Inter (corpo)
   Palette: Navy #061F42 · Gold #C5A880 · Stone #F8F7F5 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --navy-900: #061F42;
    --navy-700: #0B2B5C;
    --navy-500: #1E3A5F;
    --gold-600: #C5A880;
    --gold-100: #F5EDD9;
    --gold-dim: rgba(197, 168, 128, 0.12);
    --stone-50:  #F8F7F5;
    --white: #FFFFFF;
    --ink: #1A2332;
    --ink-muted: #5C6B82;
    --border: #E2E4E8;
    --border-dark: rgba(255, 255, 255, 0.08);

    --f-display: 'Playfair Display', Georgia, serif;
    --f-body: 'Inter', system-ui, sans-serif;

    /* Motion easing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 0.3s;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--f-body);
    color: var(--ink);
    background: var(--stone-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: var(--dur) var(--ease); }

/* ── Container ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Type ───────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
em { font-style: italic; }

.eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-100);
    margin-bottom: 16px;
}
.eyebrow--dark { color: var(--gold-600); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: background var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease-out-quart),
                box-shadow var(--dur) var(--ease);
}

.btn-gold {
    background: var(--gold-600);
    color: var(--navy-900);
}
.btn-gold:hover {
    background: var(--gold-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}
.btn-gold:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
}
.btn-ghost-dark:hover { border-color: var(--ink); }

.btn-navy {
    background: var(--navy-900);
    color: var(--white);
    border: 1px solid var(--navy-900);
}
.btn-navy:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 31, 66, 0.22);
}
.btn-navy:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn-navy:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-cta-header {
    background: var(--gold-600);
    color: var(--navy-900);
    padding: 9px 22px;
    font-size: 0.8rem;
}
.btn-cta-header:hover { background: var(--gold-100); }

/* ── Header ─────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(6, 31, 66, 0.55);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 900;
    transition: background 0.4s var(--ease);
}
.header.scrolled {
    background: rgba(6, 31, 66, 0.88);
}
.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 84px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-mark {
    height: 44px;
    width: auto;
    display: block;
}
.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.03em;
}
.nav-link:hover { color: var(--white); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--dur) var(--ease);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    color: var(--white);
    padding-top: 84px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0;
    filter: grayscale(18%);
    animation: heroBgFade 1.6s var(--ease-out-expo) 0.05s forwards;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(6, 31, 66, 0.93) 0%,
        rgba(6, 31, 66, 0.74) 32%,
        rgba(6, 31, 66, 0.18) 62%,
        rgba(6, 31, 66, 0.04) 100%
    );
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 80px;
}
.hero-inner {
    max-width: 620px;
}
.hero-text .eyebrow {
    animation: heroFadeSlideUp 0.5s var(--ease-out-expo) 0.1s both;
}
.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-body {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.8;
    animation: heroFadeSlideUp 0.55s var(--ease-out-expo) 0.5s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeSlideUp 0.5s var(--ease-out-expo) 0.65s both;
}

/* h1 line-by-line clip-path reveal */
.hero-line {
    display: block;
    animation: heroLineReveal 0.9s var(--ease-out-expo) both;
}
.hero-line:nth-child(1) { animation-delay: 0.22s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-line em { color: var(--gold-600); }

/* Trust Badge */
.hero-trust {
    position: absolute;
    bottom: 72px;
    right: clamp(28px, 6vw, 96px);
    z-index: 2;
    animation: metricSlideIn 0.8s var(--ease-out-expo) 1.0s both;
}
.trust-badge-inner {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 20px 22px;
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    min-width: 236px;
    max-width: 276px;
}
.trust-badge-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
}
.trust-avatars { display: flex; }
.trust-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy-700);
    border: 2px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--gold-100);
    margin-left: -7px;
    user-select: none;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-pill {
    background: rgba(197, 168, 128, 0.14);
    border: 1px solid rgba(197, 168, 128, 0.26);
    color: var(--gold-100);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.trust-desc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.5;
    margin-bottom: 14px;
}
.trust-rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.trust-rating-num {
    font-family: var(--f-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.trust-rating-right {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.trust-rating-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: heroFadeSlideUp 0.5s var(--ease-out-expo) 0.85s both;
}
.hero-tags-label {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    margin-right: 4px;
}
.hero-tag {
    font-size: 0.73rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    padding: 5px 13px;
    transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.hero-tag:hover {
    background: rgba(255, 255, 255, 0.11);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Hero CTA button — pill */
.btn-hero-cta {
    background: var(--gold-600);
    color: var(--navy-900);
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    gap: 10px;
    border: none;
}
.btn-hero-cta:hover {
    background: var(--gold-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(197, 168, 128, 0.28);
}
.btn-hero-cta:active { transform: translateY(0) scale(0.98); }

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    animation: heroFadeSlideUp 0.6s var(--ease-out-expo) 1.3s both;
}
.hero-scroll-hint span {
    font-size: 0.63rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}
.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollPulse 2s ease-in-out 1.5s infinite;
}

/* ── Hero Keyframes ─────────────────────────────────────── */
@keyframes heroBgFade {
    to { opacity: 0.96; }
}
@keyframes heroFadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineReveal {
    from { clip-path: inset(0 100% 0 0); opacity: 0.2; }
    to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}
@keyframes metricSlideIn {
    from { opacity: 0; transform: translateX(24px); filter: blur(6px); }
    to   { opacity: 1; transform: translateX(0);    filter: blur(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    padding: 13px 0;
    background: var(--gold-600);
}
.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 32s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-900);
    white-space: nowrap;
}
.marquee-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--navy-900);
    opacity: 0.35;
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Proof Banner ───────────────────────────────────────── */
.proof-banner {
    background: var(--stone-50);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.proof-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.proof-stat-num {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
    white-space: nowrap;
}
.proof-stat-label {
    font-size: 0.76rem;
    color: var(--ink-muted);
    max-width: 190px;
    line-height: 1.4;
}
.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .proof-banner-inner {
        flex-direction: column;
        gap: 24px;
    }
    .proof-divider { display: none; }
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--white  { background: var(--white); }
.section--dark   { background: var(--navy-900); color: var(--white); }
.section--stone  { background: var(--stone-50); }
.section--dark h2 { color: var(--white); }

.section-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}
.section-head h2 { color: var(--ink); margin-bottom: 16px; }
.section--dark .section-head h2 { color: var(--white); }
.section-lead {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.72;
}

/* ── Opportunities — Filterable Grid ───────────────────────── */
.opp-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.opp-filter {
    padding: 10px 24px;
    font-family: var(--f-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-muted);
    background: var(--stone-50);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease),
                border-color 0.3s var(--ease), transform 0.2s var(--ease-out-quart);
}
.opp-filter:hover { color: var(--ink); border-color: var(--gold-600); }
.opp-filter.active {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--gold-100);
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.opp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(6, 31, 66, 0.05);
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.4s var(--ease-out-quart), transform 0.4s var(--ease-out-quart),
                box-shadow 0.4s var(--ease);
}
.opp-card.revealed { opacity: 1; transform: none; }
.opp-card:hover { box-shadow: 0 16px 48px rgba(6, 31, 66, 0.12); transform: translateY(-4px); }
.opp-card--hidden {
    opacity: 0 !important;
    transform: scale(0.92) !important;
    pointer-events: none;
}

.opp-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-900); }
.opp-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-quart);
}
.opp-card:hover .opp-media img { transform: scale(1.06); }

.opp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy-900);
    color: var(--gold-100);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
}

.opp-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.opp-place {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 8px;
}
.opp-body h3 {
    font-family: var(--f-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.25;
}
.opp-typology { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 16px; }

.opp-highlight {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.opp-highlight-value {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
}
.opp-highlight-label {
    font-size: 0.72rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.opp-desc { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }

.opp-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-900);
}
.opp-cta::after {
    content: "";
    position: absolute;
    inset: 0;
}
.opp-cta svg { transition: transform 0.25s var(--ease-out-quart); }
.opp-card:hover .opp-cta { color: var(--gold-600); }
.opp-card:hover .opp-cta svg { transform: translateX(3px); }

/* ── Bio ────────────────────────────────────────────────── */
.bio {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
}
.bio-visual { position: relative; }
.bio-frame {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(197, 168, 128, 0.22);
    border-radius: 4px;
}
.bio-placeholder {
    background: var(--navy-700);
    min-height: 380px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    color: rgba(255, 255, 255, 0.45);
    overflow: hidden;
    padding-bottom: 20px;
    position: relative;
}
.bio-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 2px;
}
.bio-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.85) 0%, transparent 100%);
    border-radius: 0 0 2px 2px;
    pointer-events: none;
    z-index: 1;
}
.bio-name-label,
.bio-instagram,
.bio-whatsapp {
    position: relative;
    z-index: 2;
}
.bio-name-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-100);
}
.bio-instagram {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}
.bio-instagram:hover { color: var(--gold-600); }
.bio-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -4px;
}
.bio-whatsapp:hover { color: #25d366; }

/* Corner decorations — animated when bio enters viewport */
.bio-corner {
    position: absolute;
    width: 18px;
    height: 18px;
}
.bio-corner--tl {
    top: -1px; left: -1px;
    border-top: 2px solid var(--gold-600);
    border-left: 2px solid var(--gold-600);
    transform-origin: top left;
}
.bio-corner--br {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--gold-600);
    border-right: 2px solid var(--gold-600);
    transform-origin: bottom right;
}

/* Bio motion — activated when JS is present */
.js-motion .bio-corner--tl,
.js-motion .bio-corner--br {
    transform: scale(0);
    transition: transform 0.55s var(--ease-out-expo);
}
.js-motion .bio-corner--tl { transition-delay: 0.35s; }
.js-motion .bio-corner--br { transition-delay: 0.55s; }
.js-motion .bio-content {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.75s var(--ease-out-expo) 0.15s,
                transform 0.75s var(--ease-out-expo) 0.15s;
}

/* State applied by IntersectionObserver */
.bio--revealed .bio-corner--tl,
.bio--revealed .bio-corner--br { transform: scale(1); }
.bio--revealed .bio-content     { opacity: 1; transform: translateX(0); }

.bio-content .eyebrow { margin-bottom: 16px; }
.bio-content h2 { margin-bottom: 24px; }
.bio-text {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.78;
    margin-bottom: 18px;
}
.case-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid var(--gold-600);
    padding: 22px 24px;
    margin-top: 32px;
    border-radius: 0 4px 4px 0;
}
.case-icon {
    color: var(--gold-600);
    flex-shrink: 0;
    margin-top: 1px;
}
.case-card h4 {
    font-family: var(--f-body);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gold-100);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.case-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* ── Differentiators ────────────────────────────────────── */
.diffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.diff-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--dur) var(--ease),
                transform 0.35s var(--ease-out-quart);
}
.diff-card:hover {
    box-shadow: 0 8px 32px rgba(6, 31, 66, 0.08);
    transform: translateY(-2px);
}
.diff-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-quart);
}
.diff-card:hover::after { transform: scaleX(1); }
.diff-number {
    font-family: var(--f-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.35s var(--ease);
    user-select: none;
}
.diff-card:hover .diff-number { color: rgba(197, 168, 128, 0.4); }
.diff-card h3 {
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.4;
}
.diff-card p {
    font-size: 0.86rem;
    color: var(--ink-muted);
    line-height: 1.72;
}

/* ── Differentiators — two-column redesign ──────────────── */
.diff-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.diff-body {
    font-size: 0.93rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin: 22px 0 32px;
    max-width: 440px;
}

.diff-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.diff-points li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.diff-point-num {
    font-family: var(--f-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-600);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    padding-top: 2px;
}
.diff-points li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.diff-points li strong {
    font-family: var(--f-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}
.diff-points li span {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.diff-cta { display: inline-flex; }

/* ── DisplayCards ───────────────────────────────────────── */
.diff-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0 110px;
}

.display-cards {
    display: grid;
    grid-template-areas: 'stack';
    place-items: center;
}

.dc {
    grid-area: stack;
    position: relative;
    width: 22rem;
    height: 9rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 16px;
    transform: skewY(-8deg);
    transition: transform 0.7s var(--ease-out-quart),
                filter 0.7s var(--ease-out-quart),
                border-color 0.7s var(--ease-out-quart);
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
}

/* Right-side background fade — masks card edge into section bg */
.dc::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -5%;
    height: 110%;
    width: 20rem;
    background: linear-gradient(to left, var(--stone-50) 0%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

/* Desaturation overlay on back cards */
.dc--2::before,
.dc--1::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(248, 247, 245, 0.52);
    z-index: 3;
    transition: opacity 0.7s var(--ease-out-quart);
}

/* Stack positions */
.dc--2 { filter: grayscale(100%); }

.dc--1 {
    transform: skewY(-8deg) translateX(3rem) translateY(2.5rem);
    filter: grayscale(100%);
}

.dc--0 {
    transform: skewY(-8deg) translateX(6rem) translateY(5rem);
}

/* Hover */
.dc--2:hover {
    transform: skewY(-8deg) translateY(-2.5rem);
    filter: grayscale(0%);
    border-color: rgba(6, 31, 66, 0.18);
}
.dc--1:hover {
    transform: skewY(-8deg) translateX(3rem) translateY(2.2rem);
    filter: grayscale(0%);
    border-color: rgba(6, 31, 66, 0.18);
}
.dc--0:hover {
    transform: skewY(-8deg) translateX(6rem) translateY(7rem);
}
.dc--2:hover::before,
.dc--1:hover::before { opacity: 0; }

/* Card inner layout */
.dc-row {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.dc-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-600);
    flex-shrink: 0;
}
.dc-title {
    font-family: var(--f-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin: 0;
    line-height: 1.2;
}
.dc-desc {
    font-size: 0.87rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    position: relative;
    z-index: 2;
}
.dc-meta {
    font-size: 0.76rem;
    color: var(--ink-muted);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ── Qualifier ──────────────────────────────────────────── */
.qualifier {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(6, 31, 66, 0.06);
}
.qualifier-progress { margin-bottom: 40px; }
.q-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}
.q-bar-fill {
    height: 100%;
    width: 33.33%;
    background: var(--gold-600);
    border-radius: 2px;
    transition: width 0.45s var(--ease-out-expo);
}
.q-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--ink-muted);
}
.q-label.active { color: var(--ink); font-weight: 600; }

.qualifier-body { position: relative; }
.q-step { display: none; animation: qFadeIn 0.35s var(--ease-out-expo); }
.q-step.active { display: block; }
@keyframes qFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.q-question {
    font-family: var(--f-body);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.45;
}
.q-options {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.q-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s var(--ease),
                background  0.2s var(--ease);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--ink);
    user-select: none;
    position: relative;
    overflow: hidden;
}
.q-option:hover {
    border-color: var(--gold-600);
    background: var(--gold-dim);
}
.q-option.selected {
    border-color: var(--gold-600);
    background: var(--gold-dim);
}
.q-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s var(--ease),
                background  0.2s var(--ease);
}
.q-option.selected .q-radio {
    border-color: var(--gold-600);
    background: var(--gold-600);
}
.q-option.selected .q-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

/* Ripple on option click */
.q-ripple {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.4);
    transform: translate(-50%, -50%) scale(0);
    animation: qRipple 0.55s var(--ease-out-quart) forwards;
    pointer-events: none;
}
@keyframes qRipple {
    to { transform: translate(-50%, -50%) scale(10); opacity: 0; }
}

.qualifier-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: none;
    border: none;
    padding: 27px 2px;
    text-align: left;
    font-family: var(--f-body);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.2s var(--ease);
}
.faq-question:hover { color: var(--navy-700); }
.faq-question:focus-visible {
    outline: 2px solid var(--gold-600);
    outline-offset: 4px;
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-600);
    transition: transform 0.35s var(--ease-out-quart);
}
.faq-icon::before {
    top: 50%; left: 0;
    width: 100%; height: 1.5px;
    transform: translateY(-50%);
}
.faq-icon::after {
    left: 50%; top: 0;
    width: 1.5px; height: 100%;
    transform: translateX(-50%);
}
.faq-item.active .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item.active .faq-question { color: var(--navy-900); }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease-out-quart);
}
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p {
    padding: 0 2px 27px;
    max-width: 620px;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

.faq-cta {
    text-align: center;
    margin-top: 44px;
    font-size: 0.88rem;
    color: var(--ink-muted);
}
.faq-cta a {
    color: var(--navy-900);
    font-weight: 600;
    border-bottom: 1px solid var(--gold-600);
    padding-bottom: 1px;
}
.faq-cta a:hover { color: var(--navy-700); border-color: var(--navy-700); }

/* ── WhatsApp Float ─────────────────────────────────────── */
@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55),
                    0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}
.wa-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
    z-index: 800;
    transition: transform 0.25s var(--ease-out-quart),
                box-shadow 0.25s var(--ease-out-quart);
    animation: waPulse 2.5s ease-in-out 3s infinite;
}
.wa-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    animation: none;
}
.wa-float:active { transform: scale(0.97); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--navy-900);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 56px;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-mark { height: 34px; width: auto; margin-bottom: 16px; opacity: 0.92; }
.footer-name {
    display: block;
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}
.footer-tagline {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 12px;
    max-width: 30ch;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-social:hover { color: var(--gold-600); }

/* Link / region columns */
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-heading {
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 18px;
}
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 12px;
}
.footer-link:hover { color: var(--gold-600); }
.footer-link--icon svg { flex-shrink: 0; opacity: 0.85; }

.footer-regions {
    list-style: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 2;
}

.footer-creci {
    display: block;
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.38);
}
.footer-top-link { color: rgba(255, 255, 255, 0.5); }
.footer-top-link:hover { color: var(--gold-600); }

.footer-copyright--icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
}
.footer-copyright--icon svg { flex-shrink: 0; opacity: 0.85; }
.footer-copyright--icon:hover { color: var(--gold-600); }

/* ── Property Detail Page ───────────────────────────────── */
.breadcrumb-bar {
    background: var(--stone-50);
    border-bottom: 1px solid var(--border);
    padding-top: 84px;
}
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-size: 0.78rem;
    color: var(--ink-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--border);
}
.breadcrumb a:hover { color: var(--gold-600); }
.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 600; }

.property-hero {
    position: relative;
    background: var(--navy-900);
    color: var(--white);
    overflow: hidden;
}
.property-hero-media {
    position: relative;
    height: clamp(280px, 42vw, 460px);
}
.property-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,31,66,0.15) 0%, rgba(6,31,66,0.92) 100%);
}
.property-hero-content {
    position: relative;
    z-index: 1;
    padding: 32px 0 40px;
}
.property-hero-content .eyebrow { color: var(--gold-600); }
.property-hero-content h1 { color: var(--white); margin-bottom: 10px; }
.property-hero-place {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 18px;
}
.property-hero-badge {
    display: inline-flex;
    background: var(--gold-600);
    color: var(--navy-900);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
}

/* Quick specs strip */
.property-specs {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.property-specs-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 28px 0;
}
.property-spec { display: flex; flex-direction: column; gap: 4px; }
.property-spec-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.property-spec-value {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
}

/* Content + sidebar layout */
.property-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: start;
}
.property-content h2 { font-size: 1.5rem; margin-bottom: 18px; }
.property-content h2:not(:first-child) { margin-top: 48px; }
.property-content p { font-size: 0.93rem; color: var(--ink-muted); line-height: 1.78; }

.property-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}
.property-amenities li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--ink);
}
.property-amenities svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-600); }

.property-diffs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.property-diffs li { display: flex; gap: 14px; align-items: flex-start; }
.property-diffs strong { display: block; font-size: 0.88rem; color: var(--ink); margin-bottom: 2px; }
.property-diffs span { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.6; }

.property-faq { display: flex; flex-direction: column; gap: 2px; }
.property-faq details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.property-faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    list-style: none;
}
.property-faq summary::-webkit-details-marker { display: none; }
.property-faq summary::before {
    content: '+';
    display: inline-block;
    width: 16px;
    color: var(--gold-600);
    font-weight: 700;
}
.property-faq details[open] summary::before { content: '−'; }
.property-faq p {
    margin-top: 12px;
    padding-left: 16px;
    font-size: 0.86rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* Sidebar contact card */
.property-sidebar { position: sticky; top: 108px; }
.property-contact-card {
    background: var(--navy-900);
    color: var(--white);
    border-radius: 10px;
    padding: 32px 28px;
}
.property-contact-card .eyebrow { color: var(--gold-600); margin-bottom: 12px; }
.property-contact-card h3 { color: var(--white); margin-bottom: 10px; }
.property-contact-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 24px;
}
.property-contact-card .btn { width: 100%; margin-bottom: 12px; }
.property-contact-creci {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.property-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 28px;
}
.property-back:hover { color: var(--gold-600); }

/* Photo gallery + CSS-only lightbox */
.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 8px;
}
.gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy-900);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-quart);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(6,31,66,0.45) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(6, 31, 66, 0.94);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox:target { display: flex; }
.lightbox-img {
    width: 100%;
    height: 100%;
    max-width: 1100px;
    max-height: 85vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
}
.lightbox-close:hover { color: var(--gold-600); }

/* ── Pillar Hero (páginas institucionais/serviço, sem imagem) ──── */
.pillar-hero {
    background: var(--navy-900);
    color: var(--white);
    padding: 56px 0 64px;
}
.pillar-hero .eyebrow { color: var(--gold-600); }
.pillar-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 800px; }
.pillar-hero p:not(.article-meta) {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.78;
}
.pillar-hero .article-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* ── Pillar Grid / Card (regiões, serviços, blog) ──────────── */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.pillar-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 28px;
    transition: box-shadow 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease);
}
.pillar-card:hover {
    box-shadow: 0 12px 36px rgba(6, 31, 66, 0.08);
    transform: translateY(-3px);
    border-color: rgba(197, 168, 128, 0.4);
}
.pillar-card-tag {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 12px;
}
.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.pillar-card p {
    font-size: 0.87rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}
.pillar-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-900);
}
.pillar-card-cta svg { transition: transform 0.25s var(--ease-out-quart); }
.pillar-card:hover .pillar-card-cta { color: var(--gold-600); }
.pillar-card:hover .pillar-card-cta svg { transform: translateX(3px); }

/* ── Opportunity card — placeholder media (sem foto real ainda) ── */
.opp-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.opp-media--placeholder img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    opacity: 0.9;
}

/* ── Footer regions as links ────────────────────────────────── */
.footer-regions {
    list-style: none;
    font-size: 0.85rem;
    line-height: 2;
}
.footer-regions li .footer-link {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.4);
}
.footer-regions li .footer-link:hover { color: var(--gold-600); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-trust { bottom: 56px; right: 20px; }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
    .footer-brand { grid-column: 1 / -1; }

    .bio { grid-template-columns: 1fr; }
    .bio-placeholder { min-height: 260px; }

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

    .diff-layout { gap: 40px; }
    .dc { width: 18rem; }
    .dc::after { width: 16rem; }
    .dc--1 { transform: skewY(-8deg) translateX(2.5rem) translateY(2.5rem); }
    .dc--0 { transform: skewY(-8deg) translateX(5rem) translateY(5rem); }
    .dc--1:hover { transform: skewY(-8deg) translateX(2.5rem) translateY(2.2rem); }
    .dc--0:hover { transform: skewY(-8deg) translateX(5rem) translateY(7rem); }

    .property-layout { grid-template-columns: 1fr; gap: 40px; }
    .property-sidebar { position: static; }
}

@media (max-width: 768px) {
    .header .container {
        grid-template-columns: auto auto;
        justify-content: space-between;
        height: 72px;
    }
    .logo-mark { height: 36px; }
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--navy-900);
        padding: 12px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 900;
    }
    .nav.open .nav-link {
        padding: 13px 2px;
        font-size: 0.92rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav.open .nav-link:last-child { border-bottom: none; }
    .header-actions { display: none; }
    .hamburger {
        display: flex;
        padding: 13px;
        margin: -13px;
    }

    .hero-trust { display: none; }
    .hero-scroll-hint { display: none; }

    .opp-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
    .opp-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }

    .breadcrumb-bar { padding-top: 72px; }
    .property-amenities { grid-template-columns: 1fr; }
    .property-specs-inner { gap: 20px; padding: 22px 0; }
    .property-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
    .lightbox { padding: 16px; }

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

    .diff-layout { grid-template-columns: 1fr; gap: 0; }
    .diff-visual { display: none; }

    .qualifier { padding: 28px 20px; }

    .faq-question { font-size: 0.94rem; padding: 22px 2px; gap: 16px; }
    .faq-answer p { padding: 0 2px 22px; }

    .footer { padding-top: 56px; }
    .footer-top { grid-template-columns: 1fr; row-gap: 40px; }
    .footer-brand { grid-column: auto; align-items: center; text-align: center; }
    .footer-tagline { max-width: 34ch; }
    .footer-col { align-items: center; text-align: center; }
    .footer-bottom { flex-direction: column-reverse; gap: 12px; text-align: center; }

    .section { padding: 64px 0; }
    .wa-float { bottom: 24px; right: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero .container { padding-top: 24px; padding-bottom: 40px; }
    .hero-body { margin-bottom: 28px; }
    .section { padding: 48px 0; }
    .section-head { margin-bottom: 32px; }
    .qualifier { padding: 20px 14px; }
    .qualifier-nav { flex-direction: column-reverse; gap: 10px; }
    .qualifier-nav .btn { width: 100%; }
    #qPrev { display: none; }
    #qPrev.visible { display: inline-flex; }
    .bio-placeholder { min-height: 200px; }
    .opp-grid { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    /* Ensure hero content is immediately visible */
    .hero-bg { opacity: 0.14; }
    .marquee-track { animation: none; }
}
