/* ═══════════════════════════════════
   WESOLUTIONS — style.css
   Navy #0D1B2A · Teal #2ECFB3
   Outfit (display) · Plus Jakarta Sans (body)
═══════════════════════════════════ */

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

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #0A1F2E;
  --teal:      #2ECFB3;
  --teal-soft: rgba(46,207,179,0.12);
  --teal-dim:  rgba(46,207,179,0.38);
  --teal-mid:  rgba(46,207,179,0.6);
  --white:     #FFFFFF;
  --off-white: #F4F5F0;
  --mid:       #6B7280;
  --line:      #E5E7EB;
  --f-dis:     'Outfit', sans-serif;
  --f-bod:     'Plus Jakarta Sans', sans-serif;
  --r:         8px;
  --r-lg:      16px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--f-bod); color: var(--navy); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }

/* ── UTILITIES ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 5%; }
.teal { color: var(--teal); }
.white { color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(13,27,42,0.0);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.9rem 5%;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; line-height: 1; gap: 2px;
}
.logo-we {
  font-family: var(--f-dis); font-weight: 900;
  font-size: 1.8rem; letter-spacing: -0.04em;
  color: var(--white); line-height: 1;
}
.logo-e { color: var(--teal); }
.logo-sol {
  font-family: var(--f-dis); font-weight: 300;
  font-size: 0.42rem; letter-spacing: 0.38em;
  color: rgba(255,255,255,0.38); text-transform: uppercase;
  padding-left: 0.38em;
}
.logo-marks {
  display: flex; gap: 3px; justify-content: center; margin-top: 2px;
}
.logo-marks span {
  display: block; width: 8px; height: 1.5px;
  background: var(--teal-dim); border-radius: 1px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--teal); color: var(--navy);
  font-size: 0.84rem; font-weight: 700;
  padding: 0.55rem 1.2rem; border-radius: 6px;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-dis); font-size: 1.6rem; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.mobile-menu .btn-primary { font-size: 1rem; margin-top: 1rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-bg    { background: var(--off-white); }
.section-navy  { background: var(--navy); }

.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.8rem; display: block;
}
.label-dim { color: rgba(255,255,255,0.35); }

.section-title {
  font-family: var(--f-dis);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.1; margin-bottom: 2.5rem;
}
.section-title.white { color: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal); color: var(--navy);
  font-family: var(--f-bod); font-size: 0.9rem; font-weight: 700;
  padding: 0.85rem 1.8rem; border-radius: var(--r);
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.btn-large { font-size: 1rem; padding: 1rem 2.2rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.btn-ghost-light {
  display: inline-flex; align-items: center;
  color: var(--teal); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-ghost-light:hover { opacity: 0.75; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 8rem 0 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(46,207,179,0.07) 0%, transparent 60%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: rgba(46,207,179,0.08); top: -100px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: rgba(46,207,179,0.05); bottom: -80px; left: -80px; }

.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(46,207,179,0.25);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.8rem;
}
h1.hero-title {
  font-family: var(--f-dis);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -2px;
  line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
}
h1.hero-title span { color: var(--teal); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 560px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex; gap: 2.5rem; align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-n {
  font-family: var(--f-dis); font-size: 2rem;
  font-weight: 900; color: var(--teal); display: block;
}
.stat-l { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.4; display: block; margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy); padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero-title {
  font-family: var(--f-dis);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.08; color: var(--white); margin-bottom: 1.2rem;
}
.page-hero-title span { color: var(--teal); }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  max-width: 560px; line-height: 1.75;
}

/* ── SITUACIÓN ── */
.sit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sit-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.sit-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.sit-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 4px; margin-bottom: 1rem;
}
.sit-badge-teal { background: var(--teal-soft); color: var(--teal); }
.sit-badge-amber { background: #fef8ec; color: #b37a15; }
.sit-card h3 {
  font-family: var(--f-dis); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 1.2rem;
}
.sit-list { list-style: none; margin-bottom: 2rem; }
.sit-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--mid);
  padding: 0.5rem 0; border-bottom: 1px solid var(--line);
}
.sit-list li:last-child { border-bottom: none; }
.sit-list li::before { content: '—'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.link-arrow {
  font-size: 0.88rem; font-weight: 600;
  color: var(--teal); text-decoration: none; transition: gap 0.2s;
  display: inline-flex; align-items: center;
}
.link-arrow:hover { opacity: 0.75; }

/* ── PROPUESTA DE VALOR ── */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.value-text { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 2rem; }
.value-pill {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 1.2rem 1.4rem;
  margin-bottom: 0.8rem;
  transition: border-color 0.2s;
}
.value-pill:hover { border-color: rgba(46,207,179,0.3); }
.pill-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.value-pill strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 0.2rem; }
.value-pill p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PILARES ── */
.pilares-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.pilar-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.8rem;
  text-decoration: none; color: var(--navy);
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.pilar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--line); transition: background 0.25s;
}
.pilar-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pilar-card:hover::before { background: var(--teal); }
.pilar-num { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; color: var(--teal); opacity: 0.6; margin-bottom: 1rem; }
.pilar-card h3 { font-family: var(--f-dis); font-size: 1rem; font-weight: 700; margin-bottom: 0.8rem; }
.pilar-card p { font-size: 0.83rem; color: var(--mid); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.pilar-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); }
.section-cta { text-align: center; margin-top: 1rem; }

/* ── CTA FINAL ── */
.section-cta-final {
  background: var(--navy); padding: 6rem 0; text-align: center;
}
.cta-final-inner h2 {
  font-family: var(--f-dis);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 1rem;
}
.cta-final-inner p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2.5rem; }

/* ── FOOTER ── */
.footer { background: #080F16; padding: 3rem 0; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── WHATSAPP BTN ── */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-btn svg { width: 28px; height: 28px; }

/* ── SERVICIOS ── */
.serv-section { padding: 5rem 0; }
.serv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.serv-grid-reverse .serv-right { order: -1; }
.serv-num { font-family: var(--f-dis); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.serv-title {
  font-family: var(--f-dis);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.1; margin-bottom: 1rem;
}
.serv-hook { font-size: 1rem; font-weight: 600; color: var(--teal); font-style: italic; margin-bottom: 1.2rem; }
.serv-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
.serv-desc strong { color: var(--navy); }
.serv-items { display: flex; flex-direction: column; gap: 0; }
.serv-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line);
}
.serv-item:last-child { border-bottom: none; }
.serv-arrow { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.serv-item strong { display: block; font-size: 0.92rem; margin-bottom: 0.2rem; }
.serv-item p { font-size: 0.83rem; color: var(--mid); line-height: 1.5; }

.intro-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.intro-text { font-size: 1.05rem; color: var(--mid); line-height: 1.75; }
.intro-stat-box {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 2rem 2.5rem; text-align: center; min-width: 180px;
}
.intro-stat-box .stat-n { font-size: 3rem; }
.intro-stat-box .stat-l { color: rgba(255,255,255,0.5); }

/* ── NOSOTROS ── */
.we-concept { display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: center; }
.we-big {
  font-family: var(--f-dis); font-size: 8rem; font-weight: 900;
  letter-spacing: -4px; color: var(--navy); line-height: 1;
}
.we-big span { color: var(--teal); }
.we-marks { display: flex; gap: 8px; margin-top: 12px; }
.we-marks span { display: block; width: 28px; height: 3px; background: var(--teal-dim); border-radius: 2px; }
.we-concept-right h2 {
  font-family: var(--f-dis); font-size: 2rem;
  font-weight: 800; margin-bottom: 2rem; letter-spacing: -0.5px;
}
.we-breakdown { display: flex; flex-direction: column; gap: 0; }
.we-row {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.we-row:last-child { border-bottom: none; }
.we-word {
  font-family: var(--f-dis); font-size: 1.6rem;
  font-weight: 900; min-width: 130px; color: var(--navy);
}
.we-word.teal { color: var(--teal); }
.we-row p { font-size: 0.92rem; color: var(--mid); line-height: 1.65; padding-top: 4px; }

.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1rem; }
.dif-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 2rem;
  transition: border-color 0.2s;
}
.dif-card:hover { border-color: rgba(46,207,179,0.3); }
.dif-icon-big { font-size: 1.8rem; margin-bottom: 1rem; }
.dif-card h3 { font-family: var(--f-dis); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.dif-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

.team-intro { font-size: 1rem; color: var(--mid); line-height: 1.75; max-width: 700px; margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: 2rem; }
.team-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem; transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.team-area {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
  border-radius: 4px; margin-bottom: 1rem; display: inline-block;
}
.teal-bg { background: var(--teal-soft); color: var(--teal); }
.team-card h3 { font-family: var(--f-dis); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.team-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }
.team-note {
  background: var(--off-white); border-radius: var(--r);
  padding: 1.2rem 1.5rem; font-size: 0.88rem; color: var(--mid);
}
.team-note strong { color: var(--navy); }

.exp-section { display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: center; }
.exp-number {
  font-family: var(--f-dis); font-size: 8rem;
  font-weight: 900; color: var(--teal); line-height: 1; letter-spacing: -4px;
}
.exp-text h2 { font-family: var(--f-dis); font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 1rem; }
.exp-text p { font-size: 1rem; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; }

/* ── CONTACTO ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.form-title { font-family: var(--f-dis); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.5rem; }
.form-sub { font-size: 0.9rem; color: var(--mid); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea {
  padding: 0.8rem 1rem; border: 1px solid var(--line);
  border-radius: var(--r); font-family: var(--f-bod);
  font-size: 0.92rem; color: var(--navy);
  background: var(--white); transition: border-color 0.2s;
  outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.form-disclaimer { font-size: 0.75rem; color: #9CA3AF; text-align: center; }

.contact-info h3 { font-family: var(--f-dis); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.contact-items { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.contact-item-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1rem 1.2rem;
  text-decoration: none; color: var(--navy);
  transition: border-color 0.2s;
}
.contact-item-card:hover { border-color: var(--teal); }
.ci-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--teal-soft); display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); display: block; }
.ci-val { font-size: 0.9rem; font-weight: 600; display: block; }
.contact-promise h4 { font-family: var(--f-dis); font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.promise-steps { display: flex; flex-direction: column; gap: 0; }
.promise-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.promise-step:last-child { border-bottom: none; }
.ps-num {
  font-family: var(--f-dis); font-size: 0.75rem;
  font-weight: 800; color: var(--teal); min-width: 28px; padding-top: 2px;
}
.promise-step strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.promise-step p { font-size: 0.83rem; color: var(--mid); line-height: 1.55; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .sit-grid, .value-grid, .pilares-grid,
  .serv-grid, .we-concept, .dif-grid,
  .team-grid, .exp-section, .contact-grid,
  .intro-grid, .hero-stats { grid-template-columns: 1fr; gap: 2rem; }
  .serv-grid-reverse .serv-right { order: unset; }
  .we-big { font-size: 5rem; }
  .exp-number { font-size: 5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stat-div { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  h1.hero-title { font-size: 2.4rem; }
  .page-hero { padding: 7rem 0 4rem; }
}

/* ══════════════════════════════════
   IMÁGENES Y OVERLAYS
══════════════════════════════════ */

/* HERO con imagen de fondo */
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600&q=80&auto=format&fit=crop');
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.97) 0%,
    rgba(13,27,42,0.88) 50%,
    rgba(13,27,42,0.75) 100%
  );
}

/* FOTO CARD — usada en nosotros y servicios */
.photo-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 4/3;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s, transform 0.4s;
}
.photo-card:hover img { filter: grayscale(80%) contrast(1.1); transform: scale(1.03); }
.photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.15) 0%,
    rgba(13,27,42,0.55) 100%
  );
  mix-blend-mode: multiply;
}
.photo-card-teal::after {
  background: linear-gradient(
    135deg,
    rgba(46,207,179,0.25) 0%,
    rgba(13,27,42,0.7) 100%
  );
}

/* SECCIÓN CON FOTO LATERAL */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-photo {
  position: relative; overflow: hidden;
}
.split-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.05);
}
.split-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.45);
  mix-blend-mode: multiply;
}
.split-content {
  background: var(--navy); padding: 5rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* FOTO NOSOTROS — hero image */
.about-hero-photo {
  position: relative; height: 420px;
  overflow: hidden; margin-bottom: 0;
}
.about-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
}
.about-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.3) 0%,
    rgba(13,27,42,0.7) 100%
  );
}

/* FOTO INLINE en servicios */
.serv-photo {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10; position: relative;
}
.serv-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.9);
  transition: transform 0.5s;
}
.serv-photo:hover img { transform: scale(1.04); }
.serv-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,207,179,0.2) 0%, rgba(13,27,42,0.5) 100%);
}

/* STATS BAND */
.stats-band {
  background: var(--teal); padding: 3rem 0;
}
.stats-band-inner {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}
.band-stat { text-align: center; }
.band-num {
  font-family: var(--f-dis); font-size: 2.8rem;
  font-weight: 900; color: var(--navy); display: block; line-height: 1;
}
.band-label { font-size: 0.82rem; font-weight: 600; color: rgba(13,27,42,0.65); margin-top: 4px; display: block; }

/* GRID FOTOS servicios */
.serv-photos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 1rem;
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-photo { height: 280px; }
  .split-content { padding: 3rem 5%; }
  .about-hero-photo { height: 260px; }
  .serv-photos-grid { grid-template-columns: 1fr; }
}
