/* ============================================
   SANDRA CASTILHO IMÓVEIS — Premium CSS
   ============================================ */

/* ─── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #D5B263;
  --gold-light:  #E8CA85;
  --gold-dark:   #B8923E;
  --white:       #FFFFFF;
  --offwhite:    #FAF9F6;
  --grey-50:     #F5F3EE;
  --grey-100:    #E8E4DA;
  --grey-200:    #C8C2B0;
  --grey-400:    #8C8272;
  --grey-600:    #5A5248;
  --dark:        #2C3E50;
  --dark-deep:   #1A252F;
  --dark-mid:    #344A60;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --radius-sm:   6px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-full: 100px;

  --shadow-sm:   0 2px 8px rgba(44,62,80,.08);
  --shadow-md:   0 8px 30px rgba(44,62,80,.12);
  --shadow-lg:   0 20px 60px rgba(44,62,80,.18);
  --shadow-gold: 0 8px 30px rgba(213,178,99,.35);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --section-py:  100px;
  --container:   1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── CONTAINER ────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ─── SECTION COMMON ───────────────────────────── */
.section { padding-block: var(--section-py); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-600);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc { margin-inline: auto; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__icon       { width: 18px; height: 18px; flex-shrink: 0; }
.btn__icon--right { order: 1; }

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(213,178,99,.5);
}

/* WhatsApp Header */
.btn--whatsapp {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
  font-size: .82rem;
  padding: 11px 22px;
}
.btn--whatsapp:hover {
  box-shadow: 0 10px 35px rgba(213,178,99,.5);
}

/* Outline white */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dark */
.btn--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--dark:hover {
  background: var(--dark-deep);
  box-shadow: var(--shadow-lg);
}

/* Outline Dark */
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* Sizes */
.btn--lg  { padding: 16px 34px; font-size: .95rem; }
.btn--xl  { padding: 20px 42px; font-size: 1.05rem; }

/* ─── HEADER ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s;
}

.header.scrolled {
  background: rgba(26, 37, 47, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.header__container {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon { width: 40px; height: 36px; }
.logo-icon--sm { width: 32px; height: 28px; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav */
.header__nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease-out);
}
.nav__link:hover {
  color: var(--white);
}
.mobile-nav__header,
.mobile-nav__footer,
.nav__icon-box,
.nav__desc,
.nav__arrow,
.nav__tag {
  display: none;
}

.nav__item {
  list-style: none;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Vídeos Background Fullscreen ────────────────── */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0;
  clip-path: none !important;
  transform: none !important;
  border-radius: 0 !important;
}

/* Desktop: mostra o vídeo 16:9, esconde o 9:16 */
.hero__video--desktop {
  display: block;
  object-position: center center;
}
.hero__video--mobile {
  display: none;
}

/* Mobile: inverte */
@media (max-width: 768px) {
  .hero__video--desktop {
    display: none !important;
  }
  .hero__video--mobile {
    display: block !important;
    object-position: center top;
  }

  .hero {
    min-height: 560px;
    padding-bottom: 40px;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(15,22,30,.82) 0%,
    rgba(26,37,47,.68) 50%,
    rgba(15,22,30,.78) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  padding-top: 80px;
}


.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(213,178,99,.15);
  border: 1px solid rgba(213,178,99,.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .5; }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.03em;
  max-width: 720px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .6;
  animation: bounce-y 2.5s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SERVICES ─────────────────────────────────── */
.services {
  background: var(--offwhite);
  padding-top: var(--section-py);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(213,178,99,.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(1);
}

.service-card__icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: rgba(213,178,99,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s;
}

.service-card.featured .service-card__icon-wrap {
  background: rgba(213,178,99,.2);
}

.service-card:not(.featured):hover .service-card__icon-wrap {
  background: rgba(213,178,99,.2);
}

.service-card__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card.featured .service-card__title { color: var(--white); }

.service-card__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--grey-600);
}

.service-card.featured .service-card__desc { color: rgba(255,255,255,.7); }

.service-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ─── SOBRE ──────────────────────────────────────── */
.sobre { background: var(--white); }

.sobre__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Asymmetric visual */
.sobre__visual { position: relative; }

.sobre__image-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
}

.sobre__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  display: block;
}

.sobre__image-accent {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 65%;
  height: 65%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: .18;
}

.sobre__credentials {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  gap: 18px;
  z-index: 10;
  border: 1px solid rgba(213, 178, 99, 0.35);
}

.credential {
  text-align: center;
}

.credential__value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.credential__label {
  display: block;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 4px;
}

/* Content side */
.sobre__content {
  padding-right: 20px;
}

.sobre__divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin-bottom: 28px;
}

.sobre__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 18px;
}

.sobre__features {
  margin-bottom: 36px;
}

.sobre__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: .92rem;
  color: var(--dark);
  border-bottom: 1px solid var(--grey-100);
}

.sobre__feature:last-child { border-bottom: none; }

.feature__check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

/* ─── DEPOIMENTOS ───────────────────────────────── */
.depoimentos { background: var(--grey-50); }

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(213,178,99,.1);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  position: relative;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
}

.depoimento__stars {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.depoimento__text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--grey-600);
  font-style: italic;
  margin-bottom: 24px;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(213,178,99,0.5);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--offwhite);
}

.author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author__name {
  display: block;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}

.author__detail {
  display: block;
  font-size: .78rem;
  color: var(--grey-400);
  margin-top: 2px;
}

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 55%, #A07820 100%);
  z-index: 0;
}

.cta-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,.12) 0%, transparent 60%);
}

/* Decorative pattern */
.cta-banner__bg::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(44,62,80,.65);
  margin-bottom: 12px;
}

.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(44,62,80,.75);
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ─── AREAS ──────────────────────────────────────── */
.areas { background: var(--offwhite); }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(213,178,99,.12);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.area-card__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 20px;
  color: var(--gold);
}

.area-card__icon svg { width: 100%; height: 100%; }

.area-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.area-card__desc {
  font-size: .9rem;
  color: var(--grey-600);
  line-height: 1.7;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer { background: var(--dark-deep); }

.footer__top { padding: 80px 0 60px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__brand-text {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s, transform .2s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer__link:hover { color: var(--gold); }

.footer__link--icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  cursor: default;
}

.footer__link--icon a { cursor: pointer; }

.footer__link--icon svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copy,
.footer__dev {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ─── FLOAT WHATSAPP ─────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}

.float-whatsapp svg { width: 28px; height: 28px; fill: white; }

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.65);
  animation: none;
}

.float-whatsapp__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateY(-50%) translateX(5px);
}

.float-whatsapp__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

.float-whatsapp:hover .float-whatsapp__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ─── 3D MASCOT AVATAR (BOTTOM LEFT) ─────────────── */
.float-mascot {
  position: fixed;
  bottom: 24px;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  left: 24px;
  z-index: 990;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  animation: mascot-bounce 3.5s ease-in-out infinite;
  transition: transform .3s var(--ease-out);
}

.float-mascot:hover {
  transform: scale(1.06) translateY(-4px);
  animation-play-state: paused;
}

.float-mascot__img {
  width: auto;
  height: 150px;
  max-width: 75px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
  transition: transform .3s ease;
  user-select: none;
}

.float-mascot__bubble {
  position: absolute;
  bottom: 80px;
  left: 68px;
  background: rgba(14, 25, 38, 0.95);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(213, 178, 99, 0.55);
  padding: 8px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
  transition: transform .25s ease, opacity .25s ease, background .2s;
}

.float-mascot__bubble span {
  color: var(--gold-light);
}

.float-mascot:hover .float-mascot__bubble {
  background: var(--dark-deep);
  border-color: var(--gold);
}

@keyframes mascot-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .float-mascot {
    bottom: 20px;
    bottom: max(20px, env(safe-area-inset-bottom, 20px));
    left: 12px;
  }
  .float-mascot__img {
    height: 115px;
    max-width: 58px;
  }
  .float-mascot__bubble {
    bottom: 60px;
    left: 54px;
    font-size: .7rem;
    padding: 6px 11px;
  }
}

/* ─── ANIMATIONS ─────────────────────────────────── */

/* Hero entrance (always fires) */
.animate-fade-up {
  opacity: 0;
  transform: translateY(35px);
}
.animate-fade-up.visible {
  animation: fadeUp .8s var(--ease-out-expo) forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* On-scroll reveal classes */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .65s var(--ease-out-expo) var(--delay, 0s),
              transform .65s var(--ease-out-expo) var(--delay, 0s);
}
.reveal-card.is-visible { opacity: 1; transform: translateY(0); }

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.reveal-slide-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s var(--ease-out-expo) .15s, transform .8s var(--ease-out-expo) .15s;
}
.reveal-slide-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-banner {
  opacity: 0;
  transform: scale(.97);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.reveal-banner.is-visible { opacity: 1; transform: scale(1); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .sobre__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre__visual {
    max-width: 440px;
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .sobre__image-wrap { width: 100%; max-width: 400px; margin: 0 auto; }
  .sobre__credentials {
    bottom: 18px;
    right: 18px;
    padding: 12px 18px;
    gap: 16px;
  }

  .sobre__content { padding-right: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: radial-gradient(circle at 80% 10%, #1e2e3d 0%, #0d151c 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 20px 24px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1), visibility .35s;
    z-index: 9999;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(213, 178, 99, 0.18);
    width: 100%;
  }

  .mobile-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-nav__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .25s;
  }

  .mobile-nav__close:active,
  .mobile-nav__close:hover {
    background: rgba(213, 178, 99, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
  }

  .nav__list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 14px 0;
    padding: 0;
    list-style: none;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
  }

  .nav__link::after { display: none; }

  .nav__link:hover,
  .nav__link:active,
  .nav__link.active-nav {
    background: linear-gradient(90deg, rgba(213, 178, 99, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(213, 178, 99, 0.4);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .nav__link--featured {
    background: rgba(213, 178, 99, 0.08);
    border-color: rgba(213, 178, 99, 0.25);
  }

  .nav__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(213, 178, 99, 0.14);
    color: var(--gold);
    flex-shrink: 0;
  }

  .nav__icon-box svg {
    width: 19px;
    height: 19px;
  }

  .nav__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: left;
  }

  .nav__title {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
  }

  .nav__tag {
    display: inline-block;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-deep);
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .04em;
    line-height: 1;
  }

  .nav__desc {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    line-height: 1.2;
  }

  .nav__arrow {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.6;
    transition: transform .2s, opacity .2s;
  }

  .nav__link:hover .nav__arrow,
  .nav__link:active .nav__arrow {
    opacity: 1;
    transform: translateX(3px);
  }

  .mobile-nav__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .mobile-nav__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: transform .2s, box-shadow .2s;
    box-sizing: border-box;
  }

  .mobile-nav__whatsapp-btn:active {
    transform: scale(0.98);
  }

  .mobile-nav__creci {
    font-size: .68rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: .03em;
    text-align: center;
  }

  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .hero__stats { gap: 20px; }

  .cta-banner__content { flex-direction: column; text-align: center; }
  .cta-banner__actions { width: 100%; align-items: stretch; }
  .btn--xl { width: 100%; justify-content: center; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; }
 
  .sobre__visual { max-width: 380px; margin: 0 auto 24px; }
  .sobre__image-wrap { width: 100%; max-width: 360px; margin: 0 auto; }
  .sobre__credentials {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .sobre__visual { max-width: 330px; margin: 0 auto 20px; }
  .sobre__image-wrap { max-width: 310px; }
  .sobre__credentials {
    bottom: 12px;
    right: 12px;
    padding: 8px 14px;
    gap: 12px;
    border-radius: 12px;
  }
  .credential__value { font-size: 1.05rem; }
  .credential__label { font-size: .56rem; }

  .float-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .float-whatsapp svg { width: 24px; height: 24px; }

  .stat__divider { display: none; }
  .hero__stats { gap: 24px; justify-content: center; }
}

/* ─── FOCUS & ACCESSIBILITY ──────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── MOSTRUÁRIO DE IMÓVEIS ──────────────────────── */
.mostruario {
  background: var(--dark-deep);
}

.mostruario__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .mostruario__grid { grid-template-columns: 1fr; }
}

/* Card link */
.mostruario-card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
  cursor: pointer;
}
.mostruario-card:hover {
  border-color: rgba(213,178,99,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* Video wrap */
.mostruario-card__video-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #000;
}
.mostruario-card__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.mostruario-card:hover .mostruario-card__video-wrap video {
  transform: scale(1.04);
}

/* Text overlay */
.mostruario-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,26,.9) 0%, rgba(10,18,26,.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  pointer-events: none;
}
.mostruario-card__tag {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(213,178,99,.15);
  border: 1px solid rgba(213,178,99,.35);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
}
.mostruario-card__name {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.mostruario-card__price {
  font-family: var(--font-head);
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.mostruario-card__price strong {
  font-size: 1.2rem;
  color: var(--gold);
}

/* "Ver detalhes" hover pill */
.mostruario-card__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(213,178,99,.9);
  color: var(--dark-deep);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity .3s, transform .3s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.mostruario-card:hover .mostruario-card__btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Specs bar */
.mostruario-card__specs {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mostruario-card__specs span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 8px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  border-right: 1px solid rgba(255,255,255,.07);
  white-space: nowrap;
}
.mostruario-card__specs span:last-child { border-right: none; }
.mostruario-card__specs svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* CTA at bottom of section */
.mostruario__cta {
  text-align: center;
  padding-top: 8px;
}

