/* ================================================
   SALADAR · styles.css
   Colores corporativos: Azul marino #1a3660 + Naranja #e8821e
   Tipografía: Libre Baskerville (serif display) + Plus Jakarta Sans (UI)
   ================================================ */

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

:root {
  /* ─ Colores corporativos ─ */
  --navy:        #1a3660;
  --navy-deep:   #122549;
  --navy-mid:    #1e3f72;
  --navy-lt:     #2a5298;
  --navy-pale:   #e8eef7;

  --orange:      #e8821e;
  --orange-dk:   #cf6f12;
  --orange-lt:   #f0963a;
  --orange-pale: #fdf0e3;

  --white:       #ffffff;
  --off:         #f7f8fc;
  --canvas:      #f4f5f9;
  --ink:         #111827;
  --ink-mid:     #374151;
  --ink-lt:      #6b7280;
  --line:        rgba(26,54,96,.1);
  --line-lt:     rgba(26,54,96,.06);
  --wa:          #25D366;

  /* ─ Tipo ─ */
  --serif:       'Libre Baskerville', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;

  /* ─ Espaciado / forma ─ */
  --r:           8px;
  --r-lg:        14px;
  --r-xl:        22px;
  --max:         1160px;
  --ease:        .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
h2 em { font-style: italic; font-weight: 400; color: var(--orange); }
h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.overtitle {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.overtitle--light { color: rgba(255,255,255,.6); }

.sec-desc {
  font-size: .97rem;
  color: var(--ink-lt);
  max-width: 50ch;
  margin-top: .4rem;
}
.sec-head { max-width: 560px; margin-bottom: 3.5rem; }
.sec-head h2 { margin-bottom: .6rem; }

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,130,30,.35);
}
.btn-orange:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,130,30,.45);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,.15);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--wa);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
  transition: all var(--ease);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,211,102,.4);
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--navy-deep);
  padding: .55rem 0;
  font-size: .74rem;
  color: rgba(255,255,255,.55);
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.topbar-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
  font-size: .74rem;
}
.topbar-link:hover { color: var(--orange-lt); }
.topbar-sep { opacity: .3; }
.topbar-badge {
  background: rgba(232,130,30,.18);
  color: var(--orange-lt);
  border: 1px solid rgba(232,130,30,.25);
  padding: .2rem .75rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--line-lt);
  padding: .9rem 0;
  transition: box-shadow var(--ease), padding var(--ease);
}
.header.stuck {
  box-shadow: 0 2px 20px rgba(26,54,96,.1);
  padding: .65rem 0;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-img--footer { height: 40px; filter: brightness(0) invert(1); }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  flex-shrink: 0;
}
.logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.logo-sub {
  display: block;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-lt); margin-top: .1rem;
}

/* Nav */
.nav-list {
  display: flex; align-items: center; gap: .1rem;
  list-style: none;
}
.nav-link {
  display: block;
  padding: .5rem 1rem;
  font-size: .82rem; font-weight: 500;
  color: var(--ink-mid);
  border-radius: 999px;
  transition: all var(--ease);
}
.nav-link:hover { color: var(--navy); background: var(--navy-pale); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: .55rem 1.4rem;
  background: var(--orange);
  color: #fff;
  font-size: .82rem; font-weight: 600;
  border-radius: 999px;
  margin-left: .6rem;
  transition: all var(--ease);
  box-shadow: 0 3px 14px rgba(232,130,30,.3);
}
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,130,30,.4); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 5px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s ease;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mob {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 800;
  padding: 5.5rem 2rem 2.5rem;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mob.open { transform: none; }
.mob-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.7); border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--ease);
}
.mob-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.mob-list { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.mob-link {
  display: block;
  padding: 1rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,.8);
  border-radius: var(--r);
  border-left: 3px solid transparent;
  transition: all var(--ease);
}
.mob-link:hover { color: #fff; border-color: var(--orange); background: rgba(255,255,255,.05); }
.mob-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  text-align: center;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mob-contacts {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: .6rem;
}
.mob-contacts a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.mob-contacts a:hover { color: var(--orange-lt); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: var(--navy);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 5.5rem 0 4rem;
}

/* Background geometry */
.hero-geo { position: absolute; inset: 0; pointer-events: none; }
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.geo-ring--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
}
.geo-ring--2 {
  width: 900px; height: 900px;
  top: -350px; right: -300px;
  border-color: rgba(232,130,30,.06);
}
.geo-stripe {
  position: absolute;
  top: 0; bottom: 0;
  right: 36%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 30%, rgba(255,255,255,.06) 70%, transparent);
}

/* Hero layout */
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.6rem;
}
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-lt);
}
.hero-lead {
  font-size: .97rem; font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 50ch; line-height: 1.8;
  margin-bottom: 2.4rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Stats sidebar */
.hero-stats {
  display: flex; flex-direction: column; gap: 1px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.stat-card {
  background: rgba(255,255,255,.04);
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stat-card:last-child { border: none; }
.stat-card:hover { background: rgba(255,255,255,.07); }
.stat-card--accent { background: rgba(232,130,30,.12); }
.stat-card--accent:hover { background: rgba(232,130,30,.18); }
.stat-n {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 700;
  color: #fff; line-height: 1;
  display: inline;
}
.stat-u {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--orange-lt);
}
.stat-l {
  display: block;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: .3rem;
}
.stat-card--shield {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(255,255,255,.03);
}
.stat-card--shield svg { color: var(--orange); flex-shrink: 0; }
.stat-card--shield span { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.sec-services { padding: 6.5rem 0; background: var(--white); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.srv-card {
  background: var(--off);
  border: 1px solid var(--line-lt);
  border-radius: var(--r-xl);
  padding: 2.2rem 1.8rem 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}
.srv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,54,96,.1);
  border-color: rgba(26,54,96,.12);
  background: var(--white);
}
.srv-card:hover::before { transform: scaleX(1); }
.srv-ico {
  width: 50px; height: 50px;
  background: var(--navy-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-lt);
  margin-bottom: 1rem;
  transition: background var(--ease), color var(--ease);
}
.srv-card:hover .srv-ico {
  background: var(--orange-pale);
  color: var(--orange-dk);
}
.srv-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em;
  color: rgba(26,54,96,.2);
}
.srv-card h3 { font-size: 1rem; margin-bottom: .55rem; }
.srv-card p { font-size: .87rem; color: var(--ink-lt); line-height: 1.7; }
.srv-arrow {
  position: absolute; bottom: 1.3rem; right: 1.5rem;
  font-size: 1.1rem; color: var(--line);
  transition: color var(--ease), transform var(--ease);
}
.srv-card:hover .srv-arrow { color: var(--orange); transform: translateX(4px); }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,130,30,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -50px; right: 10%;
  width: 300px; height: 300px;
  border: 1px solid rgba(232,130,30,.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
  position: relative;
}
.cta-text h2 { color: #fff; }
.cta-text h2 em { color: var(--orange-lt); }
.cta-text > p { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: .4rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════
   ABOUT / NOSOTROS
══════════════════════════════ */
.sec-about { padding: 6.5rem 0; background: var(--canvas); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.about-visual { position: relative; }
.about-deco-box {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  width: 100px; height: 100px;
  border: 2px solid rgba(232,130,30,.2);
  border-radius: var(--r-xl);
  z-index: 0;
  pointer-events: none;
}
.about-main-card {
  position: relative; z-index: 1;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.8rem;
  overflow: hidden;
}
.about-main-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at 100% 0%, rgba(232,130,30,.12), transparent 65%);
  pointer-events: none;
}
.about-card-top svg { color: var(--orange); margin-bottom: 1.4rem; }
.about-main-card blockquote {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400;
  font-style: italic; line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
}
.about-card-footer {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.about-avatar {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.about-card-footer strong {
  display: block; font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.9);
}
.about-card-footer span {
  display: block; font-size: .75rem;
  color: rgba(255,255,255,.45); margin-top: .1rem;
}
.about-badge-card {
  position: absolute;
  bottom: -1.8rem; right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 8px 32px rgba(26,54,96,.15);
  z-index: 2;
}
.about-badge-card img { width: 52px; height: 52px; object-fit: contain; border-radius: var(--r); }
.badge-info strong { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); }
.badge-info span { display: block; font-size: .72rem; color: var(--ink-lt); margin-top: .1rem; }

.about-text { display: flex; flex-direction: column; }
.about-text h2 { margin-top: .3rem; }
.about-text p { font-size: .93rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: .9rem; }

.about-info { display: flex; flex-direction: column; gap: .7rem; margin: 1rem 0 1.5rem; }
.ainfo-item { display: flex; align-items: center; gap: .75rem; }
.ainfo-ico {
  width: 32px; height: 32px;
  background: var(--navy-pale);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-lt); flex-shrink: 0;
}
.ainfo-item span { font-size: .86rem; color: var(--ink-mid); }

.contact-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem;
  font-size: .8rem; font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: all var(--ease);
}
.pill:hover { border-color: var(--navy); background: var(--navy-pale); }
.pill--accent {
  background: var(--orange-pale);
  border-color: rgba(232,130,30,.3);
  color: var(--orange-dk);
}
.pill--accent:hover { background: var(--orange-pale); border-color: var(--orange); color: var(--orange-dk); }

/* ══════════════════════════════
   WHY / VENTAJAS
══════════════════════════════ */
.sec-why { padding: 6.5rem 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--off);
  border: 1px solid var(--line-lt);
  border-radius: var(--r-xl);
  padding: 2.2rem 1.8rem;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  background: var(--white);
  border-color: rgba(26,54,96,.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26,54,96,.08);
}
.why-ico {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  transition: all var(--ease);
}
.why-ico--1 { background: var(--navy-pale); color: var(--navy-lt); }
.why-ico--2 { background: var(--orange-pale); color: var(--orange-dk); }
.why-ico--3 { background: rgba(37,211,102,.1); color: #1a7a40; }
.why-ico--4 { background: rgba(139,92,246,.1); color: #6d28d9; }
.why-card:hover .why-ico--1 { background: var(--navy); color: #fff; }
.why-card:hover .why-ico--2 { background: var(--orange); color: #fff; }
.why-card:hover .why-ico--3 { background: #1a7a40; color: #fff; }
.why-card:hover .why-ico--4 { background: #6d28d9; color: #fff; }
.why-card h3 { font-size: .98rem; margin-bottom: .55rem; }
.why-card p { font-size: .86rem; color: var(--ink-lt); line-height: 1.7; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.sec-contact {
  padding: 6.5rem 0;
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.sec-contact::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 60vw; height: 130vh;
  background: radial-gradient(ellipse, rgba(232,130,30,.07) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-info h2 { color: #fff; }
.contact-info h2 em { color: var(--orange-lt); }
.contact-info > p {
  font-size: .93rem; color: rgba(255,255,255,.58);
  max-width: 42ch; margin-bottom: 2.5rem;
}
.cinfo-list { display: flex; flex-direction: column; gap: .8rem; }
.cinfo-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: all var(--ease);
  cursor: pointer;
}
.cinfo-row:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.14); }
.cinfo-row--orange { border-color: rgba(232,130,30,.25); background: rgba(232,130,30,.08); }
.cinfo-row--orange:hover { background: rgba(232,130,30,.14); border-color: rgba(232,130,30,.35); }
.cinfo-row--static { cursor: default; }
.cinfo-ico {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); flex-shrink: 0;
}
.cinfo-row--orange .cinfo-ico { color: var(--orange-lt); background: rgba(232,130,30,.15); }
.cinfo-row strong {
  display: block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .2rem;
}
.cinfo-row span { font-size: .9rem; color: rgba(255,255,255,.78); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.form-header {
  background: var(--navy);
  padding: 1.6rem 2.4rem;
  border-bottom: 2px solid var(--orange);
}
.form-header h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: .2rem;
}
.form-header p { font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
form { padding: 2rem 2.4rem 2.4rem; }
.f-field { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-field label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mid);
}
.f-field input, .f-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(26,54,96,.12);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .9rem; color: var(--ink);
  background: var(--off);
  outline: none; resize: vertical;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.f-field input:focus, .f-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,54,96,.08);
}
.f-field input::placeholder, .f-field textarea::placeholder { color: #bbb; font-size: .88rem; }
.f-check {
  display: flex; align-items: flex-start; gap: .55rem;
  margin-bottom: 1.2rem;
}
.f-check input[type="checkbox"] { width: auto; accent-color: var(--navy); margin-top: .2rem; }
.f-check label { font-size: .8rem; color: var(--ink-lt); }
.f-check a { color: var(--orange-dk); border-bottom: 1px solid currentColor; }
.f-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(232,130,30,.35);
  transition: all var(--ease);
}
.f-submit:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(232,130,30,.45);
}
.f-ok {
  display: none;
  margin-top: 1rem; padding: .9rem 1.1rem;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r);
  font-size: .86rem; color: #166534;
  text-align: center;
}
.f-ok.show { display: block; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.5);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  font-size: .86rem; line-height: 1.75;
  margin-top: 1.2rem; max-width: 30ch;
}
.footer-coleg {
  display: inline-block;
  margin-top: .9rem;
  font-size: .67rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,130,30,.1);
  padding: .3rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(232,130,30,.2);
}
.footer-fb {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
  transition: color var(--ease);
}
.footer-fb:hover { color: #4267B2; }
.footer-col h4 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a, .footer-link {
  display: block;
  font-size: .86rem; color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-col a:hover, .footer-link:hover { color: var(--orange-lt); }
.footer-col--contact { display: flex; flex-direction: column; }
.footer-col--contact h4 { margin-bottom: 1.2rem; }
.footer-link { margin-bottom: .55rem; }
.footer-col--contact address {
  font-style: normal;
  font-size: .84rem; line-height: 1.65;
  margin-top: .5rem;
}
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  font-size: .77rem; flex-wrap: wrap;
}
.footer-bottom a { transition: color var(--ease); }
.footer-bottom a:hover { color: var(--orange-lt); }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 800;
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
}
.wa-float > svg {
  position: relative; z-index: 1;
  width: 62px; height: 62px;
  padding: 17px;
  background: var(--wa);
  border-radius: 50%;
  box-shadow: 0 6px 26px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.wa-float:hover > svg {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
.wa-pulse {
  position: absolute;
  right: 2rem; bottom: 2rem;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: waPulse 2.4s ease infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.wa-label {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  opacity: 0; transform: translateX(8px);
  transition: opacity var(--ease), transform var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-label { opacity: 1; transform: none; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1060px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; border-radius: var(--r-xl); }
  .stat-card { flex: 1; min-width: 140px; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
  .burger { display: flex; }
  .mob { display: block; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .topbar-right { display: none; }
}

@media (max-width: 560px) {
  .srv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.4rem; }
  .f-row { grid-template-columns: 1fr; }
  .contact-form-wrap form { padding: 1.5rem 1.25rem 1.75rem; }
  .form-header { padding: 1.4rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 1.25rem; }
  .hero { padding: 4rem 0 3rem; }
}


/* ══════════════════════════════
   ADAPTACIÓN VISUAL CON FOTOGRAFÍAS
══════════════════════════════ */
.hero { min-height:min(900px,calc(100vh - 90px)); background:radial-gradient(circle at 88% 20%,rgba(232,130,30,.14),transparent 31rem),linear-gradient(122deg,var(--navy-deep) 0%,var(--navy) 62%,#213e69 100%); }
.hero-wrap { grid-template-columns:minmax(410px,1fr) minmax(420px,510px); gap:clamp(2.5rem,5vw,5.2rem); }
.hero-media { position:relative; padding-bottom:5.4rem; }
.hero-photo { position:relative; height:min(640px,68vh); border-radius:30px; overflow:hidden; box-shadow:0 28px 72px rgba(7,20,43,.42); border:1px solid rgba(255,255,255,.12); }
.hero-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(9,24,48,.7),transparent 34%); }
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position:center 36%; }
.hero-photo figcaption { position:absolute; z-index:1; bottom:1.35rem; left:1.4rem; right:1.4rem; display:flex; align-items:center; gap:.6rem; font-size:.77rem; font-weight:500; letter-spacing:.04em; color:rgba(255,255,255,.92); }
.hero-photo-dot { display:inline-block; flex:0 0 8px; width:8px; height:8px; border-radius:50%; background:var(--orange-lt); }
.hero-media .hero-stats { position:absolute; left:-2.3rem; right:1.55rem; bottom:0; display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-radius:18px; background:rgba(18,37,73,.9); box-shadow:0 18px 44px rgba(0,0,0,.25); }
.hero-media .stat-card { padding:1rem .9rem; border-bottom:0; border-right:1px solid rgba(255,255,255,.07); }
.hero-media .stat-card:last-child { border-right:none; }
.hero-media .stat-n { font-size:1.85rem; }
.hero-media .stat-u { font-size:1.2rem; }
.hero-media .stat-l { font-size:.58rem; letter-spacing:.08em; }
.hero-media .stat-card--shield { gap:.5rem; align-items:center; }
.hero-media .stat-card--shield span { font-size:.67rem; line-height:1.45; }
.about-grid { gap:clamp(3rem,6vw,5.4rem); }
.about-photo-frame { position:relative; z-index:1; height:600px; border-radius:28px; overflow:hidden; box-shadow:0 22px 54px rgba(26,54,96,.12); }
.about-photo-frame img { width:100%; height:100%; object-fit:cover; object-position:center 46%; }
.about-photo-frame::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(18,37,73,.76),transparent 40%); }
.about-photo-caption { position:absolute; z-index:1; left:1.7rem; right:1.7rem; bottom:1.7rem; color:#fff; }
.about-photo-caption span { display:block; margin-bottom:.35rem; color:var(--orange-lt); font-size:.65rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; }
.about-photo-caption strong { display:block; max-width:20ch; font-family:var(--serif); font-size:1.25rem; line-height:1.45; }
.about-badge-card { bottom:-1.35rem; right:-1.1rem; }
.sec-spaces { padding:6.5rem 0; background:var(--white); }
.spaces-head { display:flex; align-items:end; justify-content:space-between; gap:2.5rem; margin-bottom:3rem; }
.spaces-head h2 { margin-bottom:0; }
.spaces-head > p { max-width:37ch; color:var(--ink-lt); font-size:.94rem; padding-bottom:.45rem; }
.spaces-grid { display:grid; grid-template-columns:1.25fr .86fr .86fr; gap:1.15rem; }
.space-card { position:relative; min-height:440px; border-radius:22px; overflow:hidden; background:var(--canvas); }
.space-card img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .65s cubic-bezier(.4,0,.2,1); }
.space-card--wide img { object-position:center 34%; }
.space-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(18,37,73,.72),transparent 44%); }
.space-card:hover img { transform:scale(1.035); }
.space-card figcaption { position:absolute; z-index:1; bottom:1.35rem; left:1.4rem; right:1.4rem; color:#fff; }
.space-card strong { display:block; font-family:var(--serif); font-size:1.15rem; margin-bottom:.14rem; }
.space-card span { font-size:.78rem; color:rgba(255,255,255,.72); }
@media (max-width:1060px) { .hero { min-height:0; } .hero-wrap { grid-template-columns:1fr; } .hero-media { max-width:640px; width:100%; margin:0 auto; } .hero-photo { height:620px; } .hero-media .hero-stats { left:1.2rem; right:1.2rem; } .spaces-grid { grid-template-columns:1fr 1fr; } .space-card--wide { grid-column:span 2; min-height:500px; } }
@media (max-width:800px) { .hero-photo { height:min(66vh,560px); } .hero-media { padding-bottom:0; } .hero-media .hero-stats { position:relative; left:auto; right:auto; bottom:auto; margin-top:1rem; grid-template-columns:1fr 1fr; } .spaces-head { flex-direction:column; align-items:start; gap:1rem; } }
@media (max-width:560px) { .hero-media .hero-stats { grid-template-columns:1fr 1fr; } .hero-media .stat-card { padding:.9rem .8rem; } .about-photo-frame { height:465px; } .about-badge-card { position:relative; bottom:auto; right:auto; margin:.9rem 0 0; } .spaces-grid { grid-template-columns:1fr; } .space-card,.space-card--wide { grid-column:auto; min-height:400px; } .sec-spaces { padding:5rem 0; } }


/* ══════════════════════════════
   OPTIMIZACIÓN MÓVIL PROFESIONAL
══════════════════════════════ */
.mobile-contact-bar { display: none; }

@media (max-width: 800px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }

  .topbar {
    padding: .46rem 0;
    overflow: hidden;
  }
  .topbar-inner { justify-content: center; padding: 0 1rem; }
  .topbar-left { justify-content: center; gap: .5rem; }
  .topbar-left .topbar-link:last-child,
  .topbar-sep:nth-of-type(2) { display: none; }

  .header { padding: .7rem 0; }
  .header.stuck { padding: .58rem 0; }
  .header-inner { padding: 0 1.15rem; }
  .logo-img { height: 42px; }
  .burger {
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--off);
  }
  .burger span { width: 22px; }

  .mob { padding: 5.3rem 1.15rem 6rem; }
  .mob-link {
    padding: 1.04rem 1rem;
    font-size: 1.22rem;
  }
  .mob-cta { min-height: 52px; display: flex; align-items: center; justify-content: center; }

  .hero {
    padding: 3.3rem 0 2.6rem;
    min-height: 0;
  }
  .hero-wrap {
    gap: 2.3rem;
    padding: 0 1.15rem;
  }
  .hero-eyebrow {
    font-size: .63rem;
    letter-spacing: .11em;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .hero-h1 {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: .91rem;
    line-height: 1.68;
    margin-bottom: 1.7rem;
  }
  .hero-btns { gap: .65rem; }
  .hero-btns .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
  .hero-photo {
    height: clamp(360px, 110vw, 520px);
    border-radius: 19px;
  }
  .hero-photo figcaption {
    left: 1rem; right: 1rem; bottom: 1rem;
    font-size: .7rem;
  }
  .hero-media .hero-stats {
    margin-top: .75rem;
    border-radius: 15px;
  }
  .hero-media .stat-card {
    min-width: 0;
    padding: .9rem .72rem;
  }
  .hero-media .stat-n { font-size: 1.65rem; }
  .hero-media .stat-l { font-size: .55rem; line-height: 1.4; }
  .hero-media .stat-card--shield { display: none; }

  .sec-services, .sec-about, .sec-why, .sec-contact, .sec-spaces {
    padding: 4.35rem 0;
  }
  .sec-head { margin-bottom: 2.15rem; }
  h2 { font-size: clamp(1.72rem, 8vw, 2.15rem); }
  .srv-card, .why-card {
    padding: 1.55rem 1.25rem;
    border-radius: 17px;
  }

  .cta-band { padding: 3.5rem 0; }
  .cta-inner { padding: 0 1.15rem; gap: 1.65rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn, .cta-actions .btn-wa {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .about-grid { gap: 2.55rem; padding: 0 1.15rem; }
  .about-photo-frame {
    height: clamp(390px, 121vw, 535px);
    border-radius: 19px;
  }
  .about-photo-caption { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; }
  .about-photo-caption strong { font-size: 1.08rem; }
  .about-badge-card { padding: .8rem 1rem; }
  .contact-pills .pill {
    min-height: 44px;
    flex: 1 1 calc(50% - .35rem);
    justify-content: center;
  }

  .spaces-grid { gap: .8rem; }
  .space-card, .space-card--wide {
    border-radius: 17px;
    min-height: 370px;
  }

  .contact-grid { padding: 0 1.15rem; gap: 2.3rem; }
  .cinfo-row { min-height: 64px; }
  .contact-form-wrap { border-radius: 18px; overflow: hidden; }
  input, select, textarea, button { font-size: 16px; }

  .footer { padding-bottom: 5.7rem; }

  .wa-float, #waFloat { display: none !important; }

  .mobile-contact-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .62rem;
    bottom: 0; left: 0; right: 0;
    padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -7px 30px rgba(17,24,39,.12);
    z-index: 1000;
  }
  .mobile-contact-bar a {
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .02em;
  }
  .mobile-call {
    color: var(--white);
    background: var(--navy);
  }
  .mobile-whatsapp {
    color: #fff;
    background: var(--wa);
  }
}

@media (max-width: 420px) {
  .topbar-left .topbar-link:nth-of-type(1),
  .topbar-sep:nth-of-type(1) { display: none; }
  .hero-media .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(3) { grid-column: 1 / -1; }
  .space-card, .space-card--wide { min-height: 338px; }
}


/* ══════════════════════════════
   VERSIÓN CORPORATIVA BLANCO · MARRÓN · GRANATE
══════════════════════════════ */
:root {
  --navy:        #672b36;
  --navy-deep:   #421b23;
  --navy-mid:    #7c3b47;
  --navy-lt:     #92515a;
  --navy-pale:   #f4ebeb;
  --orange:      #93634c;
  --orange-dk:   #754532;
  --orange-lt:   #bf947c;
  --orange-pale: #f5ebe5;
  --off:         #fbf8f6;
  --canvas:      #f7f1ee;
  --ink:         #2b2020;
  --ink-mid:     #554544;
  --ink-lt:      #776563;
  --line:        rgba(103,43,54,.14);
  --line-lt:     rgba(103,43,54,.07);
}
.topbar { background: #421b23; }
.header { background: #fffdfc; }
.hero {
  background:
    radial-gradient(circle at 90% 12%, rgba(147,99,76,.1), transparent 28rem),
    linear-gradient(108deg, #fffdfc 0%, #fbf7f4 59%, #f2e7e2 100%);
}
.geo-ring { border-color: rgba(103,43,54,.08); }
.geo-ring--2 { border-color: rgba(147,99,76,.1); }
.geo-stripe { background: linear-gradient(to bottom, transparent, rgba(103,43,54,.08) 30%, rgba(103,43,54,.08) 70%, transparent); }
.hero-eyebrow { color: rgba(103,43,54,.68); }
.hero-h1 { color: var(--navy-deep); }
.hero-h1 em { color: var(--orange); }
.hero-lead { color: rgba(66,27,35,.72); }
.btn-outline-white {
  color: var(--navy);
  border-color: rgba(103,43,54,.24);
}
.btn-outline-white:hover {
  color: var(--navy-deep);
  border-color: rgba(103,43,54,.46);
  background: var(--navy-pale);
}
.hero-photo { border-color: rgba(103,43,54,.1); box-shadow: 0 28px 66px rgba(66,27,35,.18); }
.hero-media .hero-stats {
  background: rgba(66,27,35,.96);
}
.stat-card--accent { background: rgba(191,148,124,.17); }
.cta-band, .sec-contact {
  background: linear-gradient(135deg, #421b23, #672b36 68%, #7c3b47);
}
.about-photo-frame { box-shadow: 0 22px 54px rgba(103,43,54,.13); }
.about-photo-frame::after,
.space-card::after { background: linear-gradient(to top, rgba(66,27,35,.76), transparent 44%); }
.mobile-call { background: var(--navy); }


/* ══════════════════════════════
   MEJORAS CORPORATIVAS FINALES
══════════════════════════════ */
.hero-media .hero-stats { grid-template-columns: repeat(3, 1fr); }
.hero-media .stat-card--shield { display: flex; }

.f-row--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}
.property-counts {
  margin-top: .25rem;
  margin-bottom: .15rem;
}
.property-counts input {
  text-align: center;
}

.sec-credentials {
  padding: 5.4rem 0;
  background: var(--canvas);
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.25rem;
}
.credential-card {
  background: #fffdfc;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.55rem, 3vw, 2.35rem);
}
.credential-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  margin-bottom: .48rem;
}
.credential-card p:not(.overtitle) {
  color: var(--ink-lt);
  font-size: .9rem;
  line-height: 1.75;
}
.coafa-row {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}
.coafa-logo {
  min-width: 108px;
  min-height: 94px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .06em;
}
.credential-card--area {
  background: linear-gradient(135deg, #fffdfc, var(--orange-pale));
}
.credential-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
}

.sec-reviews {
  padding: 5.4rem 0;
  background: #fffdfc;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, .82fr);
  gap: clamp(2.5rem, 7vw, 5.2rem);
  align-items: center;
}
.reviews-copy > p:not(.overtitle) {
  color: var(--ink-lt);
  max-width: 50ch;
}
.google-review-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.google-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.google-head strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
}
.google-wordmark {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: #4285f4;
}
.google-review-card p {
  color: var(--ink-lt);
  font-size: .9rem;
  margin-bottom: 1.35rem;
}
.btn-review {
  color: #fff;
  background: var(--navy);
  margin-bottom: .75rem;
}
.btn-review:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.google-review-card small {
  display: block;
  color: var(--ink-lt);
  font-size: .72rem;
}

@media (max-width: 800px) {
  .hero-media .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-media .stat-card--shield {
    display: flex;
    grid-column: 1 / -1;
  }
  .f-row--three {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .property-counts input { text-align: left; }
  .credentials-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .sec-credentials, .sec-reviews {
    padding: 4.2rem 0;
  }
  .coafa-row {
    align-items: flex-start;
    flex-direction: column;
    gap: .85rem;
  }
  .coafa-logo {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: .75rem;
    width: 100%;
  }
  .google-review-card { padding: 1.45rem; }
}


/* Logos corporativos locales */
.coafa-logo-img {
  width: min(200px, 42%);
  height: auto;
  object-fit: contain;
  padding-right: 1.25rem;
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .coafa-logo-img {
    width: min(230px, 80%);
    padding-right: 0;
    padding-bottom: .85rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}


/* ══════════════════════════════
   PASARELA DE RESEÑAS · 5 ESTRELLAS
══════════════════════════════ */
.review-carousel-section {
  padding: 5.7rem 0;
  background: #fffdfc;
}
.review-carousel-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.7rem;
}
.review-carousel-head h2 { margin-bottom: 0; }

.review-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4.25rem 3.05rem;
}
.review-viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
}
.review-track {
  display: flex;
  transition: transform .52s cubic-bezier(.4,0,.2,1);
}
.review-slide {
  flex: 0 0 100%;
  background: linear-gradient(145deg, #fffdfc, var(--canvas));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.review-stars {
  color: #c68b45;
  font-size: 1.33rem;
  letter-spacing: .22rem;
  margin-bottom: 1.35rem;
}
.review-slide blockquote {
  font-family: var(--serif);
  color: var(--navy-deep);
  font-style: italic;
  font-size: clamp(1.04rem, 2vw, 1.27rem);
  line-height: 1.82;
  max-width: 570px;
  margin: 0 auto 1.35rem;
}
.review-author {
  color: var(--ink-lt);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-control {
  position: absolute;
  top: calc(50% - 1.55rem);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdfc;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  z-index: 2;
}
.review-control:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.review-prev { left: 0; }
.review-next { right: 0; }
.review-dots {
  position: absolute;
  bottom: .15rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .55rem;
}
.review-dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(103,43,54,.22);
  cursor: pointer;
  transition: all .3s ease;
}
.review-dot.is-active {
  width: 28px;
  background: var(--navy);
}

@media (max-width: 800px) {
  .review-carousel-section { padding: 4.3rem 0; }
  .review-carousel-head {
    text-align: left;
    margin-bottom: 1.85rem;
  }
  .review-slider {
    padding: 0 0 3rem;
  }
  .review-slide {
    min-height: 310px;
    padding: 1.75rem 1.28rem;
  }
  .review-control {
    top: auto;
    bottom: -.08rem;
    width: 42px;
    height: 42px;
  }
  .review-prev { left: .2rem; }
  .review-next { right: .2rem; }
  .review-stars { font-size: 1.18rem; margin-bottom: 1rem; }
}

/* Envío directo del presupuesto por WhatsApp */
.form-whatsapp-note {
  margin: 0 0 1.15rem;
  padding: .78rem .9rem;
  border-radius: 10px;
  background: rgba(37,211,102,.11);
  color: #167a3e;
  font-size: .8rem;
  font-weight: 600;
}
.f-submit { background: #25D366; border-color: #25D366; }
.f-submit:hover { background: #1ebe5d; border-color: #1ebe5d; }


/* Seguridad de visualización: la web se ve incluso si un script no carga */
.rv {
  opacity: 1;
  transform: none;
}
.js .rv {
  opacity: 0;
  transform: translateY(20px);
}
.js .rv.in {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════
   BANNER VISUAL · REVISIÓN DOCUMENTAL
══════════════════════════════ */
.sec-document-banner {
  padding: 2.2rem 0 1.2rem;
  background: var(--white);
}
.document-banner {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(66,27,35,.10);
  border: 1px solid var(--line-lt);
}
.document-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 800px) {
  .sec-document-banner {
    padding: 1.2rem 0 .8rem;
  }
  .document-banner {
    border-radius: 16px;
  }
}


/* ══════════════════════════════
   PASARELA DE IMÁGENES
══════════════════════════════ */
.sec-image-carousel {
  padding: 2.2rem 0 1.3rem;
  background: var(--white);
}
.image-carousel {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 4rem 3rem;
}
.image-viewport {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(66,27,35,.10);
  border: 1px solid var(--line-lt);
  background: #fff;
}
.image-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.image-slide {
  flex: 0 0 100%;
  margin: 0;
  min-height: 420px;
}
.image-slide img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.image-control {
  position: absolute;
  top: calc(50% - 2.2rem);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdfc;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  z-index: 2;
}
.image-control:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.image-prev { left: 0; }
.image-next { right: 0; }
.image-dots {
  position: absolute;
  bottom: .15rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: .55rem;
}
.image-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(103,43,54,.22);
  cursor: pointer;
  transition: all .3s ease;
}
.image-dot.is-active {
  width: 28px;
  background: var(--navy);
}

/* Las tres imágenes inferiores sin textos superpuestos */
.space-card figcaption {
  display: none !important;
}

@media (max-width: 800px) {
  .sec-image-carousel {
    padding: 1.2rem 0 .9rem;
  }
  .image-carousel {
    padding: 0 0 3rem;
  }
  .image-slide {
    min-height: 280px;
  }
  .image-slide img {
    height: 280px;
  }
  .image-control {
    top: auto;
    bottom: .1rem;
    width: 42px;
    height: 42px;
  }
  .image-prev { left: .2rem; }
  .image-next { right: .2rem; }
}


/* Ajustes adicionales solicitados */
.image-track .image-slide:nth-child(3) img {
  object-position: center center;
}

.why-card h3:empty {
  display: none;
}


/* Bloque de ventajas ajustado a tres elementos */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   AJUSTE FINAL LIMPIO PARA HOSTINGER
   Mantiene el diseño claro/granate correcto.
   ========================================================= */

html,
body {
  background: #fffdfc;
  color: #2b2020;
}

.hero {
  background:
    radial-gradient(circle at 90% 12%, rgba(147,99,76,.10), transparent 28rem),
    linear-gradient(108deg, #fffdfc 0%, #fbf8f6 58%, #f7f1ee 100%);
}

.hero-h1,
.hero-copy h1 {
  color: #421b23;
}

.hero-h1 em,
.hero-copy em,
h2 em {
  color: #93634c;
}

.hero-lead,
.hero-copy p {
  color: rgba(66,27,35,.72);
}

.hero-eyebrow {
  color: rgba(103,43,54,.78);
}

.header {
  background: #fffdfc;
}

main,
.sec-services,
.sec-why,
.sec-spaces,
.sec-image-carousel,
.review-carousel-section,
.sec-document-banner {
  background: #fffdfc;
}

.sec-about,
.sec-credentials {
  background: #f7f1ee;
}

/* Seguridad: que no quede contenido oculto si falla JS */
.rv {
  opacity: 1;
  transform: none;
}
.js .rv {
  opacity: 0;
  transform: translateY(20px);
}
.js .rv.in {
  opacity: 1;
  transform: none;
}
