/* =====================================================
   GODOY ASESORES — Hoja de estilos
   Paleta: azul corporativo (del logo) + cian de acento
   Tipografía: Space Grotesk (display) + Inter (texto)
   ===================================================== */

:root {
  /* Marca — azul corporativo Godoy + cian del logo */
  --brand-900: #0A2240;
  --brand-800: #0E3258;
  --brand-700: #15457F;
  --brand-600: #1C6FB8;
  --brand-500: #2E8FD4;
  --accent:    #12A4E0;
  --accent-soft: #5BD0F5;
  --brand-grad: linear-gradient(135deg, #15457F 0%, #16A6E0 100%);

  /* Neutros */
  --paper:   #F4F8FC;
  --paper-2: #EAF1F9;
  --card:    #FFFFFF;
  --ink:     #0E2236;
  --muted:   #5A6B7D;
  --line:    rgba(14, 34, 54, .12);
  --line-light: rgba(244, 248, 252, .16);

  /* Tipografía */
  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 128px);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Efectos */
  --shadow-sm: 0 1px 2px rgba(10, 34, 64, .06), 0 4px 14px rgba(10, 34, 64, .06);
  --shadow-md: 0 12px 30px rgba(10, 34, 64, .10), 0 4px 10px rgba(10, 34, 64, .06);
  --shadow-lg: 0 30px 60px rgba(10, 34, 64, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-700); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Tipografía ---------- */
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow-light { color: var(--accent-soft); }
.eyebrow-light::before { background: var(--accent); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.accent-serif { color: var(--brand-600); display: inline-block; }
.section-dark .section-title { color: var(--paper); }
.section-dark .accent-serif { color: var(--accent-soft); }

.section-head { max-width: 740px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-intro { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.section-dark .section-intro { color: rgba(244, 248, 252, .76); }
.muted { color: var(--muted); }

/* ---------- Botones ---------- */
.btn {
  --btn-bg: var(--brand-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 15px 28px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  position: relative; white-space: nowrap;
}
.btn-primary { --btn-bg: var(--brand-700); box-shadow: 0 8px 20px rgba(21, 69, 127, .22); }
.btn-primary:hover { background: var(--brand-800); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21, 69, 127, .3); }
.btn-ghost { background: transparent; color: var(--brand-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-700); transform: translateY(-2px); }
.section-dark .btn-ghost, .cta-band .btn-ghost { color: var(--paper); border-color: var(--line-light); }
.btn-sm { padding: 11px 20px; font-size: .9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .btn-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  display: none; animation: spin .7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 248, 252, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(10, 34, 64, .06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-800); }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-mark { display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; color: var(--brand-900); }
.brand-sub { font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brand-600); margin-top: 4px; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) {
  font-size: .96rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
  transition: color .2s;
}
.main-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent);
  transition: width .3s var(--ease);
}
.main-nav > a:not(.btn):hover, .main-nav > a.active { color: var(--brand-600); }
.main-nav > a:not(.btn):hover::after, .main-nav > a.active::after { width: 100%; }
.nav-cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px) clamp(48px, 7vw, 88px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(28, 111, 184, .12), transparent 60%),
    radial-gradient(50% 50% at 5% 90%, rgba(18, 164, 224, .09), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
  margin-bottom: 26px;
}
.hero-title .accent-serif { display: block; margin-top: .1em; color: var(--brand-600); }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 34ch; margin-bottom: 32px; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-micro { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--muted); }
.hero-micro .ico { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.hero-media { position: relative; }
.hero-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 7 / 5;
}
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(10, 34, 64, .22), transparent 45%, rgba(10, 34, 64, .14));
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.02); }
.hero-badge {
  position: absolute; left: -22px; bottom: -22px; z-index: 2;
  background: var(--brand-800); color: var(--paper); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-light);
}
.hero-badge-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--accent-soft); line-height: 1; }
.hero-badge-txt { font-size: .82rem; line-height: 1.35; color: rgba(244, 248, 252, .86); }

/* ---------- Cifras ---------- */
.stats { border-block: 1px solid var(--line); background: var(--card); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(28px, 4vw, 48px) 22px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--brand-700); line-height: 1; display: block; }
.stat-label { display: block; margin-top: 12px; font-size: .92rem; color: var(--muted); }

/* ---------- La asesoría ---------- */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.02); }
.about-img-main { aspect-ratio: 4 / 3; }
.about-img-sec {
  position: absolute; right: -18px; bottom: -34px; width: 52%; aspect-ratio: 4 / 3.4;
  border: 6px solid var(--paper); box-shadow: var(--shadow-lg);
}
.about-tag {
  position: absolute; left: -16px; top: -16px; background: var(--brand-grad); color: #fff;
  border-radius: 50%; width: 96px; height: 96px; display: grid; place-items: center; text-align: center;
  font-size: .8rem; line-height: 1.25; box-shadow: var(--shadow-md); transform: rotate(-8deg);
}
.about-tag strong { font-family: var(--font-display); font-size: 1.35rem; display: block; font-weight: 700; }
.about-copy p { margin-bottom: 18px; }
.pull-quote {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4; color: var(--brand-700); border-left: 3px solid var(--accent);
  padding: 6px 0 6px 24px; margin: 28px 0 32px; letter-spacing: -.01em;
}
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.values li { display: flex; gap: 14px; align-items: flex-start; }
.values strong { display: block; margin-bottom: 3px; color: var(--ink); }
.values span:last-child { font-size: .95rem; color: var(--muted); }
.value-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(28, 111, 184, .10); display: grid; place-items: center; }
.value-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--brand-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Variantes de sección ---------- */
.section-dark { background: var(--brand-900); color: var(--paper); position: relative; }
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 80% 0%, rgba(28, 111, 184, .25), transparent 60%);
  pointer-events: none;
}
.section-dark > .container { position: relative; }
.section-soft { background: var(--paper-2); }

/* ---------- Acordeón (servicios + faq) ---------- */
.accordion { border-top: 1px solid var(--line); }
.section-dark .accordion { border-top-color: var(--line-light); }
.acc-item { border-bottom: 1px solid var(--line); }
.section-dark .acc-item { border-bottom-color: var(--line-light); }
.acc-item h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.acc-trigger {
  width: 100%; background: none; border: none; text-align: left; color: inherit;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px 20px;
  padding: 26px 4px; transition: color .2s;
}
.services-accordion .acc-trigger { grid-template-columns: auto auto 1fr auto; }
.acc-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(18, 164, 224, .16); display: grid; place-items: center; }
.acc-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--accent-soft); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.faq-accordion .acc-ico { display: none; }
.acc-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.45rem); color: inherit; letter-spacing: -.01em; }
.section-dark .acc-title { color: var(--paper); }
.acc-tagline { font-size: .96rem; color: var(--muted); }
.section-dark .acc-tagline { color: rgba(244, 248, 252, .68); }
.faq-accordion .acc-trigger { grid-template-columns: 1fr auto; padding: 22px 4px; }
.acc-chevron { flex: none; width: 22px; height: 22px; position: relative; }
.acc-chevron::before, .acc-chevron::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--accent);
  border-radius: 2px; transform: translate(-50%, -50%); transition: transform .3s var(--ease);
}
.acc-chevron::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.is-open .acc-chevron::after { transform: translate(-50%, -50%) rotate(0); }
.acc-trigger:hover .acc-title { color: var(--brand-600); }
.section-dark .acc-trigger:hover .acc-title { color: var(--accent-soft); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-item.is-open .acc-panel-inner { padding-bottom: 28px; }
.services-accordion .acc-panel-inner { padding-left: 66px; }
.svc-list { columns: 2; column-gap: 40px; }
.svc-list li {
  break-inside: avoid; padding: 7px 0 7px 24px; position: relative; font-size: .98rem;
  color: rgba(244, 248, 252, .86);
}
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 9px; height: 9px;
  border-right: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent); transform: rotate(45deg);
}
.faq-accordion .acc-panel-inner p { color: var(--muted); max-width: 60ch; }

/* ---------- Cómo trabajamos ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; list-style: none; padding: 0; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm); position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { font-size: .96rem; color: var(--muted); }

/* ---------- Equipo ---------- */
.team-creds {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: clamp(32px, 5vw, 56px);
}
.team-creds li { background: var(--card); padding: 26px 22px; text-align: center; }
.team-creds strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--brand-600); display: block; line-height: 1; }
.team-creds span { display: block; margin-top: 8px; font-size: .9rem; color: var(--muted); }

.founder {
  display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: center; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-md);
  margin-bottom: clamp(28px, 4vw, 44px); position: relative; overflow: hidden;
}
.founder::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(18, 164, 224, .12), transparent 70%); pointer-events: none;
}
.founder-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-2); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(1.03) contrast(1.02); }
.founder-info { position: relative; z-index: 1; }
.founder-badge {
  display: inline-block; background: var(--brand-grad); color: #fff; font-size: .76rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.founder-info h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--ink); line-height: 1.05; letter-spacing: -.02em; }
.founder-role { color: var(--brand-600); font-weight: 600; margin: 8px 0 16px; }
.founder-bio { color: var(--muted); margin-bottom: 20px; max-width: 54ch; }
.founder-bio strong { color: var(--ink); font-weight: 600; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-tags li { font-size: .82rem; color: var(--brand-700); background: rgba(28, 111, 184, .08); border: 1px solid rgba(28, 111, 184, .18); padding: 6px 12px; border-radius: 999px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.member-photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-2); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; filter: saturate(1.03) contrast(1.02); transition: transform .5s var(--ease); }
.member:hover .member-photo img { transform: scale(1.04); }
.member-body { padding: 22px 22px 26px; }
.member-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--ink); letter-spacing: -.01em; }
.member-role { font-size: .76rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--brand-600); margin: 6px 0 10px; }
.member-bio { font-size: .92rem; color: var(--muted); }
.team-cta { text-align: center; margin-top: clamp(34px, 4vw, 50px); }

/* ---------- Testimonios ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.quote-stars { color: #F2B705; letter-spacing: 3px; font-size: 1rem; }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; line-height: 1.45; color: var(--ink); flex: 1; letter-spacing: -.01em; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line); }
.quote figcaption strong { font-size: 1rem; }
.quote figcaption span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head .muted { margin: 18px 0 22px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: var(--paper); text-align: center; overflow: hidden; isolation: isolate; }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; filter: saturate(.85); }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 34, 64, .88), rgba(10, 34, 64, .94)); }
.cta-band-inner { padding-block: clamp(64px, 9vw, 120px); max-width: 760px; margin-inline: auto; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.12; margin-bottom: 18px; letter-spacing: -.02em; }
.cta-band p { color: rgba(244, 248, 252, .84); font-size: 1.12rem; margin-bottom: 32px; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-copy > p { color: var(--muted); margin: 18px 0 30px; max-width: 46ch; }
.contact-list { display: grid; gap: 22px; margin-bottom: 34px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 4px; }
.contact-list a:hover { color: var(--brand-700); text-decoration: underline; }
.contact-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(28, 111, 184, .10); display: grid; place-items: center; }
.contact-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--brand-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 260px; border: 0; }

/* Formulario */
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md);
}
.form-intro { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 24px; letter-spacing: -.01em; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-600); background: #fff; box-shadow: 0 0 0 4px rgba(28, 111, 184, .14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.10); }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: 6px 0 22px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-700); flex: none; }
.consent a { color: var(--brand-700); text-decoration: underline; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-feedback { margin-top: 16px; padding: 0; border-radius: var(--radius-sm); font-size: .95rem; }
.form-feedback.show { padding: 14px 16px; }
.form-feedback.ok { background: rgba(28, 111, 184, .12); color: var(--brand-700); border: 1px solid rgba(28, 111, 184, .3); }
.form-feedback.error { background: rgba(192,57,43,.10); color: #c0392b; border: 1px solid rgba(192,57,43,.3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-900); color: rgba(244, 248, 252, .74); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-block: clamp(56px, 7vw, 84px) 48px; }
.footer-logo { max-width: 180px; height: auto; margin-bottom: 20px; }
.footer-tag { max-width: 30ch; margin-bottom: 22px; font-size: .96rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; fill: none; stroke: var(--paper); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a:hover svg { stroke: var(--brand-900); }
.footer-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-contact p { display: block; color: rgba(244, 248, 252, .74); font-size: .96rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--paper); }
.footer-contact a { display: inline; margin: 0; }
.footer-grants { border-top: 1px solid var(--line-light); padding-block: 22px; }
.footer-grants p { font-size: .8rem; color: rgba(244, 248, 252, .5); max-width: 70ch; }
.footer-bottom { border-top: 1px solid var(--line-light); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 22px; flex-wrap: wrap; }
.footer-bottom p { font-size: .85rem; color: rgba(244, 248, 252, .5); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: .85rem; color: rgba(244, 248, 252, .6); }
.footer-legal a:hover { color: var(--paper); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.4);
  transition: transform .25s var(--ease); animation: wa-pop .4s var(--ease) .8s both;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 95; max-width: 560px; margin-inline: auto;
  background: var(--brand-800); color: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner p { font-size: .88rem; flex: 1; min-width: 220px; color: rgba(244, 248, 252, .86); }
.cookie-banner a { color: var(--accent-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn-ghost { color: var(--paper); border-color: var(--line-light); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; }
  .hero-lead { max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 540px; margin-bottom: 30px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 360px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 26px;
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .4s var(--ease); z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 16px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .values { grid-template-columns: 1fr; }
  .team-creds { grid-template-columns: 1fr 1fr; }
  .svc-list { columns: 1; }
  .services-accordion .acc-panel-inner { padding-left: 0; }
  .services-accordion .acc-trigger { grid-template-columns: auto 1fr auto; }
  .services-accordion .acc-ico { grid-row: span 2; }
  .acc-tagline { grid-column: 2 / -1; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .brand-logo { height: 36px; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-creds { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-badge { left: 0; padding: 16px 18px; }
  .about-img-sec { position: static; width: 100%; margin-top: 14px; border-width: 0; }
  .about-tag { display: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-fab { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
