/* =========================================================
   Landing César Martins · VS.Brothers × RE/MAX Place Riverview
   Identidade: azul VS #002277 · Montserrat · fundos creme
   ========================================================= */
:root {
  --navy: #0b2240;
  --navy-600: #163a75;
  --navy-800: #081a33;
  --navy-900: #06142a;
  --navy-950: #040d1c;
  --sky: #cfe0ff;
  --cream: #fbfaf7;
  --paper: #f6f4ef;
  --sand: #ece7dd;
  --clay: #d9d2c5;
  --ink: #1a1c22;
  --ink-soft: #4a4d57;
  --stone: #8c8b85;
  --white: #ffffff;
  --wa: #25d366;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 28px;
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  line-height: 1.5;
  overflow-x: clip;
  width: 100%;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--navy); color: #fff; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

.container { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.eyebrow {
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0; color: var(--navy);
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-top: 18px; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-soft); line-height: 1.6; }
.section { padding-block: clamp(72px, 10vw, 128px); }
.section--paper { background: var(--paper); overflow: hidden; }
.story, .contact, #metodo { overflow: hidden; }
.section--navy { background: var(--navy); color: #fff; overflow: hidden; }
.section--navy .eyebrow { color: rgba(255,255,255,0.7); }
.section--navy .lead { color: rgba(255,255,255,0.8); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 1.5px solid transparent; cursor: pointer; font-family: inherit; line-height: 1;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px -12px rgba(0,34,119,.55); }
.btn--primary:hover { background: var(--navy-600); }
.btn--white { background: #fff; color: var(--navy); box-shadow: 0 12px 30px -14px rgba(0,0,0,.5); }
.btn--white:hover { background: var(--sky); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--outline { border-color: rgba(26,28,34,.2); color: var(--ink); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1fb85a; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn.is-loading { opacity: .6; pointer-events: none; }

/* ---------- header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background .5s, box-shadow .5s, padding .4s;
  padding-block: 18px;
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__brand { display: flex; align-items: center; gap: 14px; }
.header__logo { height: 40px; width: auto; }
.header__logo--dark { display: none; }
.header__divider { width: 1px; height: 26px; background: rgba(255,255,255,.3); }
.header__office { font-size: .8rem; font-weight: 600; letter-spacing: 0; color: rgba(255,255,255,.8); }
.header__nav { display: flex; align-items: center; gap: 22px; }
.header__link { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85); }
.header__link:hover { color: #fff; }
.header .btn { padding: 11px 20px; font-size: .85rem; }
.header.is-solid { background: rgba(251,250,247,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,.06); padding-block: 12px; }
.header.is-solid .header__logo--light { display: none; }
.header.is-solid .header__logo--dark { display: block; }
.header.is-solid .header__divider { background: rgba(0,0,0,.15); }
.header.is-solid .header__office { color: var(--stone); }
.header.is-solid .header__link { color: var(--ink-soft); }
.header.is-solid .header__link:hover { color: var(--navy); }
.header.is-solid .btn--white { background: var(--navy); color: #fff; }
@media (max-width: 900px) {
  .header__link, .header__office, .header__divider { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: radial-gradient(120% 90% at 80% 10%, var(--navy-600) 0%, var(--navy) 42%, var(--navy-900) 100%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero::before { /* padrão VS em marca de água */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url("../img/padrao.png") center/900px repeat; opacity: .05; mix-blend-mode: screen;
}
.hero::after { /* grão */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__glow {
  position: absolute; z-index: -1; width: 70vmax; height: 70vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(219,230,255,.22), transparent 60%);
  right: -20vmax; top: -20vmax; filter: blur(10px); pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center;
  padding-top: 110px; padding-bottom: 48px;
}
.hero__copy { position: relative; z-index: 2; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: .82rem; font-weight: 500; letter-spacing: -0.01em;
  color: rgba(255,255,255,.9); backdrop-filter: blur(6px);
}
.hero__kicker svg { width: 18px; height: 18px; color: var(--sky); }
.hero__title {
  margin-top: 26px; font-size: clamp(3rem, 7.2vw, 6.2rem); font-weight: 800; line-height: .94; letter-spacing: -0.045em;
}
.hero__title em { font-style: normal; color: var(--sky); }
.hero__sub { margin-top: 22px; max-width: 520px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,.82); line-height: 1.55; }
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 26px 36px; }
.hero__proof div { display: grid; gap: 2px; }
.hero__proof b { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.hero__proof span { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* palco 3D */
.hero__stage {
  position: relative; perspective: 1200px; aspect-ratio: 1 / 1.08; width: 100%; max-width: 640px; margin-inline: auto; z-index: 1;
}
.stage__word {
  position: absolute; left: 4%; top: 8%; width: 92%; height: auto; z-index: 0; pointer-events: none; opacity: .3; will-change: transform;
}
.stage__ring {
  position: absolute; inset: 8% 6% 0 6%; border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%; z-index: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.02) 60%, transparent);
  border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 -60px 120px -60px rgba(0,0,0,.5);
  pointer-events: none;
}
.stage__portrait {
  position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; justify-content: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 98%); mask-image: linear-gradient(to bottom, #000 72%, transparent 98%);
}
.stage__portrait img { width: 100%; height: auto; aspect-ratio: 1400 / 1540; max-height: 100%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)); }
.stage__portrait canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; opacity: 0; transition: opacity 1s var(--ease); }
.hero__stage.is-3d .stage__portrait canvas { opacity: 1; }
.hero__stage.is-3d .stage__portrait img { opacity: 0; transition: opacity .6s; }
.stage__fade { display: none; }
.chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 16px;
  background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
  font-size: .8rem; font-weight: 600; will-change: transform; animation: float 6s ease-in-out infinite;
}
.chip b { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.chip small { display: block; font-size: .7rem; color: var(--stone); font-weight: 500; }
.chip .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--sky); display: grid; place-items: center; flex: none; color: var(--navy); }
.chip .ico svg { width: 18px; height: 18px; }
.chip--a { left: -4%; top: 22%; animation-delay: -1s; }
.chip--b { right: -4%; top: 40%; animation-delay: -3s; }
.chip--c { left: 4%; bottom: 10%; animation-delay: -5s; }
@keyframes float { 0%, 100% { margin-top: 0; } 50% { margin-top: -8px; } }
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); font-size: .72rem; letter-spacing: 0; color: rgba(255,255,255,.5);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll i { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 40px; gap: 0; }
  .hero__stage { order: 1; max-width: none; width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); aspect-ratio: 1 / 0.82; perspective: none; }
  .hero__copy { order: 2; margin-top: -8px; }
  .stage__portrait img { width: auto; height: 100%; max-width: 100%; }
  .stage__portrait { align-items: flex-start; justify-content: center; -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); }
  .stage__ring { inset: 12% 14% 8% 14%; }
  .stage__word { left: 8%; width: 84%; top: 12%; opacity: .24; }
  .chip { display: none; }
  .hero__kicker { margin-top: 0; }
  .hero__title { margin-top: 16px; font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero__sub { margin-top: 14px; font-size: 1rem; }
  .hero__actions { margin-top: 22px; }
  .hero__proof { margin-top: 26px; gap: 14px 22px; }
  .hero__proof b { font-size: 1.25rem; }
  .hero__proof span { font-size: .74rem; }
  .hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__stage { aspect-ratio: 1 / 0.92; }
}
/* botão para ativar o giroscópio (iOS pede permissão num toque) */
.hero__motion {
  position: absolute; right: 14px; bottom: 14px; z-index: 4; display: none; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(6,20,42,.7); color: #fff;
  font: inherit; font-size: .74rem; font-weight: 600; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__motion svg { width: 16px; height: 16px; }
.hero__motion.is-visible { display: inline-flex; }

/* ---------- faixa de confiança ---------- */
.trust { overflow: hidden; background: var(--navy-950); color: #fff; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.06); }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; }
.trust__logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.trust__logos img { height: 40px; width: auto; opacity: .95; }
.trust__logos .sep { width: 1px; height: 30px; background: rgba(255,255,255,.2); }
.trust__awards { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.trust__awards img { height: 44px; width: auto; opacity: .92; }
.trust__awards img.tall { height: 64px; }
.trust__label { font-size: .8rem; color: rgba(255,255,255,.55); margin-right: 4px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip { animation: none; }
  .hero__scroll i { animation: none; }
}

/* ---------- porta a porta ---------- */
.story .container { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.story__visual { position: relative; }
.story__photo {
  border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, var(--sand), var(--paper));
  aspect-ratio: 4 / 5; position: relative;
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.story__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,34,119,.25), transparent 45%); }
.story__shoe {
  position: absolute; right: -18px; bottom: 28px; width: 128px; height: 128px; border-radius: 32px; background: var(--navy); color: #fff;
  display: grid; place-items: center; box-shadow: 0 30px 50px -20px rgba(0,34,119,.6); transform: rotate(-6deg);
}
.story__shoe svg { width: 52px; height: 52px; }
.story__shoe small { font-size: .7rem; font-weight: 600; margin-top: 6px; }
.story__text p + p { margin-top: 18px; }
.story__quote { margin-top: 28px; padding: 22px 26px; border-left: 3px solid var(--navy); background: var(--paper); border-radius: 0 20px 20px 0; font-size: 1.1rem; font-weight: 600; line-height: 1.5; color: var(--navy-900); }
.pillars { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar { padding: 22px; border-radius: 20px; background: var(--paper); }
.pillar svg { width: 26px; height: 26px; color: var(--navy); }
.pillar h3 { margin-top: 12px; font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; }
.pillar p { margin-top: 6px; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) {
  .story .container { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .story__shoe { right: 8px; width: 104px; height: 104px; }
}

/* ---------- números ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 30px 26px; border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.stat b { display: block; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: .88rem; color: rgba(255,255,255,.7); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat { padding: 22px 20px; } }

/* ---------- imóveis ---------- */
.listings__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px; }
.listings__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; font-size: .85rem; color: var(--stone); }
.listings__meta [data-listings-count] { font-weight: 700; color: var(--navy); }
.listings__grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing { display: flex; flex-direction: column; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 20px 40px -30px rgba(0,34,119,.3); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.listing:hover { transform: translateY(-6px); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 36px 60px -30px rgba(0,34,119,.4); }
.listing__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.listing:hover .listing__media img { transform: scale(1.06); }
.listing__badge { position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: 999px; background: #fff; color: var(--navy); font-size: .74rem; font-weight: 700; }
.listing__price { position: absolute; left: 14px; bottom: 14px; padding: 8px 14px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.listing__price small { font-weight: 500; font-size: .75rem; opacity: .8; margin-left: 2px; }
.listing__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.listing__title { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.listing__where { color: var(--ink-soft); font-size: .9rem; }
.listing__meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.listing__meta li { font-size: .74rem; font-weight: 600; color: var(--ink-soft); background: var(--paper); padding: 5px 10px; border-radius: 999px; }
.listing__cta { margin-top: auto; padding-top: 18px; font-size: .85rem; font-weight: 700; color: var(--navy); }
.listing__cta span { display: inline-block; transition: transform .3s var(--ease); }
.listing:hover .listing__cta span { transform: translateX(4px); }
.listing__badge--cesar { background: var(--navy); color: #fff; }
.listings__more { margin-top: 28px; display: flex; justify-content: center; }
.listings__empty { grid-column: 1 / -1; padding: 40px; text-align: center; background: var(--paper); border-radius: 24px; color: var(--ink-soft); }
.skeleton { border-radius: 24px; background: linear-gradient(90deg, var(--paper), #fff, var(--paper)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; aspect-ratio: 4 / 5; }
@keyframes shimmer { to { background-position: -200% 0; } }
.listings__foot { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.listings__foot p { font-size: .85rem; color: var(--stone); max-width: 560px; }
@media (max-width: 960px) { .listings__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .listings__grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- método ---------- */
.steps { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; padding: 28px 24px 26px; border-radius: 24px; background: #fff; border: 1px solid rgba(0,0,0,.05); }
.step__n { font-size: .8rem; font-weight: 700; color: var(--navy); }
.step h3 { margin-top: 14px; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
.step p { margin-top: 10px; font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- assinatura VS ---------- */
.vs { position: relative; overflow: hidden; }
.vs::before { content: ""; position: absolute; inset: 0; background: url("../img/padrao.png") center/700px repeat; opacity: .06; mix-blend-mode: screen; }
.vs .container { position: relative; }
.vs__intro { display: grid; grid-template-columns: .95fr 1.15fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.vs__logo { height: 56px; width: auto; }
.vs__ranks { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.vs__ranks div { flex: 1 1 120px; padding: 18px 20px; border-radius: 18px; background: #fff; color: var(--navy); }
.vs__ranks b { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.vs__ranks span { display: block; margin-top: 6px; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }
.vs__note { margin-top: 12px; font-size: .78rem; color: rgba(255,255,255,.5); }
.vs__visual { position: relative; display: grid; place-items: center; }
.vs__visual::before { content: ""; position: absolute; inset: 0 10% 20% 10%; border-radius: 50%; background: radial-gradient(circle, rgba(207,224,255,.25), transparent 65%); filter: blur(20px); }
.vs__globe { position: relative; width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); animation: globe-float 9s ease-in-out infinite; }
@media (min-width: 901px) {
  .vs__visual { justify-self: end; width: 118%; max-width: none; margin-right: -14%; }
  .vs__globe { width: 100%; }
}
@keyframes globe-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.vs__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vs__grid > div { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.vs__grid b { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.vs__grid > div > span { display: block; margin-top: 8px; font-size: .84rem; color: rgba(255,255,255,.7); }
.vs__cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.vs__cta p { font-size: .9rem; color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .vs__intro { grid-template-columns: 1fr; }
  .vs__visual { width: min(100%, 460px); margin-inline: auto; order: -1; }
  .vs__grid { grid-template-columns: repeat(2, 1fr); }
  .vs__grid b { font-size: 1.7rem; }
}
@media (prefers-reduced-motion: reduce) { .vs__globe { animation: none; } }

/* ---------- contacto ---------- */
.contact .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.contact__aside { position: sticky; top: 110px; }
.contact__card { margin-top: 28px; padding: 26px; border-radius: 24px; background: var(--navy); color: #fff; display: grid; gap: 14px; }
.contact__card a { display: flex; align-items: center; gap: 12px; font-weight: 700; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.08); transition: background .25s; }
.contact__card a:hover { background: rgba(255,255,255,.16); }
.contact__card a svg { width: 20px; height: 20px; flex: none; }
.contact__card small { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.form { padding: clamp(24px, 3vw, 40px); border-radius: var(--radius); background: #fff; box-shadow: 0 30px 60px -40px rgba(0,34,119,.35); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--clay); background: var(--cream); color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(0,34,119,.1); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.intent { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.intent input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; margin: 0; padding: 0; opacity: 0; pointer-events: none; }
.intent label { cursor: pointer; text-align: center; padding: 14px 10px; border-radius: 14px; border: 1.5px solid var(--clay); font-weight: 700; font-size: .9rem; background: var(--cream); transition: all .25s; margin: 0; text-transform: none; letter-spacing: 0; color: var(--ink); }
.intent input:checked + label { background: var(--navy); color: #fff; border-color: var(--navy); }
.intent input:focus-visible + label { outline: 3px solid var(--navy); outline-offset: 2px; }
.form__submit { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form__submit .btn { min-width: 220px; }
.form__legal { font-size: .74rem; color: var(--stone); line-height: 1.5; max-width: 320px; }
.form__status { margin-top: 12px; font-size: .88rem; color: #b42318; font-weight: 600; }
.form__success { padding: 40px; border-radius: var(--radius); background: var(--navy); color: #fff; text-align: center; }
.form__success svg { width: 56px; height: 56px; margin: 0 auto; display: block; }
.form__success h3 { margin-top: 12px; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.form__success p { margin-top: 8px; color: rgba(255,255,255,.8); }
.hp { position: absolute; left: -9999px; }
@media (max-width: 900px) {
  .contact .container { grid-template-columns: 1fr; }
  .contact__aside { position: static; }
  .form__grid { grid-template-columns: 1fr; }
  .intent { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer { background: var(--navy-950); padding-block: 56px 32px; font-size: .85rem; color: rgba(255,255,255,.72); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer__logos { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer__logos img { height: 44px; width: auto; }
.footer__logos .sep { width: 1px; height: 36px; background: rgba(255,255,255,.18); }
.footer h4 { margin: 0 0 12px; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.55); }
.footer li + li { margin-top: 8px; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .76rem; color: rgba(255,255,255,.5); }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr; } .footer__logos img { height: 34px; } .footer__logos img.rv { height: 32px; } }

/* ---------- barra CTA mobile ---------- */
.sticky-cta {
  position: fixed; inset-inline: 12px; bottom: 12px; z-index: 60; display: none; gap: 8px;
  transform: translateY(120%); transition: transform .5s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1 1 0; min-width: 0; padding: 15px 10px; font-size: .84rem; box-shadow: 0 16px 30px -12px rgba(0,0,0,.45); }
@media (max-width: 900px) { .sticky-cta { display: flex; } body { padding-bottom: 76px; } }

/* ---------- ícones ---------- */
.ico-inline { width: 1em; height: 1em; vertical-align: -0.15em; }
.footer__logos img.rv { height: 40px; }

/* ---------- distinções ---------- */
.awards { margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 40px; }
.awards__label { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.6); }
.awards__row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 36px; }
.awards__row img { height: 48px; width: auto; opacity: .95; }
.awards__row img.tall { height: 76px; }
@media (max-width: 600px) {
  .awards__row img { height: 38px; } .awards__row img.tall { height: 60px; }
  .trust__awards img { height: 34px; } .trust__awards img.tall { height: 52px; }
  .trust__logos { gap: 16px; } .trust__logos img { height: 30px !important; } .trust__logos .sep { height: 22px; }
}
