/* =========================================================
   AUREA — Equilibrio Eco Residencial
   Versión 2 — formato inspirado en landing de condominios
   (header con menú horizontal, hero con foto + overlay,
   formulario flotante superpuesto, franja de íconos,
   contadores, grilla de proyectos/espacios, sección de
   ubicación con divisor curvo, footer con divisor orgánico)
   ========================================================= */

:root {
  --color-bg: #FBF8F3;
  --color-bg-alt: #F6F3EA;
  --color-surface: #FFFFFF;
  --color-brown: #5C3B32;
  --color-brown-deep: #3F2A23;
  --color-terracotta: #C66738;
  --color-terracotta-dark: #A8552C;
  --color-terracotta-light: #D89987;
  --color-olive: #7B6F55;
  --color-ink: #2C3345;
  --color-ink-soft: #5A6072;
  --color-mint: #F1EADF;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(60, 40, 30, 0.08);
  --shadow-md: 0 10px 30px rgba(60, 40, 30, 0.14);
  --shadow-lg: 0 24px 60px rgba(60, 40, 30, 0.22);

  --max-width: 1220px;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.title-italic {
  font-style: italic;
  font-weight: 800;
  color: var(--color-brown-deep);
  letter-spacing: -0.01em;
}

.section-heading {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 18px;
}

.section-lede {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--color-ink-soft);
  font-size: 16.5px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--color-terracotta); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-terracotta-dark); }

.btn--whatsapp { background: var(--color-whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: var(--color-whatsapp-dark); }

.btn--ghost { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

.btn--form {
  background: var(--color-terracotta-dark);
  color: #fff;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}
.btn--form:hover { background: var(--color-brown-deep); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(92, 59, 50, 0.08);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 16px; letter-spacing: 0.12em; color: var(--color-brown-deep); font-weight: 800; }
.brand-text span { font-size: 10.5px; color: var(--color-olive); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a, .nav-item > .nav-link { font-size: 14.5px; font-weight: 600; color: var(--color-ink-soft); transition: color 0.15s ease; }
.main-nav a:hover, .nav-item > .nav-link:hover { color: var(--color-terracotta); }
.main-nav a.is-active, .nav-item > .nav-link.is-active { color: var(--color-terracotta); }

.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none; font-family: var(--font-main); }
.nav-link svg { transition: transform 0.2s ease; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 200px;
  z-index: 50;
}

.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown { display: block; }

.nav-item:hover .nav-link svg,
.nav-item.is-open .nav-link svg { transform: rotate(180deg); }

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink-soft);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--color-bg-alt); color: var(--color-terracotta); }

.nav-toggle { display: none; position: relative; z-index: 220; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-brown-deep); margin: 5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open { overflow: hidden; }
body.nav-open .main-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px 24px;
  gap: 2px;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
body.nav-open .main-nav > a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(92,59,50,0.08); font-size: 16px; }
body.nav-open .nav-item { width: 100%; border-bottom: 1px solid rgba(92,59,50,0.08); }
body.nav-open .nav-link { width: 100%; padding: 12px 0; font-size: 16px; justify-content: space-between; }
body.nav-open .nav-dropdown {
  display: none;
  position: static;
  transform: none;
  box-shadow: none;
  background: var(--color-bg-alt);
  margin: 0 0 8px;
  width: 100%;
}
body.nav-open .nav-item.is-open .nav-dropdown { display: block; }
body.nav-open .nav-dropdown a { padding: 10px 14px; }
.nav-backdrop { display: none; }
body.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(44,27,20,0.35); z-index: 150; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(63,42,35,0.94) 0%, rgba(63,42,35,0.78) 38%, rgba(63,42,35,0.15) 68%),
              url('../img/hero-sculpture.jpg') center 30% / cover no-repeat;
  color: #fff;
  padding: 64px 0 40px;
}

.hero-inner { max-width: 620px; }

.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  color: var(--color-terracotta-light);
}

.price-box {
  display: inline-block;
  background: rgba(0,0,0,0.28);
  border: 2px solid var(--color-terracotta-light);
  border-radius: var(--radius-md);
  padding: 16px 26px;
  margin: 6px 0 30px;
}

.price-box .label { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.price-box .value { font-size: clamp(34px, 5vw, 50px); font-weight: 800; color: var(--color-terracotta-light); line-height: 1.1; }

.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Stat icon strip */

.stat-strip {
  background: var(--color-brown-deep);
  position: relative;
  z-index: 5;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 24px;
}

.stat-strip-item { display: flex; align-items: center; gap: 14px; color: #fff; }

.stat-strip-icon {
  width: 48px; height: 48px; flex: none;
  border: 2px solid var(--color-terracotta-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-terracotta-light);
}

.stat-strip-item strong { display: block; font-size: 15px; font-weight: 800; }
.stat-strip-item span { font-size: 12.5px; color: rgba(255,255,255,0.75); }

/* ---------- Floating form (overlaps hero/stat-strip and next section) ---------- */

.form-float-wrap {
  position: relative;
  z-index: 20;
  margin-top: -70px;
  margin-bottom: -70px;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.form-card {
  background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta) 70%);
  border-radius: var(--radius-lg);
  padding: 34px 38px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  width: 100%;
}

.form-card h3 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.form-grid input {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: 14.5px;
  background: rgba(255,255,255,0.95);
  color: var(--color-ink);
}
.form-grid input::placeholder { color: var(--color-ink-soft); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
}
.form-check input { margin-top: 3px; }

/* ---------- Trust / counters ---------- */

.trust-section {
  padding: 110px 0 70px;
  text-align: center;
}

.trust-section p.intro {
  max-width: 780px;
  margin: 0 auto 50px;
  color: var(--color-ink-soft);
  font-size: 16px;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.counter strong {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 10px;
}

.counter span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brown);
}

/* ---------- Spaces / project-style grid ---------- */

.spaces-section { padding: 70px 0 90px; background: var(--color-bg-alt); }

.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 40px;
}

.space-card figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}

.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.space-card:hover img { transform: scale(1.05); }

.space-card h3 {
  margin: 18px 0 0;
  font-size: 26px;
  text-align: center;
}

/* ---------- Benefits (dark cards on light band) ---------- */

.benefits-section { padding: 90px 0; background: var(--color-mint); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--color-brown-deep);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  color: #fff;
}

.benefit-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--color-terracotta-light);
  color: var(--color-terracotta-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.benefit-card h4 { color: var(--color-terracotta-light); font-size: 18px; margin: 0 0 10px; font-weight: 800; }
.benefit-card p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,0.85); }

/* ---------- Location with curved divider ---------- */

.location-section { position: relative; padding-top: 40px; }

.location-heading { padding: 40px 0 10px; }

.curve-divider {
  position: relative;
  height: 60px;
  margin-bottom: -1px;
}
.curve-divider svg { display: block; width: 100%; height: 100%; }

.map-photo-wrap {
  position: relative;
  overflow: hidden;
}

.map-photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.map-photo-wrap .map-frame {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.map-pin-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Contact section ---------- */

.contact-section {
  position: relative;
  padding: 90px 0 140px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.contact-photo-strip {
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  overflow: hidden;
}
.contact-photo-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.contact-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.contact-heading h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.contact-heading p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; }

.contact-section .form-card { margin: 0 auto; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 60%, var(--color-brown-deep) 130%);
  color: rgba(255,255,255,0.85);
  padding-top: 40px;
}

.footer-wave { margin-top: -1px; }
.footer-wave svg { display: block; width: 100%; height: 70px; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 42px; background: #fff; border-radius: 10px; padding: 5px; }
.footer-brand strong { color: #fff; font-size: 16px; display: block; }
.footer-brand span { font-size: 12px; color: rgba(255,255,255,0.75); }

.footer-contact { font-size: 14px; color: #fff; font-weight: 600; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 30px;
  font-size: 13px;
}

/* ---------- Floating WhatsApp button ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 14.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: float-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); background: var(--color-whatsapp-dark); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.7); }
}

/* ---------- Page hero (subpáginas) ---------- */

.page-hero {
  position: relative;
  padding: 70px 0 56px;
  background: linear-gradient(120deg, rgba(63,42,35,0.92), rgba(168,85,44,0.82)), var(--page-hero-img, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin: 0 0 10px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto; font-size: 16px; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--color-terracotta-light); }

/* ---------- Contenido genérico de página interna ---------- */

.page-section { padding: 70px 0; }
.page-section--alt { background: var(--color-bg-alt); }

.prose { max-width: 780px; margin: 0 auto; }
.prose p { color: var(--color-ink-soft); font-size: 16px; margin-bottom: 18px; }
.prose h2 { font-size: 24px; margin: 34px 0 14px; }
.prose ul { padding-left: 20px; color: var(--color-ink-soft); }
.prose li { margin-bottom: 8px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Timeline (Trayectoria) ---------- */

.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-terracotta-light);
}
.timeline-item { position: relative; padding-bottom: 38px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-terracotta);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-terracotta-light);
}
.timeline-item .year { font-weight: 800; color: var(--color-terracotta); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.timeline-item h3 { margin: 0 0 8px; font-size: 19px; }
.timeline-item p { margin: 0; color: var(--color-ink-soft); font-size: 15px; }

/* ---------- Noticias / grid de artículos ---------- */

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,59,50,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.news-card .news-tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-terracotta); margin-bottom: 8px; }
.news-card h3 { font-size: 17px; margin: 0 0 10px; }
.news-card p { color: var(--color-ink-soft); font-size: 14px; flex: 1; margin: 0 0 14px; }
.news-card .news-link { font-size: 13.5px; font-weight: 700; color: var(--color-brown-deep); }
.news-card .news-link:hover { color: var(--color-terracotta); }

.news-hub-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.news-hub-tabs a {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  border: 2px solid var(--color-terracotta);
  color: var(--color-terracotta);
}
.news-hub-tabs a.is-active, .news-hub-tabs a:hover { background: var(--color-terracotta); color: #fff; }

/* ---------- Artículo individual ---------- */

.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin: -34px auto 40px; max-width: 900px; position: relative; z-index: 5; }
.article-hero-img img { width: 100%; max-height: 420px; object-fit: cover; }

.article-meta { display: flex; justify-content: center; gap: 18px; font-size: 13px; color: var(--color-ink-soft); font-weight: 600; margin-bottom: 30px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 6px; }

.quote-block {
  border-left: 4px solid var(--color-terracotta);
  background: var(--color-bg-alt);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-brown-deep);
  margin: 26px 0;
}

.related-articles { max-width: 900px; margin: 60px auto 0; }
.related-articles h2 { text-align: center; }

.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---------- Libro de reclamaciones ---------- */

.claims-form { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 36px; border: 1px solid rgba(92,59,50,0.08); }
.claims-form fieldset { border: none; padding: 0; margin: 0 0 26px; }
.claims-form legend { font-weight: 800; color: var(--color-brown-deep); font-size: 15px; margin-bottom: 14px; padding: 0; }
.claims-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.claims-grid.full { grid-template-columns: 1fr; }
.claims-form label { display: block; font-size: 13px; font-weight: 600; color: var(--color-brown); margin-bottom: 6px; }
.claims-form input, .claims-form select, .claims-form textarea {
  width: 100%;
  border: 1.5px solid rgba(92,59,50,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-ink);
  background: var(--color-bg);
}
.claims-form textarea { min-height: 110px; resize: vertical; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.radio-row input { width: auto; }
.claims-note { background: var(--color-mint); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 13.5px; color: var(--color-brown); margin-bottom: 26px; }

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */

@media (max-width: 1024px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .spaces-grid { gap: 34px 28px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .benefit-card { padding: 26px 22px; }
  .form-card { padding: 28px 26px 32px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 34px; }
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  .hero { min-height: 560px; }
  .hero-inner { max-width: 100%; }

  .form-float-wrap { margin-top: -56px; margin-bottom: -56px; }

  .counters { grid-template-columns: repeat(3, 1fr); gap: 14px; }

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

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

  .map-photo-wrap img, .map-photo-wrap .map-frame { height: 380px; }

  .two-col { grid-template-columns: 1fr; }
  .two-col .two-col-img { order: -1; }
  .claims-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — Móvil
   ========================================================= */

@media (max-width: 680px) {
  .container { padding: 0 18px; }

  .hero { min-height: auto; padding: 40px 0 32px; text-align: left; }
  .hero h1 { font-size: 30px; }
  .price-box { padding: 14px 20px; }
  .price-box .value { font-size: 34px; }
  .hero .btn-row { flex-direction: column; align-items: stretch; }
  .hero .btn-row .btn { width: 100%; }

  .stat-strip .container { grid-template-columns: 1fr 1fr; padding: 20px 18px; }
  .stat-strip-item { gap: 10px; }
  .stat-strip-icon { width: 40px; height: 40px; }
  .stat-strip-item strong { font-size: 13px; }
  .stat-strip-item span { font-size: 11px; }

  .form-float-wrap { margin-top: -40px; margin-bottom: -50px; padding: 0 14px; }
  .form-card { padding: 24px 20px 28px; border-radius: var(--radius-md); }
  .form-card h3 { font-size: 19px; }
  .form-grid { grid-template-columns: 1fr; gap: 10px; }

  .trust-section { padding: 84px 0 56px; }
  .trust-section p.intro { margin-bottom: 34px; }
  .counters { grid-template-columns: 1fr; gap: 22px; }

  .spaces-section { padding: 56px 0 64px; }
  .spaces-grid { grid-template-columns: 1fr; gap: 30px; }
  .space-card h3 { font-size: 21px; }

  .benefits-section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; }

  .map-photo-wrap img, .map-photo-wrap .map-frame { height: 300px; }
  .map-pin-badge { font-size: 12px; padding: 8px 16px; }

  .contact-section { padding: 60px 0 100px; }
  .contact-photo-strip { height: 180px; }
  .contact-inner { padding-top: 90px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-float span.label { display: none; }
  .whatsapp-float { padding: 16px; bottom: 18px; right: 18px; }

  .page-hero { padding: 46px 0 40px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 14.5px; }

  .page-section { padding: 48px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-hub-tabs a { padding: 9px 16px; font-size: 12.5px; }

  .article-hero-img { margin: -24px auto 26px; }
  .article-hero-img img { max-height: 240px; }
  .article-meta { gap: 10px 14px; }

  .claims-form { padding: 22px; }
  .claims-grid { grid-template-columns: 1fr; }

  .timeline { padding-left: 22px; }
  .timeline-item::before { left: -22px; }
  .testimonios-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 26px; }
  .price-box .value { font-size: 28px; }
  .section-heading { font-size: 22px; }
  .brand img { height: 38px; }
  .brand-text strong { font-size: 13px; }
  .brand-text span { font-size: 9px; }
}
