:root {
  /* Keller Williams brand + premium palette */
  --kw-red: #C8102E;
  --kw-red-d: #A00D24;
  --kw-red-l: #E8233F;
  --kw-black: #0A0A0A;
  --kw-dark: #141414;
  --kw-charcoal: #1E1E1E;
  --kw-gray: #2A2A2A;
  --kw-surface: #F5F5F3;
  --kw-surface-2: #EAEAE7;
  --kw-line: #D8D8D4;
  --kw-white: #FFFFFF;
  --kw-gold: #C9A84C;
  --kw-magenta: #E91E8C; /* KW Conecta badge */

  --ink: #1A1A1A;
  --body: #555555;
  --muted: #888888;

  --sans: 'Jost', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --shadow: 0 20px 60px rgba(0, 0, 0, .12);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .06);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, .18);
  --shadow-red: 0 8px 32px rgba(200, 16, 46, .3);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--kw-white); }
::-webkit-scrollbar-thumb { background: var(--kw-red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--kw-red-l); }
* { scrollbar-width: thin; scrollbar-color: var(--kw-red) var(--kw-white); }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--kw-white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .1s; }
.r2 { transition-delay: .2s; }
.r3 { transition-delay: .3s; }
.r4 { transition-delay: .4s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 6px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.btn-primary {
  background: var(--kw-red); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--kw-red-d); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200, 16, 46, .4); }
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
}
.btn-wa:hover { background: #1EB858; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--kw-line);
}
.btn-ghost:hover { border-color: var(--kw-red); color: var(--kw-red); }

/* ========== NAV ========== */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--kw-line);
  backdrop-filter: blur(12px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 76px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .n { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); transition: color .4s; }
.brand-text .s { font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--kw-red); margin-top: 4px; font-weight: 600; }

header:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
header:not(.scrolled) .brand-text .n { color: #fff; }
header:not(.scrolled) .brand-text .s { color: rgba(255,255,255,.7); }
header:not(.scrolled) .burger span { background: #fff; }
header:not(.scrolled) .navlinks a:not(.btn) { color: rgba(255,255,255,.8); }
header:not(.scrolled) .navlinks a:not(.btn):hover { color: #fff; }

.navlinks { display: flex; gap: 32px; align-items: center; }
.navlinks a:not(.btn) {
  font-size: 14px; font-weight: 400; color: var(--body);
  position: relative; padding: 6px 0; transition: color .25s;
}
.navlinks a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--kw-red);
  transition: width .3s cubic-bezier(.22,1,.36,1);
}
.navlinks a:not(.btn):hover { color: var(--ink); }
.navlinks a:not(.btn):hover::after { width: 100%; }
.nav .btn { padding: 12px 24px; font-size: 12px; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; transform-origin: center; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== Mobile Menu ========== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  padding: 48px 32px 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1), visibility .35s;
  pointer-events: none;
}
.mobile-menu::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px; background: var(--kw-red);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

.mobile-menu__brand {
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease; transition-delay: .06s;
}
.mobile-menu.open .mobile-menu__brand { opacity: 1; transform: translateY(0); }
.mobile-menu__name {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: #fff; margin-bottom: 2px;
}
.mobile-menu__tag {
  font-size: 9px; font-weight: 600; letter-spacing: .25em;
  color: var(--kw-red); text-transform: uppercase; margin-bottom: 16px;
}
.mobile-menu__bio {
  font-size: 13px; line-height: 1.6; color: #888; margin: 0;
}

.mobile-menu__section {
  margin-top: 32px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-menu.open .mobile-menu__section:nth-of-type(1) { opacity: 1; transform: translateY(0); transition-delay: .12s; }
.mobile-menu.open .mobile-menu__section:nth-of-type(2) { opacity: 1; transform: translateY(0); transition-delay: .18s; }

.mobile-menu__section-title {
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 14px;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; }
.mm-row { display: flex; gap: 16px; }
.mobile-menu__links a {
  display: block; flex: 1; font-family: var(--sans);
  font-size: 14px; font-weight: 400; color: #999;
  text-decoration: none; padding: 6px 0; transition: color .2s, transform .2s;
}
.mobile-menu__links a:hover { color: #fff; transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; max-height: 100vh; height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(10,10,10,.93) 0%, rgba(20,20,20,.82) 40%, rgba(30,30,30,.7) 100%),
    url('../images/hero-tucuman.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.5) 100%);
}

/* Decorative red accent line */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--kw-red); z-index: 5;
}

.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 740px; padding: 100px 0 120px; }
.hero-content {
  background: rgba(10, 10, 10, .35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  display: inline-block; margin-right: 6px; animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; font-weight: 500; color: rgba(255,255,255,.7); }
.hero h1 strong {
  font-weight: 700;
  color: var(--kw-red);
}
.hero .lead {
  font-size: 18px; color: rgba(255,255,255,.55);
  max-width: 540px; margin-bottom: 40px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn { padding: 16px 34px; font-size: 13px; }

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3; background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}
.hero-stat { text-align: center; position: relative; }
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,.08);
}
.hero-stat .num {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: #fff; line-height: 1;
}
.hero-stat .num span { color: var(--kw-red); }
.hero-stat .lab {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 8px; font-weight: 500;
}

/* ========== SECTIONS ========== */
section { padding: 110px 0; }
.shead { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.shead .kick {
  display: inline-block; font-size: 11px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--kw-red); font-weight: 600;
  background: rgba(200, 16, 46, .06); padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.shead h2 { font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 16px; }
.shead p { color: var(--body); font-size: 17px; line-height: 1.7; }
.divider { width: 52px; height: 3px; background: var(--kw-red); margin: 20px auto 0; border-radius: 2px; }

/* ========== SERVICES ========== */
.serv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.serv {
  position: relative; text-align: center; padding: 48px 24px 40px;
  border: 1px solid var(--kw-line); border-radius: var(--radius-lg);
  background: var(--kw-white); transition: all .4s cubic-bezier(.22,1,.36,1);
  display: block; color: inherit; overflow: hidden;
}
.serv::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--kw-red);
  transform: scaleX(0); transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.serv:hover::before { transform: scaleX(1); }
.serv:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.serv .ic { width: 52px; height: 52px; color: var(--kw-red); margin: 0 auto 20px; transition: transform .3s; }
.serv:hover .ic { transform: scale(1.1); }
.serv h3 { font-size: 24px; margin-bottom: 10px; }
.serv p { font-size: 14px; color: var(--body); margin-bottom: 18px; line-height: 1.65; }
.serv .link {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--kw-red); font-weight: 600; display: inline-flex;
  align-items: center; gap: 8px; transition: gap .3s;
}
.serv:hover .link { gap: 12px; }
.serv .link svg { width: 14px; height: 14px; fill: currentColor; }

/* ========== PROPERTIES ========== */
.props-section { background: var(--kw-surface); }
.chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.chip {
  padding: 10px 24px; border: 1.5px solid var(--kw-line); border-radius: 100px;
  font-size: 13px; cursor: pointer; transition: all .25s;
  color: var(--body); background: var(--kw-white); font-weight: 400;
}
.chip:hover { border-color: var(--kw-red); color: var(--kw-red); }
.chip.active { background: var(--kw-red); color: #fff; border-color: var(--kw-red); box-shadow: 0 4px 16px rgba(200,16,46,.2); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--kw-white); border: 1px solid var(--kw-line); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .4s cubic-bezier(.22,1,.36,1);
  cursor: pointer; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--kw-surface-2);
}
.card-img .card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; color: var(--muted);
  letter-spacing: .12em; transition: transform .6s;
}
.card:hover .card-placeholder { transform: scale(1.05); }

.badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.badge.venda { background: rgba(200,16,46,.92); color: #fff; }
.badge.dest { background: rgba(10,10,10,.8); color: #fff; left: auto; right: 16px; }

.card-b { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card .zone { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--kw-red); font-weight: 600; margin-bottom: 8px; }
.card h3 { font-size: 22px; margin-bottom: 4px; }
.card .price { font-family: var(--serif); font-size: 28px; color: var(--ink); font-weight: 700; margin: 6px 0 18px; }
.specs { display: flex; gap: 18px; color: var(--body); font-size: 13px; border-top: 1px solid var(--kw-line); padding-top: 16px; margin-top: auto; }
.specs span { display: flex; align-items: center; gap: 6px; }
.specs svg { width: 16px; height: 16px; stroke: var(--kw-red); fill: none; stroke-width: 1.8; }
.noresults { text-align: center; color: var(--muted); grid-column: 1 / -1; padding: 60px 0; display: none; }

/* ========== PROCESS ========== */
.process {
  background: var(--kw-black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.08) 0%, transparent 70%);
}
.process .shead .kick { color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.process h2 { color: #fff; }
.process .shead p { color: rgba(255,255,255,.5); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 17.5%; right: 17.5%;
  height: 1px; background: rgba(255,255,255,.1);
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--kw-black);
  border: 2px solid rgba(200,16,46,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--kw-red);
  transition: all .3s;
}
.step:hover .step-num { background: var(--kw-red); color: #fff; border-color: var(--kw-red); }
.step h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.step p { color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* ========== ABOUT ========== */
.about { background: var(--kw-surface); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow);
}
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.about-photo-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; border-radius: var(--radius);
  background: var(--kw-red); z-index: -1; opacity: .15;
}
.about-tag {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: linear-gradient(transparent, rgba(10,10,10,.9));
  padding: 28px 24px 20px; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.about-tag .nm { font-family: var(--serif); font-size: 26px; font-weight: 700; color: #fff; }
.about-tag .rl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }

.about h2 { font-size: clamp(32px, 4.2vw, 48px); margin: 18px 0 22px; }
.about p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.about p strong { color: var(--ink); font-weight: 500; }

.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.val {
  padding: 24px; background: var(--kw-white); border: 1px solid var(--kw-line);
  border-radius: var(--radius); transition: all .3s;
}
.val:hover { border-color: transparent; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.val .ic { width: 36px; height: 36px; color: var(--kw-red); margin-bottom: 14px; }
.val h4 { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.val p { font-size: 13px; color: var(--body); margin: 0; line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--kw-white); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card {
  background: var(--kw-surface); border: 1px solid var(--kw-line); border-radius: var(--radius-lg);
  padding: 36px 30px 30px; position: relative; transition: all .3s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.test-card .quote { font-family: var(--serif); font-size: 48px; color: var(--kw-red); line-height: 1; margin-bottom: 8px; opacity: .25; }
.stars { color: var(--kw-gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p { font-size: 15px; line-height: 1.7; color: var(--body); margin-bottom: 20px; font-style: italic; }
.test-card .author { display: flex; align-items: center; gap: 12px; }
.test-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--kw-surface-2), #D0D0CC);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--kw-red);
}
.test-card .aname { font-weight: 600; font-size: 14px; color: var(--ink); }
.test-card .arole { font-size: 12px; color: var(--muted); }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--kw-black);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.5); font-size: 17px; margin-bottom: 36px; position: relative; }
.cta-banner .btn { position: relative; }

/* ========== CONTACT ========== */
.contact { background: var(--kw-surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cinfo h3 { font-size: 32px; margin-bottom: 28px; }
.cinfo .crow { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.cinfo .crow svg { width: 22px; height: 22px; stroke: var(--kw-red); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
.cinfo .crow .t { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.cinfo .crow .v { font-size: 16px; color: var(--ink); font-weight: 400; transition: color .2s; }
a.v:hover { color: var(--kw-red); }

form {
  background: var(--kw-white); border-radius: var(--radius-lg); padding: 40px 36px;
  color: var(--ink); box-shadow: var(--shadow);
}
form h3 { font-size: 26px; margin-bottom: 6px; }
form .fsub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--kw-line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--kw-surface);
  font-weight: 300; transition: all .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--kw-red); background: var(--kw-white);
  box-shadow: 0 0 0 3px rgba(200,16,46,.08);
}
.field textarea { resize: vertical; min-height: 96px; }
form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.formnote { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ========== FOOTER ========== */
footer { background: var(--kw-black); }
.fmain { padding: 72px 0 36px; color: #888; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.fmain .n { font-family: var(--serif); font-size: 28px; color: #fff; font-weight: 700; }
.fmain .s { font-size: 9px; letter-spacing: .45em; text-transform: uppercase; color: var(--kw-red); margin: 8px 0 18px; font-weight: 600; }
.fmain p { font-size: 14px; max-width: 340px; line-height: 1.7; }
.fcol h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.fcol a { display: block; font-size: 14px; margin-bottom: 12px; color: #888; transition: color .2s; }
.fcol a:hover { color: #fff; }

/* KW Conecta badge in footer */
.footer-logo {
  height: 48px; width: auto;
  filter: brightness(0) invert(1);
  display: block; margin-bottom: 12px;
}
.footer-badges { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.footer-badges img { height: 48px; width: auto; }

/* Legal disclaimers */
.legal-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}
.legal-footer p { margin-bottom: 6px; }
.legal-footer strong { color: rgba(255,255,255,.5); }

.fbar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0; text-align: center; font-size: 12px; color: #555;
}
.fbar a { color: var(--kw-red-l); transition: color .2s; }
.fbar a:hover { color: var(--kw-red); }

/* ========== WHATSAPP FLOAT ========== */
.wafloat {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EB858);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  animation: pulse 2.5s infinite;
}
.wafloat:hover { transform: scale(1.1); }
.wafloat svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== MODAL ========== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,.8); display: none;
  align-items: center; justify-content: center; padding: 28px;
  backdrop-filter: blur(6px);
}
.modal.open { display: flex; }
.modal-box {
  background: var(--kw-white); border-radius: var(--radius-lg);
  max-width: 860px; width: 100%; max-height: 90vh; overflow: auto;
  position: relative; box-shadow: var(--shadow-lg);
}
.modal-img { aspect-ratio: 16/9; background: var(--kw-surface-2); position: relative; }
.modal-img .modal-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; color: var(--muted); letter-spacing: .12em;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px;
  border-radius: 50%; background: rgba(255,255,255,.95); border: none;
  font-size: 24px; line-height: 1; cursor: pointer; color: var(--ink); z-index: 3;
  display: flex; align-items: center; justify-content: center; transition: transform .2s;
}
.modal-close:hover { transform: scale(1.1); }
.modal-b { padding: 40px; }
.modal-b .zone { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--kw-red); font-weight: 600; }
.modal-b h3 { font-size: 34px; margin: 10px 0; }
.modal-b .price { font-family: var(--serif); font-size: 36px; color: var(--ink); font-weight: 700; margin: 8px 0 22px; }
.modal-specs { display: flex; gap: 32px; flex-wrap: wrap; border-top: 1px solid var(--kw-line); border-bottom: 1px solid var(--kw-line); padding: 20px 0; margin-bottom: 24px; }
.modal-specs span { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink); }
.modal-specs svg { width: 20px; height: 20px; stroke: var(--kw-red); fill: none; stroke-width: 1.8; }
.modal-b .desc { margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.modal-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== RESPONSIVE ========== */

/* Tablet: <=1024px */
@media (max-width: 1024px) {
  .wrap { max-width: 100%; padding: 0 32px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 380px; }
  .serv-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stat::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .fmain { grid-template-columns: 1fr 1fr; gap: 32px; }
  .test-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
}

/* Mobile: <=700px */
@media (max-width: 700px) {
  .wrap { max-width: 100%; padding: 0 20px; }
  .navlinks { display: none; }
  .burger { display: flex; }
  .nav { height: 64px; }
  .brand-text .n { font-size: 20px; }
  .brand-text .s { font-size: 8px; letter-spacing: .35em; margin-top: 4px; }
  .brand-logo { height: 36px; }
  .nav .btn { display: none; }

  .hero { min-height: 100vh; padding-top: 0; }
  .hero-inner {
    padding: 0; max-width: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    min-height: calc(100vh - 130px);
  }
  .hero-badge { font-size: 8px; letter-spacing: .14em; padding: 6px 12px; margin-bottom: 18px; }
  .hero h1 { font-size: 32px; margin-bottom: 14px; line-height: 1.12; }
  .hero .lead { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
  .hero-cta { flex-direction: column; gap: 10px; width: 100%; }
  .hero-cta .btn { width: 100%; padding: 14px 20px; font-size: 12px; border-radius: 8px; }

  .hero-stats { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10,10,10,.92); backdrop-filter: blur(12px); }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 18px 0; gap: 16px; }
  .hero-stat .num { font-size: 20px; }
  .hero-stat .lab { font-size: 8px; margin-top: 4px; }

  section { padding: 56px 0; }
  .shead { margin-bottom: 36px; }
  .shead h2 { font-size: 28px; margin-bottom: 10px; }
  .shead p { font-size: 15px; line-height: 1.6; }
  .shead .kick { font-size: 10px; padding: 5px 12px; }
  .divider { width: 36px; margin-top: 14px; }

  .serv-grid { grid-template-columns: 1fr; gap: 12px; }
  .serv { padding: 28px 20px 24px; }
  .serv .ic { width: 44px; height: 44px; margin-bottom: 14px; }
  .serv h3 { font-size: 20px; margin-bottom: 8px; }
  .serv p { font-size: 13px; margin-bottom: 14px; }
  .serv .link { font-size: 11px; }

  .grid { grid-template-columns: 1fr; gap: 16px; }
  .card .price { font-size: 24px; }
  .card h3 { font-size: 20px; }
  .chips { gap: 8px; }
  .chip { padding: 8px 16px; font-size: 12px; }

  .process-steps { gap: 32px; }
  .step h3 { font-size: 22px; }
  .step p { font-size: 14px; }
  .step-num { width: 48px; height: 48px; font-size: 18px; }

  .about-photo { max-width: 100%; }
  .about h2 { font-size: 26px; }
  .about p { font-size: 14px; }
  .vals { grid-template-columns: 1fr; gap: 10px; }
  .val { padding: 18px; }
  .val .ic { width: 30px; height: 30px; margin-bottom: 10px; }
  .val h4 { font-size: 14px; }
  .val p { font-size: 12px; }
  .about-photo-accent { width: 100px; height: 100px; bottom: -10px; right: -10px; }

  .test-grid { grid-template-columns: 1fr; gap: 14px; }
  .test-card { padding: 24px 20px 20px; }
  .test-card .quote { font-size: 36px; }
  .test-card p { font-size: 13px; }

  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 24px; margin-bottom: 10px; }
  .cta-banner p { font-size: 14px; margin-bottom: 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .cinfo h3 { font-size: 24px; margin-bottom: 20px; }
  .cinfo .crow { margin-bottom: 20px; }
  .cinfo .crow svg { width: 18px; height: 18px; }
  .cinfo .crow .t { font-size: 10px; }
  .cinfo .crow .v { font-size: 14px; }
  form { padding: 24px 20px; border-radius: var(--radius); }
  form h3 { font-size: 20px; }
  form .fsub { font-size: 13px; margin-bottom: 20px; }
  .field { margin-bottom: 14px; }
  .field label { font-size: 10px; margin-bottom: 6px; }
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: 14px; border-radius: 8px; }
  .field textarea { min-height: 80px; }
  form .btn { padding: 14px 20px; font-size: 12px; border-radius: 8px; }
  .formnote { font-size: 11px; }

  .fmain { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 24px; }
  .fmain .n { font-size: 22px; }
  .fmain .s { font-size: 8px; margin: 6px 0 14px; }
  .fmain p { font-size: 13px; }
  .fcol h4 { font-size: 10px; margin-bottom: 14px; }
  .fcol a { font-size: 13px; margin-bottom: 10px; }
  .fbar { font-size: 11px; padding: 18px 0; }
  .legal-footer { font-size: 10px; padding: 16px 0; }

  .modal { padding: 10px; }
  .modal-box { border-radius: var(--radius); }
  .modal-img { aspect-ratio: 4/3; }
  .modal-b { padding: 20px 18px; }
  .modal-b .zone { font-size: 10px; }
  .modal-b h3 { font-size: 22px; margin: 8px 0; }
  .modal-b .price { font-size: 26px; margin: 6px 0 16px; }
  .modal-specs { gap: 14px; padding: 16px 0; }
  .modal-specs span { font-size: 13px; }
  .modal-specs svg { width: 16px; height: 16px; }
  .modal-b .desc { font-size: 14px; margin-bottom: 20px; }
  .modal-cta { flex-direction: column; gap: 10px; }
  .modal-cta .btn { width: 100%; padding: 14px 20px; font-size: 12px; border-radius: 8px; }

  .wafloat { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .wafloat svg { width: 24px; height: 24px; }

  .mobile-menu { padding: 36px 24px 32px; }
  .mobile-menu__name { font-size: 24px; }
  .mobile-menu__bio { font-size: 12px; }
  .mobile-menu__section { margin-top: 24px; }
  .mobile-menu__links a { font-size: 14px; padding: 7px 0; }
}

/* Small phones: <=380px */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .hero .lead { font-size: 13px; }
  .hero-badge { font-size: 7px; padding: 5px 10px; }
  .hero-cta .btn { padding: 12px 16px; font-size: 11px; }
  .hero-stats-inner { padding: 14px 0; gap: 12px; }
  .hero-stat .num { font-size: 17px; }
  .hero-stat .lab { font-size: 7px; }
  section { padding: 44px 0; }
  .shead { margin-bottom: 28px; }
  .shead h2 { font-size: 24px; }
  .shead p { font-size: 14px; }
  .serv { padding: 22px 16px 20px; }
  .serv h3 { font-size: 18px; }
  .card h3 { font-size: 18px; }
  .card .price { font-size: 20px; }
  .step h3 { font-size: 20px; }
  .about h2 { font-size: 22px; }
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: 20px; }
  form { padding: 20px 16px; }
  form h3 { font-size: 18px; }
  .fmain { padding: 32px 0 20px; }
}
