/* ============================================================
   COACHUNTING V5 — Stylesheet "Wave Mint"
   Fuentes: Plus Jakarta Sans (todo)
   Paleta:
     --mint:    #00C896  (verde menta principal)
     --mint2:   #00A87E  (mint oscuro — hover)
     --mint3:   #00E6AE  (mint claro — textos sobre oscuro)
     --mint-bg: #E8FBF5  (mint muy claro — fondos alternos)
     --dark:    #0E1C15  (casi-negro verdoso)
     --ink:     #1A2820  (texto principal)
     --muted:   #5A6E65  (texto secundario)
     --border:  #C8E8DC  (separadores)
     --bg:      #FFFFFF  (fondo principal)
============================================================ */

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

:root {
  --mint:     #1DBF8A;
  --mint2:    #159C70;
  --mint3:    #4FD3AA;
  --mint-bg:  #E8F8F3;
  --dark:     #0D1F17;
  --ink:      #1A2820;
  --muted:    #5A6E65;
  --border:   #C8E8DC;
  --bg:       #FFFFFF;
  --white:    #FFFFFF;
  --radius:   10px;
  --radius-lg: 20px;
  --shadow:   0 2px 16px rgba(0,168,126,.1);
  --shadow-lg: 0 8px 40px rgba(0,168,126,.15);

  /* Aliases para gracias.html */
  --navy:      #0E1C15;
  --gold:      #00C896;
  --gold-light: #00E6AE;
  --cream:     #E8FBF5;

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w: 1140px;
  --px: clamp(1.25rem, 5vw, 2rem);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.hidden { display: none; }

/* ── Botones ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--primary {
  background: var(--dark);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(14,28,21,.2);
}
.btn--primary:hover { background: #1a3028; box-shadow: 0 6px 24px rgba(14,28,21,.25); }

.btn--ghost {
  background: transparent;
  color: var(--bg);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.85); }

.btn--nav {
  background: var(--dark);
  color: var(--bg);
  padding: .55rem 1.4rem;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 100px;
}
.btn--nav:hover { background: #1a3028; }
.btn--full { width: 100%; justify-content: center; }

/* ── Sección base ─────────────────────────────────────────── */
.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint2);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.1rem;
  letter-spacing: -.025em;
}
.brand-light { font-weight: 300 !important; }
.brand-h     { font-weight: 800 !important; font-style: italic; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }


/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--mint);
  transition: box-shadow .3s, background .3s;
}
.nav.nav--scrolled {
  background: rgba(0,200,150,.97);
  box-shadow: 0 2px 20px rgba(0,168,126,.25);
  backdrop-filter: blur(10px);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 66px; }
.nav__logo {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav__logo span { color: #000 !important; font-weight: 800 !important; font-style: italic; }

.hero__services-line {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
}
.nav__links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav__links a:hover { color: var(--bg); }
.btn--nav { margin-left: .5rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--bg); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO — dos columnas + wave bottom
============================================================ */
.hero {
  position: relative;
  background: var(--mint);
  padding: 120px 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 95% 20%, rgba(255,255,255,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 90%, rgba(0,168,126,.35) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--bg);
  margin-bottom: 1.25rem;
}
.hero__title em { font-style: italic; color: var(--dark); }
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.hero__disclaimer { font-size: .8rem; color: rgba(255,255,255,.5); }

/* Columna derecha — tarjeta estadísticas */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero__stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.hero__stat-card h3 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hero__stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--mint2);
  line-height: 1;
  margin-bottom: .3rem;
}
.hero__stat span { font-size: .78rem; color: var(--muted); line-height: 1.4; }

.hero__badge {
  background: var(--dark);
  color: var(--bg);
  border-radius: 100px;
  padding: .65rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
}
.hero__badge::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--mint);
  border-radius: 50%;
  font-size: .7rem;
  color: var(--dark);
  font-weight: 900;
}

/* Wave */
.hero__wave { position: relative; z-index: 2; line-height: 0; margin-top: 2rem; }
.hero__wave svg { display: block; width: 100%; }

/* Scroll hint — oculto en v5 ya que la ola lo reemplaza visualmente */
.hero__scroll-hint { display: none; }


/* ============================================================
   PROBLEM
============================================================ */
.problem { padding: 5rem 0; background: var(--bg); }
.problem__quote { text-align: center; margin-bottom: 4rem; }
.problem__quote blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
}
.problem__quote blockquote strong { color: var(--mint2); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.problem__card {
  background: var(--mint-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.problem__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.problem__icon {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--mint2);
  opacity: .5;
  margin-bottom: .75rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.problem__card h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em;
  line-height: 1.3; margin-bottom: .75rem; color: var(--ink);
}
.problem__card p { font-size: .93rem; color: var(--muted); line-height: 1.7; }


/* ============================================================
   SERVICES
============================================================ */
.services { padding: 6rem 0; background: var(--mint-bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card--accent { background: #0D3324; border-color: transparent; }

.service-card__number {
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  letter-spacing: -.04em; color: var(--mint); opacity: .4;
}
.service-card--accent .service-card__number { opacity: .6; }

.service-card__title {
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.02em; line-height: 1.2; color: var(--ink);
}
.service-card--accent .service-card__title { color: var(--bg); }

.service-card__tag {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mint2); border: 1px solid var(--mint2);
  border-radius: 100px; padding: .22rem .85rem; width: fit-content;
}
.service-card--accent .service-card__tag { color: var(--mint3); border-color: var(--mint3); }

.service-card__desc { font-size: .93rem; color: var(--muted); line-height: 1.7; margin-top: .75rem; }
.service-card--accent .service-card__desc { color: rgba(255,255,255,.6); }

.service-card__list { padding-left: 0; display: flex; flex-direction: column; gap: .4rem; }
.service-card__list li { font-size: .88rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.service-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--mint2); }
.service-card--accent .service-card__list li { color: rgba(255,255,255,.6); }
.service-card--accent .service-card__list li::before { color: var(--mint3); }

.service-card__ideal {
  font-size: .85rem; color: var(--muted);
  background: rgba(0,200,150,.08); border-left: 3px solid var(--mint);
  padding: .65rem .9rem; border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6; margin-top: auto;
}
.service-card--accent .service-card__ideal {
  background: rgba(255,255,255,.06); border-left-color: var(--mint3); color: rgba(255,255,255,.6);
}

.service-card__cta {
  font-size: .82rem; font-weight: 700; color: var(--mint2);
  display: inline-flex; align-items: center; gap: .25rem;
  transition: gap .2s; padding-top: .25rem;
}
.service-card__cta:hover { gap: .55rem; }
.service-card--accent .service-card__cta { color: var(--mint3); }

.services__crossell {
  background: var(--dark); color: rgba(255,255,255,.7);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  font-size: .93rem; line-height: 1.7; border-left: 4px solid var(--mint);
}
.services__crossell strong { color: var(--bg); }


/* ============================================================
   SECTORES
============================================================ */
.sectors { padding: 5rem 0; background: var(--bg); text-align: center; }
.sectors .section-title { margin-bottom: 2.5rem; }
.sectors__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-bottom: 1.75rem; }
.sector-item {
  display: flex; align-items: center; gap: .65rem;
  background: var(--mint-bg); border: 1px solid var(--border);
  border-radius: 100px; padding: .7rem 1.4rem;
  font-size: .88rem; font-weight: 600; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.sector-item:hover { border-color: var(--mint); background: #d0f5ea; box-shadow: 0 0 0 3px rgba(0,200,150,.12); }
.sector-item__icon { font-size: 1.1rem; }
.sectors__note { font-size: .88rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }


/* ============================================================
   PROCESS
============================================================ */
.process { padding: 6rem 0; background: var(--mint-bg); }
.process__steps { display: flex; flex-direction: column; max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-step__num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--mint); color: var(--dark);
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
  box-shadow: 0 4px 14px rgba(0,200,150,.35);
}
.process-step__num svg {
  width: 24px; height: 24px;
  stroke: var(--dark); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.process-step__body h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: .6rem;
}
.process-step__body p { font-size: .93rem; color: var(--muted); line-height: 1.75; }


/* ============================================================
   DIFERENCIAS
============================================================ */
.diff { padding: 6rem 0; background: var(--dark); }
.diff__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.diff__text .section-title { color: var(--bg); }
.diff__text .section-eyebrow { color: var(--mint3); }
.diff__text p { color: rgba(255,255,255,.55); font-size: .98rem; line-height: 1.75; margin-top: 1rem; }
.diff__list { display: flex; flex-direction: column; gap: 1.75rem; }
.diff__item { display: flex; gap: 1.1rem; align-items: flex-start; }
.diff__item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--mint); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-top: .1rem;
}
.diff__item-icon svg {
  width: 22px; height: 22px;
  stroke: var(--dark); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.diff__item strong { display: block; color: var(--bg); font-size: .95rem; margin-bottom: .3rem; }
.diff__item p { color: rgba(255,255,255,.52); font-size: .88rem; line-height: 1.65; }


/* ============================================================
   EQUIPO
============================================================ */
.team { padding: 6rem 0; background: var(--bg); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 1140px; margin: 0 auto;
}
.team-card {
  background: var(--mint-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.team-card__photo { height: 200px; display: flex; align-items: center; justify-content: center; }
.team-card__photo--rm { background: linear-gradient(135deg, #004D38 0%, #007055 100%); }
.team-card__photo--wa { background: linear-gradient(135deg, #006048 0%, #009070 100%); }
.team-card__photo--er { background: linear-gradient(135deg, #003D2C 0%, #006050 100%); }
.team-card__photo--jm { background: linear-gradient(135deg, #004840 0%, #007060 100%); }
.team-card__photo--p5  { background: linear-gradient(135deg, #003A30 0%, #005848 100%); }
.team-card__photo--p6  { background: linear-gradient(135deg, #004030 0%, #006850 100%); }

.team-card__avatar {
  width: 130px; height: 130px; border-radius: 50%;
  object-fit: cover; object-position: center center;
  border: 3px solid rgba(0,200,150,.6); display: block;
}
.team-card__photo span,
.team-card__initials {
  font-size: 3rem; font-weight: 800; color: var(--mint); opacity: .5; letter-spacing: -.04em;
}
.team-card--placeholder { opacity: .65; border-style: dashed; }
.team-card__body { padding: 1.75rem; }
.team-card__name { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin-bottom: .25rem; }
.team-card__role { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mint2); margin-bottom: 1rem; }
.team-card__bio { font-size: .9rem; color: var(--muted); line-height: 1.75; }


/* ============================================================
   CONTACTO
============================================================ */
.contact { padding: 6rem 0; background: var(--mint-bg); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__text .section-title { color: var(--ink); }
.contact__text > p { font-size: .98rem; color: var(--muted); line-height: 1.75; margin: 1rem 0 2rem; }
.contact__options { display: flex; flex-direction: column; gap: .85rem; }
.contact__option-link {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .88rem; font-weight: 700;
  padding: .9rem 1.4rem; border-radius: 100px;
  border: 2px solid var(--border);
  transition: border-color .2s, background .2s; width: fit-content;
}
.contact__option-link:hover { border-color: var(--mint); background: rgba(0,200,150,.07); }
.contact__option-link--wa { color: #128c7e; }
.contact__option-link--phone { color: var(--ink); }
.contact__option-icon { display: flex; align-items: center; justify-content: center; }

.contact__form-wrap {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow);
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: .93rem; color: var(--ink);
  background: var(--mint-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(0,200,150,.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9abfb3; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form__privacy { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.6; }


/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--dark); padding: 3.5rem 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-size: 1.25rem; font-weight: 300; letter-spacing: -.01em;
  color: var(--white); display: inline-block; margin-bottom: .6rem;
}
.footer__logo span { color: var(--white); font-weight: 800; font-style: italic; }

.footer__brand p { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.6; max-width: 280px; }
.footer__info p, .footer__nav a { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 2; }
.footer__info a:hover, .footer__nav a:hover { color: var(--mint3); }
.footer__nav { display: flex; flex-direction: column; }
.footer__bottom { padding: 1.25rem 0; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.22); text-align: center; }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero__visual { display: none; }
  .diff__inner, .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav__links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--mint2); flex-direction: column;
    padding: 1.5rem var(--px) 2rem; gap: 1.25rem; align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,.15);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1rem; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 0 0; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .problem { padding: 3.5rem 0; }
  .services { padding: 4rem 0; }
  .services__grid { grid-template-columns: 1fr; }
  .sectors__grid { flex-direction: column; align-items: stretch; }
  .sector-item { justify-content: center; }
  .process { padding: 4rem 0; }
  .process-step { flex-direction: column; gap: 1rem; }
  .process-step__num { width: 40px; height: 40px; }
  .diff { padding: 4rem 0; }
  .team { padding: 4rem 0; }
  .team__grid { grid-template-columns: 1fr; }
  .contact { padding: 4rem 0; }
  .contact__form-wrap { padding: 1.75rem; }
  .contact__option-link { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--dark); color: var(--bg);
  padding: .6rem 1.2rem; border-radius: 100px;
  font-size: .875rem; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }


/* ============================================================
   FAQ
============================================================ */
.faq { padding: 6rem 0; background: var(--bg); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.35rem 0; text-align: left;
  font-size: .95rem; font-weight: 700; color: var(--ink);
  background: none; border: none; cursor: pointer; transition: color .2s;
}
.faq__question:hover { color: var(--mint2); }
.faq__question[aria-expanded="true"] { color: var(--mint2); }
.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1.5px solid currentColor; border-radius: 50%;
  position: relative; transition: transform .3s;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.faq__icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg); opacity: 0;
}
.faq__answer { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq__answer:not([hidden]) { max-height: 400px; }
.faq__answer[hidden] { display: block !important; max-height: 0; }
.faq__answer p { font-size: .95rem; color: var(--muted); line-height: 1.75; padding-bottom: 1.35rem; }
.faq__answer p strong { color: var(--ink); }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   CLIENTES
============================================================ */
.clients {
  padding: 6rem 0;
  background: var(--mint-bg);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.clients__cat {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint2);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--mint);
}

.clients__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.clients__list li {
  font-size: .93rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.clients__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mint);
  opacity: .6;
  font-size: .8rem;
}

.clients__subcat {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .6rem;
  opacity: .65;
}

@media (max-width: 680px) {
  .clients__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   NETWORK
============================================================ */
.network {
  padding: 6rem 0;
  background: var(--mint-bg);
}

.network__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
  margin-top: 3rem;
}

.network__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow .25s, transform .25s;
  max-width: 200px;
}
.network__logo-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .02em;
}
.network__logo-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.13);
  transform: translateY(-2px);
}

.network__logo-item img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.network__logo-item:nth-child(1) img,
.network__logo-item:nth-child(3) img {
  height: 80px;
}

@media (max-width: 680px) {
  .network__logos {
    flex-direction: column;
    align-items: stretch;
    gap: .875rem;
  }
  .network__logo-item {
    flex-direction: row;
    max-width: none;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    align-items: center;
  }
  .network__logo-item img,
  .network__logo-item:nth-child(1) img,
  .network__logo-item:nth-child(3) img {
    height: 44px;
    width: auto;
    max-width: 90px;
    flex-shrink: 0;
  }
  .network__logo-label {
    text-align: left;
    font-size: .72rem;
  }
}
