/*
 * Cupertino Negocios Inmobiliarios — Sistema de diseño (PHP / CSS plano)
 * Monocromático estricto: #000, #737373, #f6f6f6, #fff.
 * Tipografía: Montserrat.
 * Portado desde src/styles.css + clases Tailwind del proyecto React.
 */

:root {
  --background: #ffffff;
  --foreground: #000000;
  --muted: #f6f6f6;
  --muted-foreground: #737373;
  --border: #e8e8e8;
  --radius: 0.5rem;
  --max: 80rem; /* max-w-7xl */
  --font-sans: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 300; margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─────────────────── Layout helpers ─────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .wrap { padding-inline: 2rem; } }
.narrow { max-width: 64rem; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.font-thin { font-weight: 100; }
.strong { font-weight: 600; }
.hl { position: relative; font-weight: 500; }
.section { padding-block: 3rem; }
@media (min-width: 640px) { .section { padding-block: 8rem; } }

/* ─────────────────── Buttons ─────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding-inline: 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; letter-spacing: 0.02em; border: 1px solid transparent;
  transition: opacity .2s, background-color .2s, color .2s;
}
.btn-sm { height: 2.5rem; padding-inline: 1.25rem; }
.btn-dark { background: var(--foreground); color: var(--background); }
.btn-dark:hover { opacity: .9; }
.btn-light { background: #fff; color: #000; }
.btn-light:hover { opacity: .9; }
.btn-outline { border-color: rgba(0,0,0,.2); color: var(--foreground); }
.btn-outline:hover { background: rgba(0,0,0,.05); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }

/* ─────────────────── Header ─────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  color: #fff; transition: transform .3s;
}
.site-header.hidden { transform: translateY(-100%); }
/* Páginas internas (no home): header sólido con contraste (texto/logo oscuros). */
body:not(.home) .site-header { background: var(--background); color: var(--foreground); border-bottom: 1px solid var(--border); }
body:not(.home) .site-header .logo { filter: none; }
body:not(.home) .nav a { color: var(--foreground); text-shadow: none; }
body:not(.home) .menu-toggle { color: var(--foreground); }
body:not(.home) .nav-actions .btn-light { background: var(--foreground); color: var(--background); }
.site-header .bar {
  max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem;
  height: 6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 640px) { .site-header .bar { height: 7rem; padding-inline: 2rem; } }
.logo { height: 6rem; width: auto; align-self: flex-start; flex: none; user-select: none; }
@media (min-width: 640px) { .logo { height: 7rem; } }
.logo-light { filter: invert(1); }
/* En la home el header va sobre el hero: scrim oscuro + sombra en el logo
   para asegurar contraste del logo y la navegación en cualquier parte del hero. */
.home .site-header { background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0)); }
.home .site-header .logo { filter: invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.6)); }
.nav { display: none; align-items: center; gap: 2rem; font-size: 13px; letter-spacing: .02em; }
.nav a { text-shadow: 0 1px 2px rgba(0,0,0,.35); transition: opacity .2s; }
.nav a:hover { opacity: .6; }
.nav-actions { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-actions { display: flex; align-items: center; gap: .75rem; }
}
/* dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; left: 50%; transform: translateX(-50%); top: 100%; padding-top: .75rem;
  opacity: 0; visibility: hidden; transition: all .2s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu-inner {
  min-width: 200px; border-radius: .5rem; background: var(--background);
  border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.1); padding-block: .5rem;
  color: var(--foreground); text-shadow: none;
}
.dropdown-menu-inner a { display: block; padding: .5rem 1rem; font-size: 13px; }
.dropdown-menu-inner a:hover { background: var(--muted); }
/* mobile menu */
.menu-toggle { display: inline-flex; background: none; border: 0; color: #fff; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu {
  display: none; border-top: 1px solid var(--border);
  background: var(--background); color: var(--foreground);
}
.mobile-menu.open { display: block; }
.mobile-menu .inner { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: .875rem; font-weight: 500; }

/* ─────────────────── Hero ─────────────────── */
main { padding-top: 4rem; }
.home main, .home-offset { }
.hero {
  position: relative; min-height: 55svh; width: 100%; overflow: hidden;
  background: #000; color: #fff; display: flex; flex-direction: column; margin-top: -4rem;
}
@media (min-width: 640px) { .hero { min-height: 75svh; } }
.hero video, .hero .hero-img {
  position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover;
  opacity: .5; filter: grayscale(100%) contrast(1.05) brightness(.7);
}
.hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.55) 50%, rgba(0,0,0,.9));
}
.hero .hero-inner {
  position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: var(--max); margin-inline: auto; width: 100%;
  padding: 6rem 1.25rem 4rem;
}
@media (min-width: 640px) { .hero .hero-inner { padding: 7rem 2rem 8rem; } }
.hero h1 {
  font-weight: 300; font-size: clamp(2.1rem, 5.5vw, 4.8rem); line-height: 1.05;
}
.hero .hero-sub { margin-top: 1rem; max-width: 36rem; font-size: .95rem; color: rgba(255,255,255,.75); font-weight: 300; }
.hero .hero-cta { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .hl { background: linear-gradient(120deg, rgba(255,255,255,.25), rgba(255,255,255,0)); padding-inline: .1em; }

/* SmartSearch */
.smartsearch-wrap {
  position: relative; z-index: 30; max-width: var(--max); margin-inline: auto; width: 100%;
  padding-inline: 1.25rem; margin-top: -2rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .smartsearch-wrap { padding-inline: 2rem; margin-top: -5rem; margin-bottom: 0; } }
.smartsearch {
  border-radius: 1rem; background: #a3a3a3; border: 1px solid #737373;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.1); padding: .75rem .75rem 1.5rem; color: #000;
}
@media (min-width: 640px) { .smartsearch { padding: 1.25rem 1.25rem 2rem; } }
.ss-tabs { display: flex; gap: .25rem; margin-bottom: .5rem; }
@media (min-width: 640px) { .ss-tabs { margin-bottom: 1rem; } }
.ss-tab {
  padding: .375rem .75rem; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  background: none; border: 0; border-bottom: 2px solid transparent; color: rgba(0,0,0,.5); margin-bottom: -1px;
}
.ss-tab.active { border-color: #000; color: #000; }
.ss-grid { display: grid; gap: .5rem; }
@media (min-width: 640px) { .ss-grid { gap: .75rem; grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ss-grid { grid-template-columns: repeat(5, 1fr); } }
.ss-field { display: block; }
.ss-field > span { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(0,0,0,.8); margin-bottom: .35rem; }
.ss-field select {
  width: 100%; height: 2.75rem; padding-inline: .75rem; border: 1px solid rgba(0,0,0,.15);
  border-radius: .375rem; background: #fff; color: #000; font-size: .875rem; font-family: inherit;
}
.ss-submit { align-self: end; }

/* ─────────────────── Section headers ─────────────────── */
.sec-head { max-width: 42rem; }
.sec-head h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 640px) { .sec-head h2 { font-size: 3rem; } }

/* ─────────────────── Capture cards ─────────────────── */
.grid-4 { margin-top: 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.capture-card {
  display: flex; flex-direction: column; height: 100%;
  border-radius: .75rem; border: 1px solid var(--border);
  background: var(--foreground); color: var(--background); padding: 2rem;
  transition: all .3s;
}
.capture-card:hover { background: var(--background); color: var(--foreground); box-shadow: 0 10px 25px rgba(0,0,0,.1); transform: translateY(-4px); }
.capture-card .icon { width: 1.5rem; height: 1.5rem; margin-bottom: 1.5rem; }
.capture-card h3 { font-weight: 500; font-size: 1.125rem; margin-bottom: .5rem; }
.capture-card p { font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.6; }
.capture-card:hover p { color: var(--muted-foreground); }
.capture-card .pill {
  display: inline-flex; align-items: center; gap: .5rem; height: 2.5rem; padding-inline: 1.25rem;
  border-radius: 9999px; background: var(--background); color: var(--foreground); font-size: .875rem;
  margin-top: auto; align-self: flex-start;
}
.capture-card:hover .pill { background: var(--foreground); color: var(--background); }

/* ─────────────────── Value props ─────────────────── */
.valueprops { margin-top: 4rem; display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .valueprops { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .valueprops { grid-template-columns: repeat(4, 1fr); } }
.vp { display: flex; flex-direction: column; gap: 1rem; }
.vp .icon { width: 1.5rem; height: 1.5rem; }
.vp h3 { font-weight: 500; font-size: 1.125rem; }
.vp p { font-size: .875rem; color: var(--muted-foreground); line-height: 1.6; margin: 0; }

/* ─────────────────── App promo ─────────────────── */
.apppromo { position: relative; overflow: hidden; background: var(--background); padding-block: 6rem; }
@media (min-width: 640px) { .apppromo { padding-block: 8rem; } }
.apppromo .cols { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .apppromo .cols { grid-template-columns: repeat(2, 1fr); gap: 5rem; } }
.apppromo h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 640px) { .apppromo h2 { font-size: 3rem; } }
.apppromo .lead { margin-top: 1.5rem; color: var(--muted-foreground); font-weight: 300; max-width: 36rem; line-height: 1.7; }
.check-list { margin-top: 2rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; color: rgba(0,0,0,.8); }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 300; line-height: 1.6; }
.check-list svg { width: 1rem; height: 1rem; margin-top: .15rem; flex-shrink: 0; }
.promo-feature-strip { margin-top: 5rem; background: #000; color: #fff; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .promo-feature-strip { padding: 4rem 2rem; } }
.promo-feature-strip .grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .promo-feature-strip .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promo-feature-strip .grid { grid-template-columns: repeat(4, 1fr); } }
.promo-feature h3 { font-weight: 500; font-size: 1.125rem; }
.promo-feature p { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.6; font-weight: 300; }
/* phone mockup (simplified) */
.phone-frame {
  margin-inline: auto; width: 250px; aspect-ratio: 9 / 19.5; border-radius: 2.5rem;
  padding: 8px; background: linear-gradient(150deg,#262629,#0a0a0c 40%,#1a1a1d);
  box-shadow: 0 50px 80px -20px rgba(0,0,0,.28); transform: rotate(6deg);
}
.phone-screen { height: 100%; border-radius: 2rem; overflow: hidden; background: #fafafa; color: #171717; }
.phone-screen img { height: 130px; width: 100%; object-fit: cover; }
.phone-body { padding: .75rem; }
.phone-body .eyebrow-sm { font-size: 7px; letter-spacing: .28em; text-transform: uppercase; color: #a3a3a3; }
.phone-body h4 { font-size: 14px; font-weight: 300; }
.phone-card { margin-top: .75rem; border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 20px -8px rgba(0,0,0,.15); }
.phone-card .meta { padding: .4rem .6rem; }
.phone-card .meta .row { display: flex; justify-content: space-between; font-size: 9px; font-weight: 600; }
.phone-card .meta .sub { font-size: 7.5px; color: #737373; margin-top: 2px; }
.phone-advisor { margin-top: .6rem; display: flex; align-items: center; gap: .5rem; border-radius: 1rem; background: #171717; color: #fff; padding: .5rem; }
.phone-advisor img { height: 28px; width: 28px; border-radius: 9999px; object-fit: cover; }
.phone-advisor .t { font-size: 8.5px; font-weight: 600; }
.phone-advisor .s { font-size: 7.5px; color: rgba(255,255,255,.6); }

/* ─────────────────── Featured / property grids ─────────────────── */
.featured { padding-block: 6rem; background: var(--background); }
@media (min-width: 640px) { .featured { padding-block: 8rem; } }
.featured.accent { border-top: 1px solid rgba(0,0,0,.15); }
.featured-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .featured-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.featured-head h2 { margin-top: .75rem; font-weight: 300; font-size: 1.875rem; }
@media (min-width: 640px) { .featured-head h2 { font-size: 3rem; } }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; transition: opacity .2s; }
.link-arrow:hover { opacity: .6; }

.prop-grid { display: grid; gap: 1.5rem 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .prop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .prop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
/* carousel = horizontal scroll on home */
.prop-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: 46%; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; scroll-snap-type: x mandatory; }
.prop-carousel > * { scroll-snap-align: start; }
@media (min-width: 640px) { .prop-carousel { grid-auto-columns: 30%; } }
@media (min-width: 1024px) { .prop-carousel { grid-auto-columns: 22%; } }

.prop-card { display: block; }
.prop-card .media { position: relative; overflow: hidden; border-radius: .375rem; background: var(--muted); aspect-ratio: 16 / 10; }
.prop-card .media img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.prop-card:hover .media img { transform: scale(1.04); }
.prop-card .badge { position: absolute; top: .5rem; left: .5rem; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.95); text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.prop-card .body { padding-top: .625rem; display: flex; flex-direction: column; gap: .25rem; }
.prop-card .top { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-foreground); }
.prop-card .desc { font-size: .75rem; color: rgba(0,0,0,.9); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-card .price { font-weight: 300; font-size: .875rem; }
.prop-card .price small { font-size: 9px; color: var(--muted-foreground); font-weight: 400; }
.prop-card .specs { display: flex; align-items: center; gap: .625rem; font-size: 10px; color: var(--muted-foreground); padding-top: .1rem; }
.prop-card .specs span { display: inline-flex; align-items: center; gap: .15rem; }
.prop-card .specs svg { width: 10px; height: 10px; }

/* ─────────────────── Brand statement ─────────────────── */
.brandstate { position: relative; overflow: hidden; background: var(--foreground); color: var(--background); padding-block: 5rem; }
@media (min-width: 640px) { .brandstate { padding-block: 7rem; } }
.brandstate .bg { position: absolute; inset: 0; }
.brandstate .bg img { height: 100%; width: 100%; object-fit: cover; opacity: .6; }
.brandstate .bg .grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.6) 50%, rgba(0,0,0,.9)); }
.brandstate .content { position: relative; max-width: 64rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .brandstate .content { padding-inline: 2rem; } }
.brandstate p.big { font-weight: 300; font-size: clamp(1.5rem, 3.8vw, 3rem); line-height: 1.1; }
.newsletter { margin-top: 2.5rem; max-width: 42rem; }
.newsletter p { font-size: .95rem; color: rgba(255,255,255,.8); font-weight: 300; margin-bottom: 1rem; }
.newsletter form { display: flex; align-items: center; gap: .5rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); padding: .375rem; padding-left: 1.25rem; }
.newsletter input { flex: 1; background: transparent; color: #fff; border: 0; outline: none; font-size: .95rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button { flex-shrink: 0; border-radius: 9999px; background: #fff; color: #000; border: 0; padding: .625rem 1.25rem; font-size: .875rem; font-weight: 500; }
.brandstate .hl { background: linear-gradient(120deg, rgba(255,255,255,.25), rgba(255,255,255,0)); padding-inline: .1em; }

/* ─────────────────── Owners CTA ─────────────────── */
.owners { background: #fff; padding-block: 6rem; }
@media (min-width: 640px) { .owners { padding-block: 8rem; } }
.owners .cols { display: grid; gap: 3rem; align-items: end; }
@media (min-width: 1024px) { .owners .cols { grid-template-columns: 1fr auto; } }
.owners h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; line-height: 1.15; max-width: 48rem; color: #000; }
@media (min-width: 640px) { .owners h2 { font-size: 3rem; } }
.owners p { margin-top: 1.25rem; max-width: 36rem; color: #737373; line-height: 1.6; }
.owners .actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─────────────────── Financing ─────────────────── */
.financing { background: #000; padding-block: 6rem; color: #fff; }
@media (min-width: 640px) { .financing { padding-block: 8rem; } }
.financing .cols { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .financing .cols { grid-template-columns: repeat(2, 1fr); } }
.financing .logo-santander { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.financing .eyebrow { color: #a3a3a3; }
.financing h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; line-height: 1.15; color: #fff; }
@media (min-width: 640px) { .financing h2 { font-size: 3rem; } }
.financing p { margin-top: 1.25rem; max-width: 36rem; color: #a3a3a3; line-height: 1.6; }
.financing p .w { color: #fff; }
.financing .slider { position: relative; border-radius: 1.5rem; background: #000; overflow: hidden; aspect-ratio: 3/4; max-height: 560px; }
@media (min-width: 640px) { .financing .slider { aspect-ratio: 5/4; } }
.financing .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1rem; opacity: 0; transition: opacity .7s ease; }
@media (min-width: 640px) { .financing .slide { padding: 2.5rem; } }
.financing .slide.active { opacity: 1; }
.financing .dots { position: absolute; bottom: 1rem; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 10; }
.financing .dot { height: 6px; width: 6px; border-radius: 9999px; background: rgba(255,255,255,.4); border: 0; transition: all .3s; }
.financing .dot.active { width: 24px; background: #fff; }
.financing .fineprint { margin-top: 2rem; font-size: .75rem; color: #a3a3a3; }
.financing .fineprint a:hover { color: #fff; }

/* ─────────────────── Team ─────────────────── */
.team { background: #f3f4f6; color: #000; padding: 6rem 1.5rem; }
@media (min-width: 768px) { .team { padding-inline: 3rem; } }
.team .head { margin-bottom: 3.5rem; max-width: 42rem; }
.team .head p { font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(0,0,0,.6); margin-bottom: .75rem; }
.team .head h2 { font-size: 2.25rem; font-weight: 300; line-height: 1.15; }
@media (min-width: 768px) { .team .head h2 { font-size: 3rem; } }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; max-width: 64rem; margin-inline: auto; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
/* Grayscale en el contenedor (respaldo) y en la imagen con !important, para
   resistir extensiones (Dark Reader, etc.) que reprocesan las imágenes. */
.team-member .photo {
  overflow: hidden; background: rgba(0,0,0,.05); aspect-ratio: 3/4;
  filter: grayscale(100%) contrast(1.03); -webkit-filter: grayscale(100%) contrast(1.03);
}
.team-member .photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.03) !important; -webkit-filter: grayscale(100%) contrast(1.03) !important;
  transition: transform .5s;
}
.team-member:hover .photo img { transform: scale(1.03); }
.team-member .name { margin-top: 1rem; font-size: 1.05rem; font-weight: 500; }
.team-member .role { font-size: .875rem; color: rgba(0,0,0,.6); }
.team-member .socials { margin-top: .5rem; display: flex; align-items: center; gap: .75rem; }
.team-member .socials a { color: rgba(0,0,0,.4); transition: color .2s; }
.team-member .socials a:hover { color: #000; }

/* ─────────────────── Contact form ─────────────────── */
.contact { padding-block: 6rem; background: var(--background); }
@media (min-width: 640px) { .contact { padding-block: 8rem; } }
.contact .head { text-align: center; margin-bottom: 3rem; }
.contact .head h2 { font-weight: 300; font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 640px) { .contact .head h2 { font-size: 3rem; } }
.contact .head p { margin-top: 1rem; color: var(--muted-foreground); max-width: 42rem; margin-inline: auto; }
.contact form.card { display: flex; flex-direction: column; gap: 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; max-width: 64rem; margin-inline: auto; }
@media (min-width: 768px) { .contact form.card { padding: 2rem; } }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label, .field > span { font-size: .875rem; font-weight: 500; }
.input, .textarea, .filter-select {
  width: 100%; border: 1px solid var(--border); border-radius: .5rem; background: var(--background);
  color: var(--foreground); font-family: inherit; font-size: .9rem; padding: .65rem .85rem;
}
.input { height: 2.75rem; padding-block: 0; }
.input:focus, .textarea:focus, .filter-select:focus { outline: none; border-color: var(--foreground); }
.error { color: #b91c1c; font-size: .8rem; }
.g-recaptcha { margin: .25rem 0; }
button[disabled] { opacity: .5; cursor: not-allowed; }

/* ─────────────────── WhatsApp FAB ─────────────────── */
.wa-fab {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  height: 3.5rem; width: 3.5rem; border-radius: 9999px; border: 0;
  background: var(--foreground); color: var(--background);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.2); transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.05); }
.wa-fab svg { height: 1.5rem; width: 1.5rem; }

/* ─────────────────── Footer ─────────────────── */
.site-footer { background: var(--foreground); color: var(--background); }
.site-footer .top { max-width: var(--max); margin-inline: auto; padding: 4rem 1.25rem; display: grid; gap: 3rem; }
@media (min-width: 640px) { .site-footer .top { padding-inline: 2rem; } }
@media (min-width: 768px) { .site-footer .top { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-brand .logo { filter: invert(1); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.6); max-width: 24rem; line-height: 1.6; margin: 0; }
.mintur { display: flex; align-items: flex-start; gap: .75rem; padding-top: .5rem; }
.mintur img { height: 7rem; width: auto; border-radius: 2px; }
.mintur .t1 { font-size: .75rem; color: rgba(255,255,255,.5); max-width: 180px; line-height: 1.5; margin: 0; }
.mintur .t2 { font-size: .75rem; color: rgba(255,255,255,.7); margin: .25rem 0 0; }
.footer-col h4 { color: #fff; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col { font-size: .875rem; }
.footer-col a, .footer-col .line { display: flex; align-items: flex-start; gap: .625rem; color: rgba(255,255,255,.7); transition: color .2s; margin-bottom: .75rem; }
.footer-col a:hover { color: #fff; }
.footer-col svg { height: 1rem; width: 1rem; margin-top: .15rem; flex-shrink: 0; }
.footer-nav a { display: block; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.footer-nav a:hover { color: #fff; }
.footer-socials { display: flex; gap: .75rem; padding-top: .75rem; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer .bottom .inner { max-width: var(--max); margin-inline: auto; padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.6); }
@media (min-width: 640px) { .site-footer .bottom .inner { flex-direction: row; padding-inline: 2rem; } }

/* ─────────────────── Modal newsletter ─────────────────── */
.nl-modal {
  position: fixed; inset: 0; z-index: 90; display: none;
  align-items: center; justify-content: center; padding: 1.25rem;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.nl-modal.open { display: flex; }
.nl-box {
  position: relative; width: 100%; max-width: 26rem; background: var(--background);
  color: var(--foreground); border-radius: 1rem; padding: 2rem;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,.35);
}
.nl-close {
  position: absolute; top: .85rem; right: .85rem; height: 2.25rem; width: 2.25rem;
  border: 0; border-radius: 9999px; background: var(--muted); color: var(--foreground);
  display: inline-flex; align-items: center; justify-content: center;
}
.nl-close:hover { background: var(--border); }
.nl-box h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.15rem; }
.nl-box .nl-sub { margin: .5rem 0 1.25rem; font-size: .875rem; color: var(--muted-foreground); }
.nl-box .nl-sub strong { color: var(--foreground); }
.nl-box .field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.nl-captcha { margin: .25rem 0 1rem; min-height: 78px; }
.nl-ok { margin: 1rem 0 0; text-align: center; font-size: .9rem; color: var(--foreground); }

/* ─────────────────── Listing pages ─────────────────── */
.listing { max-width: var(--max); margin-inline: auto; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .listing { padding-inline: 2rem; } }
.listing > header { margin-bottom: 3rem; }
.listing > header h1 { margin-top: .75rem; font-weight: 100; font-size: 2.25rem; }
@media (min-width: 640px) { .listing > header h1 { font-size: 3rem; } }
.listing .count { margin-top: .75rem; font-size: .875rem; color: var(--muted-foreground); }
.listing .cols { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .listing .cols { grid-template-columns: 260px 1fr; } }
.filters { display: flex; flex-direction: column; gap: 1.5rem; font-size: .875rem; }
.filters .fld { display: flex; flex-direction: column; gap: .5rem; }
.filters .fld > span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); }
.filter-select { height: 40px; padding: 0 12px; font-size: 13px; }
.filters .price-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.filters .apply { align-self: start; }
.filters .clear { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); background: none; border: 0; padding: 0; text-align: left; }
.filters .clear:hover { color: var(--foreground); }
.empty { padding: 3rem 0; color: var(--muted-foreground); }
.filters select optgroup { font-weight: 600; }

/* Multiselect de barrios (buscable, sin dependencias) */
.ms { position: relative; }
.ms-toggle {
  width: 100%; height: 40px; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: 0 12px; border: 1px solid var(--border); border-radius: 6px; background: var(--background);
  color: var(--foreground); font-size: 13px; font-family: inherit; cursor: pointer; text-align: left;
}
.ms-toggle:focus, .ms.open .ms-toggle { outline: none; border-color: var(--foreground); }
.ms-toggle .ms-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.ms-toggle .ms-label.placeholder { color: var(--muted-foreground); }
.ms-chev { width: 16px; height: 16px; flex-shrink: 0; color: var(--muted-foreground); transition: transform .15s; }
.ms.open .ms-chev { transform: rotate(180deg); }
.ms-panel {
  position: absolute; z-index: 30; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--background); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.14); padding: .5rem; display: flex; flex-direction: column; max-height: 300px;
}
.ms-panel[hidden] { display: none; }
.ms-search {
  height: 34px; border: 1px solid var(--border); border-radius: 6px; padding: 0 10px;
  margin-bottom: .4rem; font-size: 13px; font-family: inherit; color: var(--foreground); background: var(--background);
}
.ms-search:focus { outline: none; border-color: var(--foreground); }
.ms-options { overflow-y: auto; }
.ms-opt { display: flex; align-items: center; gap: .55rem; padding: .4rem .35rem; font-size: 13px; cursor: pointer; border-radius: 5px; }
.ms-opt:hover { background: var(--muted); }
.ms-opt input { width: 15px; height: 15px; accent-color: #000; flex-shrink: 0; margin: 0; }
.ms-opt.hidden { display: none; }
.ms-empty { padding: .5rem .35rem; font-size: 12px; color: var(--muted-foreground); }
/* Variante para el SmartSearch (altura mayor) */
.ss-field .ms-toggle { height: 2.75rem; border-radius: .375rem; font-size: .875rem; }
@media (max-width: 639px) { .ss-field .ms-toggle { height: 2.25rem; } }

/* Paginación */
.pagination { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin-top: 3rem; justify-content: center; }
.pagination .pg {
  display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem;
  padding: 0 .65rem; border: 1px solid var(--border); border-radius: .5rem; font-size: .85rem;
  color: var(--foreground); transition: background-color .15s, color .15s, border-color .15s;
}
.pagination .pg:hover { background: var(--muted); }
.pagination .pg.active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.pagination .pg-gap { color: var(--muted-foreground); padding: 0 .15rem; }

/* ─────────────────── Buscar ─────────────────── */
.buscar { max-width: 42rem; margin-inline: auto; padding: 6rem 1.25rem; min-height: 60vh; }
@media (min-width: 640px) { .buscar { padding-block: 8rem; padding-inline: 2rem; } }
.buscar h1 { margin-top: .75rem; font-weight: 100; font-size: 2.25rem; }
@media (min-width: 640px) { .buscar h1 { font-size: 3rem; } }
.buscar p { margin-top: 1rem; color: var(--muted-foreground); }
.buscar form { margin-top: 2.5rem; display: flex; gap: .5rem; }
.buscar input { flex: 1; height: 3.5rem; padding-inline: 1.25rem; border: 1px solid var(--border); border-radius: 9999px; background: var(--background); font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; font-family: inherit; }
.buscar input:focus { outline: none; border-color: var(--foreground); }
.buscar .btn { height: 3.5rem; }

/* ─────────────────── About (nosotros) ─────────────────── */
.about-hero { background: var(--foreground); color: var(--background); padding-block: 6rem; }
@media (min-width: 640px) { .about-hero { padding-block: 9rem; } }
.about-hero .eyebrow { color: rgba(255,255,255,.5); }
.about-hero h1 { margin-top: 1rem; font-weight: 300; font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 640px) { .about-hero h1 { font-size: 3.75rem; } }
.about-hero p { margin-top: 2rem; max-width: 42rem; font-size: 1.125rem; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.7; }
.about-two { max-width: var(--max); margin-inline: auto; padding: 6rem 1.25rem; display: grid; gap: 4rem; align-items: center; }
@media (min-width: 640px) { .about-two { padding-block: 8rem; padding-inline: 2rem; } }
@media (min-width: 1024px) { .about-two { grid-template-columns: repeat(2, 1fr); } }
.about-two img { width: 100%; border-radius: .5rem; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.about-two h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; }
@media (min-width: 640px) { .about-two h2 { font-size: 2.25rem; } }
.about-two p { margin-top: 1.5rem; color: var(--muted-foreground); line-height: 1.6; }
.about-diff { max-width: var(--max); margin-inline: auto; padding: 6rem 1.25rem; }
@media (min-width: 640px) { .about-diff { padding-block: 8rem; padding-inline: 2rem; } }
.about-diff .inner { max-width: 56rem; }
.about-diff h2 { margin-top: 1rem; font-weight: 300; font-size: 1.875rem; }
@media (min-width: 640px) { .about-diff h2 { font-size: 2.25rem; } }
.about-diff .body { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; color: var(--muted-foreground); line-height: 1.6; }
.about-mvv { background: var(--muted); padding-block: 6rem; }
@media (min-width: 640px) { .about-mvv { padding-block: 8rem; } }
.about-mvv .grid { max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; display: grid; gap: 3rem; }
@media (min-width: 640px) { .about-mvv .grid { padding-inline: 2rem; } }
@media (min-width: 768px) { .about-mvv .grid { grid-template-columns: repeat(3, 1fr); } }
.about-mvv h3 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: .75rem; }
.about-mvv p { font-size: 1.25rem; line-height: 1.35; font-weight: 300; margin: 0; }

/* ─────────────────── Contacto page ─────────────────── */
.contacto { max-width: var(--max); margin-inline: auto; padding: 4rem 1.25rem; }
@media (min-width: 640px) { .contacto { padding: 6rem 2rem; } }
.contacto h1 { margin-top: .75rem; font-weight: 100; font-size: 2.25rem; }
@media (min-width: 640px) { .contacto h1 { font-size: 3.75rem; } }
.contacto .lead { margin-top: 1rem; max-width: 36rem; color: var(--muted-foreground); }
.contacto .cols { margin-top: 4rem; display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contacto .cols { grid-template-columns: 1fr 360px; } }
.contacto aside { display: flex; flex-direction: column; gap: 1.5rem; }
.contacto .block { display: flex; gap: .75rem; }
.contacto .block svg { height: 1.25rem; width: 1.25rem; margin-top: .15rem; flex-shrink: 0; }
.contacto .block .bt { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: .25rem; }
.contacto .block .bc { font-size: .875rem; line-height: 1.6; }
.map-embed { margin-top: 5rem; border-radius: .75rem; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; border: 0; }
.leaflet-map { width: 100%; border-radius: .75rem; overflow: hidden; border: 1px solid var(--border); z-index: 0; background: var(--muted); }
.leaflet-map .leaflet-control-attribution { font-size: 10px; opacity: .7; }

/* ─────────────────── Property detail ─────────────────── */
.detail { max-width: var(--max); margin-inline: auto; padding: 3rem 1.25rem; }
@media (min-width: 640px) { .detail { padding: 4rem 2rem; } }
.detail > header { margin-bottom: 2rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.detail > header h1 { margin-top: .75rem; font-weight: 100; font-size: 1.875rem; max-width: 48rem; line-height: 1.15; }
@media (min-width: 640px) { .detail > header h1 { font-size: 3rem; } }
.detail .price-box { text-align: right; }
.detail .price-box .val { margin-top: .25rem; font-size: 1.875rem; font-weight: 300; }
@media (min-width: 640px) { .detail .price-box .val { font-size: 2.25rem; } }
.gallery { display: grid; gap: .5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .main { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: .375rem; aspect-ratio: 4/3; }
.gallery .main img { aspect-ratio: 16/11; }
.detail .cols { margin-top: 3rem; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .detail .cols { grid-template-columns: 1fr 340px; } }
.detail h2.mini { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1rem; }
.detail section { margin-bottom: 3rem; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; font-size: .875rem; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { display: flex; align-items: flex-start; gap: .75rem; }
.feature svg { height: 1.25rem; width: 1.25rem; margin-top: .15rem; }
.feature .fl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-foreground); }
.feature .fv { font-size: 1rem; font-weight: 500; }
.detail .desc { font-size: 1rem; line-height: 1.7; color: rgba(0,0,0,.9); white-space: pre-line; }
.detail aside { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 1024px) { .detail aside { position: sticky; top: 6rem; align-self: start; } }
.detail aside .btn { width: 100%; }
.detail aside .split { display: flex; gap: .5rem; }
.detail aside .split .btn { height: 2.75rem; }

/* ─────────────────── Property detail (API / Tera) ─────────────────── */
.detail-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.detail-ops { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.op-badge { display: inline-block; background: var(--foreground); color: var(--background); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 9999px; margin-left: .4rem; }
.id-line { font-size: .8rem; color: var(--muted-foreground); margin: .25rem 0 0; }
.id-line span { color: var(--foreground); font-weight: 500; }

/* Slider de fotos (PDP) */
.pdp-stage {
  position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: .5rem;
  background: var(--muted); user-select: none;
}
.pdp-slides { position: absolute; inset: 0; }
.pdp-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.pdp-slide.active { opacity: 1; }
.pdp-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  height: 2.75rem; width: 2.75rem; border-radius: 9999px; border: 0;
  background: color-mix(in oklab, #fff 88%, transparent); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: background-color .15s, transform .15s;
}
.pdp-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.pdp-nav svg { width: 1.35rem; height: 1.35rem; }
.pdp-nav.prev { left: .75rem; }
.pdp-nav.next { right: .75rem; }
.pdp-counter {
  position: absolute; bottom: .75rem; right: .75rem; z-index: 3;
  background: rgba(0,0,0,.6); color: #fff; font-size: .78rem; letter-spacing: .04em;
  padding: .3rem .7rem; border-radius: 9999px; backdrop-filter: blur(4px);
}
.pdp-zoom {
  position: absolute; bottom: .75rem; left: .75rem; z-index: 3;
  height: 2.25rem; width: 2.25rem; border-radius: 9999px; border: 0;
  background: rgba(0,0,0,.55); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; backdrop-filter: blur(4px); cursor: zoom-in;
}
.pdp-stage:hover .pdp-zoom { opacity: 1; }
.pdp-zoom svg { width: 1.1rem; height: 1.1rem; }

.pdp-thumbs {
  display: flex; gap: .5rem; margin-top: .5rem; overflow-x: auto; padding-bottom: .25rem;
  scrollbar-width: thin;
}
.pdp-thumb {
  flex: 0 0 auto; width: 5.5rem; height: 3.75rem; padding: 0; border: 2px solid transparent;
  border-radius: .375rem; overflow: hidden; background: var(--muted); cursor: pointer;
  opacity: .6; transition: opacity .15s, border-color .15s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { opacity: 1; border-color: var(--foreground); }

/* Lightbox */
.pdp-lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.pdp-lightbox.open { display: flex; }
.pdp-lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; }
.pdp-lightbox .pdp-nav { background: rgba(255,255,255,.15); color: #fff; }
.pdp-lightbox .pdp-nav:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.06); }
.pdp-lightbox .lb-close {
  position: fixed; top: 1.25rem; right: 1.25rem; z-index: 2;
  height: 2.75rem; width: 2.75rem; border-radius: 9999px; border: 0;
  background: rgba(255,255,255,.15); color: #fff; display: inline-flex; align-items: center; justify-content: center;
}
.pdp-lightbox .lb-close:hover { background: rgba(255,255,255,.28); }
.pdp-lightbox .lb-close svg { width: 1.35rem; height: 1.35rem; }
.pdp-lightbox .lb-counter {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .85rem;
}

.char-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 1.5rem; }
@media (min-width: 768px) { .char-grid { grid-template-columns: repeat(3, 1fr); } }
.char { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.char .chk { width: 1rem; height: 1rem; margin-top: .15rem; flex-shrink: 0; color: var(--foreground); }
.char strong { color: var(--foreground); font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--border); border-radius: 9999px; padding: .45rem .9rem; font-size: .8rem; background: var(--muted); }
.chip em { font-style: normal; font-weight: 600; color: var(--foreground); }
.chips.gastos .chip { background: var(--background); }

.video-embed, .info-card { border-radius: .75rem; overflow: hidden; }
.video-embed { position: relative; aspect-ratio: 16/9; border: 1px solid var(--border); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.info-card { border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1rem; background: var(--background); }
.info-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1rem; margin-bottom: 1rem; }
.info-card form { display: flex; flex-direction: column; gap: .75rem; }
.contact-line { display: flex; align-items: center; gap: .6rem; color: var(--muted-foreground); margin-bottom: .75rem; }
.contact-line:hover { color: var(--foreground); }
.contact-line svg, .contact-line .wa { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* ─────────────────── Icons sizing ─────────────────── */
svg.i { width: 1rem; height: 1rem; }
.icon-24 { width: 1.5rem; height: 1.5rem; }

/* ─────────────────── Fade-in on scroll ─────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transform: none; } }
