/* ============================================================
   SoporteCuliacán — Site CSS
   Paleta: naranja desierto + azul noche profundo + amber
   ============================================================ */

:root {
  --brand:       #ff6a3d;
  --brand-2:     #ffb547;
  --brand-deep:  #c14a22;
  --dark:        #0b1220;
  --dark-2:      #131b2e;
  --ink:         #1a2238;
  --slate:       #475569;
  --slate-2:     #64748b;
  --paper:       #fafbfc;
  --line:        #e5e7eb;
  --success:     #10b981;
  --warn:        #f59e0b;
  --danger:      #dc2626;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(11,18,32,.06);
  --shadow-md: 0 4px 20px rgba(11,18,32,.08);
  --shadow-lg: 0 20px 60px rgba(11,18,32,.12);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--brand); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--slate); }

/* ============== NAVBAR ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--dark);
}
.brand:hover { opacity: 1; }
.brand .mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(255,106,61,.4);
}
.brand strong { color: var(--brand); }

.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(255,106,61,.3);
}
.nav-cta:hover { opacity: .95; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: .3s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,106,61,.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,181,71,.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,106,61,.1);
  color: var(--brand-deep);
  border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand) 30%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,106,61,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,106,61,.45); }
.btn-secondary {
  background: var(--dark);
  color: #fff;
}
.btn-secondary:hover { transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 36px;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hero-stat span {
  font-size: .85rem;
  color: var(--slate-2);
}

/* Hero visual: floating cards */
.hero-visual {
  position: relative;
  height: 460px;
}
.h-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: flex; align-items: center; gap: 14px;
  animation: float 6s ease-in-out infinite;
}
.h-card .h-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.h-card strong { display: block; font-family: var(--font-display); color: var(--dark); }
.h-card span   { font-size: .78rem; color: var(--slate-2); }

.h-card.c1 { top: 0; right: 0; animation-delay: 0s;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.h-card.c1 strong, .h-card.c1 span { color: #fff; }
.h-card.c1 .h-ico { background: rgba(255,255,255,.25); }

.h-card.c2 { top: 110px; right: 140px; animation-delay: .8s; }
.h-card.c2 .h-ico { background: #e0f2fe; color: #0369a1; }

.h-card.c3 { top: 230px; right: 0; animation-delay: 1.6s; }
.h-card.c3 .h-ico { background: #fef3c7; color: #b45309; }

.h-card.c4 { bottom: 0; right: 80px; animation-delay: 2.4s; }
.h-card.c4 .h-ico { background: #dcfce7; color: #15803d; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .5; }
}

/* ============== SECTION TITLES ============== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ============== SERVICIOS ============== */
.servicios { background: var(--paper); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.svc {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,106,61,.1), rgba(255,181,71,.15));
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.svc h3 { margin-bottom: 8px; }
.svc p  { font-size: .92rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .88rem;
  color: var(--brand);
  margin-top: 18px;
}

/* ============== SECTORES ============== */
.sectores { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.sectores::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,106,61,.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,181,71,.1), transparent 40%);
}
.sectores .section-head { position: relative; }
.sectores .section-head h2,
.sectores .section-head p { color: #fff; }
.sectores .section-head p { opacity: .75; }
.chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  position: relative;
}
.chip {
  padding: 12px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s, transform .2s;
}
.chip:hover {
  background: rgba(255,106,61,.2);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.chip .chip-ico { font-size: 1.2rem; }

/* ============== PROCESO ============== */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.paso {
  text-align: center;
  position: relative;
}
.paso-num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(255,106,61,.35);
}
.paso h3 { margin-bottom: 8px; }
.paso p  { font-size: .9rem; }

/* ============== CONTACTO ============== */
.contacto {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,61,.2), transparent 70%);
  border-radius: 50%;
}
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
  position: relative;
}
.contacto h2 { color: #fff; margin-bottom: 16px; }
.contacto-lead {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.contacto-info {
  display: flex; flex-direction: column; gap: 18px;
}
.cinfo-item {
  display: flex; align-items: center; gap: 14px;
}
.cinfo-item .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,106,61,.2);
  color: var(--brand-2);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.cinfo-item strong { display: block; color: #fff; font-family: var(--font-display); }
.cinfo-item span   { font-size: .88rem; color: rgba(255,255,255,.6); }
.cinfo-item a { color: #fff; }

/* Form */
.cform {
  background: #fff;
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.cform h3 { color: var(--dark); margin-bottom: 6px; }
.cform .lead { color: var(--slate-2); margin-bottom: 24px; font-size: .95rem; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,61,.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}
.cform .btn-primary { width: 100%; justify-content: center; padding: 14px; }

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============== FOOTER ============== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer ul a:hover { color: var(--brand-2); }
.footer-brand p { font-size: .92rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.footer-social a:hover { background: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ============== WHATSAPP FLOTANTE ============== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 99;
  color: #fff;
  font-size: 1.8rem;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); opacity: 1; }
.wa-float::after {
  content: ''; position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============== ANIMACIONES SCROLL ============== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; }
.fade-up.in { opacity: 1; transform: none; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero { padding: 60px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .proceso-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
}

@media (max-width: 720px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-visual { height: 320px; }
  .h-card { padding: 14px; }
  .h-card .h-ico { width: 40px; height: 40px; }

  .cform { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .proceso-grid { grid-template-columns: 1fr; }
}
/* =============================================================
   NOSOTROS — anexar al final de assets/css/site.css
   ============================================================= */

/* Hero */
.nosotros-hero{
  padding:120px 0 80px;
  background:linear-gradient(180deg,#fff7f2 0%, #fff 100%);
  position:relative;
  overflow:hidden;
}
.nh-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}
.nh-text h1{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.1;
  margin:14px 0 20px;
  letter-spacing:-.02em;
}
.nh-lead{
  font-size:1.15rem;
  color:#475569;
  line-height:1.65;
  max-width:540px;
}
.nh-actions{
  display:flex;
  gap:14px;
  margin-top:30px;
  flex-wrap:wrap;
}
.btn-ghost{
  background:transparent;
  color:#1e293b;
  border:1.5px solid #cbd5e1;
}
.btn-ghost:hover{ border-color:#ff6a3d; color:#ff6a3d; }

/* Tarjetas decorativas del hero */
.nh-visual{
  position:relative;
  height:380px;
}
.nh-card{
  position:absolute;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
}
.nh-card strong{ display:block; font-size:.95rem; }
.nh-card span{ display:block; font-size:.8rem; color:#64748b; margin-top:2px; }
.nh-card-ico{
  width:42px; height:42px;
  border-radius:10px;
  background:#fff5ee;
  display:grid; place-items:center;
  font-size:1.3rem;
  flex-shrink:0;
}
.nh-card-1{ top:20px;  left:0;   animation:floaty 6s ease-in-out infinite; }
.nh-card-2{ top:150px; right:0;  animation:floaty 6s ease-in-out infinite -2s; }
.nh-card-3{ top:280px; left:30px; animation:floaty 6s ease-in-out infinite -4s; }
@keyframes floaty{
  0%,100%{ transform:translateY(0); }
  50%   { transform:translateY(-10px); }
}

/* Stats */
.nosotros-stats{ padding:60px 0; }
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  text-align:center;
}
.stat-num{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2.4rem, 4vw, 3.2rem);
  font-weight:700;
  background:linear-gradient(135deg,#ff6a3d,#ffb547);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
}
.stat-label{
  margin-top:8px;
  color:#64748b;
  font-weight:500;
}

/* Misión / Visión */
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.mv-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:36px;
}
.mv-card h3{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.4rem;
  margin:14px 0 12px;
}
.mv-card p{ color:#475569; line-height:1.7; }
.mv-ico{
  width:54px; height:54px;
  border-radius:14px;
  background:linear-gradient(135deg,#ff6a3d,#ffb547);
  display:grid; place-items:center;
  font-size:1.6rem;
}

/* Valores */
.section-soft{ background:#f8fafc; }
.valores-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.valor{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:28px;
  transition:transform .25s, border-color .25s;
}
.valor:hover{ transform:translateY(-4px); border-color:#ff6a3d; }
.valor-num{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.6rem;
  font-weight:700;
  color:#ff6a3d;
  margin-bottom:14px;
}
.valor h3{ font-size:1.1rem; margin-bottom:8px; }
.valor p{ color:#64748b; font-size:.92rem; line-height:1.55; }

/* Equipo */
.equipo-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.equipo-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:32px;
  text-align:center;
  transition:transform .25s, box-shadow .25s;
}
.equipo-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}
.equipo-avatar{
  width:80px; height:80px;
  border-radius:50%;
  margin:0 auto 18px;
  display:grid; place-items:center;
  font-size:2rem;
  color:#fff;
}
.equipo-card h3{ font-size:1.25rem; margin-bottom:4px; }
.equipo-rol{
  font-size:.85rem;
  color:#ff6a3d;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:14px;
}
.equipo-desc{
  color:#64748b;
  font-size:.95rem;
  line-height:1.6;
}

/* CTA final reutilizable */
.cta-final{
  background:linear-gradient(135deg,#0f172a 0%, #1e293b 100%);
  border-radius:24px;
  padding:60px 40px;
  text-align:center;
  color:#fff;
}
.cta-final h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom:14px;
}
.cta-final p{
  color:#cbd5e1;
  max-width:560px;
  margin:0 auto 28px;
  font-size:1.05rem;
}
.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.cta-final .btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.3);
}
.cta-final .btn-ghost:hover{ background:rgba(255,255,255,.1); border-color:#fff; }

/* Responsive */
@media (max-width:900px){
  .nh-grid{ grid-template-columns:1fr; gap:40px; }
  .nh-visual{ height:320px; max-width:380px; margin:0 auto; }
  .stats-grid,
  .valores-grid{ grid-template-columns:repeat(2, 1fr); }
  .mv-grid,
  .equipo-grid{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .stats-grid{ grid-template-columns:1fr 1fr; gap:20px; }
  .nosotros-hero{ padding:90px 0 50px; }
}
.nav-portal a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  background:rgba(255,106,61,.08);
  border:1px solid rgba(255,106,61,.25);
  border-radius:20px;
  color:#ff6a3d !important;
  font-weight:600;
  font-size:.88rem;
  transition:background .15s, border-color .15s;
}
.nav-portal a:hover{
  background:rgba(255,106,61,.15);
  border-color:#ff6a3d;
  text-decoration:none;
}
.nav-portal-ico{ font-size:.85em; }
 
/* Versión móvil: que se vea como un botón normal del menú */
@media (max-width:900px){
  .nav-portal a{
    background:transparent;
    border:none;
    border-radius:0;
    padding:12px 20px;
    width:100%;
    justify-content:flex-start;
  }
}