/* ========================================
   VARIABLES
   ======================================== */
:root {
  --bg:            #F4F8FC;
  --bg-alt:        #F4F8FC;
  --bg-white:      #ffffff;
  --color-primary: #0ea5e9;
  --color-blue:    #2563eb;
  --color-dark:    #0f172a;
  --color-text:    #1e293b;
  --color-muted:   #64748b;
  --color-border:  #dde8f2;
  --color-light:   #eef5fb;
  --gradient:      linear-gradient(135deg, #2563eb, #0ea5e9);
  --gradient-cta:  linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --radius-sm:     0.5rem;
  --radius-md:     0.75rem;
  --radius-lg:     1rem;
  --radius-xl:     1.5rem;
  --shadow-sm:     0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:        0 4px 16px rgba(15,23,42,0.07), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-md:     0 10px 40px rgba(37,99,235,0.10), 0 4px 12px rgba(15,23,42,0.05);
  --shadow-blue:   0 8px 32px rgba(37,99,235,0.22);
  --font:          'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:    0.25s ease;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #F4F8FC;
  background-image: radial-gradient(
    ellipse 120% 70% at 50% -5%,
    #D6E6F5 0%,
    #E3EEF8 30%,
    #EDF4FB 55%,
    #F4F8FC 100%
  );
  background-attachment: fixed;
}
#contacto, .faq, .cta-final { position: relative; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

/* ========================================
   IDIOMA
   ======================================== */
.lang-es .en { display: none !important; }
.lang-en .es { display: none !important; }

/* ========================================
   UTILIDADES
   ======================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.accent { color: var(--color-primary); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--color-dark); line-height: 1.15; margin-bottom: 0.75rem; }
.section-sub { font-size: 1rem; color: var(--color-muted); max-width: 520px; margin: 0 auto; }

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; letter-spacing: 0.01em;
  border: none; border-radius: 2rem; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-blue);
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(37,99,235,0.35); }

.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.82rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn--hero { padding: 0.85rem 2rem; font-size: 1rem; margin-top: 0.5rem; }
.btn--full { width: 100%; height: 3.25rem; font-size: 1rem; border-radius: var(--radius-md); }

.btn--white {
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}
.btn--white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); }

/* ========================================
   HEADER — flotante redondeado
   ======================================== */
.header {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 2.5rem); max-width: 1160px;
  padding: 0;
  transition: top var(--transition), box-shadow var(--transition);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 24px rgba(15,23,42,0.09), 0 1px 4px rgba(15,23,42,0.06);
  padding: 0.7rem 1.25rem;
  transition: box-shadow var(--transition), padding var(--transition);
}
.header.scrolled .header__inner {
  box-shadow: 0 8px 36px rgba(15,23,42,0.13), 0 2px 6px rgba(15,23,42,0.07);
  padding: 0.55rem 1.25rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo--footer { margin-bottom: 0.75rem; }
.logo__img { height: 38px; width: auto; display: block; }
.logo__img--footer { height: 84px; filter: brightness(0) invert(1); }

.nav { display: none; gap: 0.25rem; }
.nav__link { font-size: 0.875rem; font-weight: 500; color: var(--color-muted); padding: 0.4rem 0.8rem; border-radius: 2rem; transition: color var(--transition), background var(--transition); }
.nav__link:hover { color: var(--color-dark); background: rgba(15,23,42,0.05); }

.header__right { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }

.lang-toggle { display: flex; background: rgba(15,23,42,0.06); border-radius: 2rem; padding: 3px; }
.lang-btn { padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 700; border: none; background: transparent; color: var(--color-muted); cursor: pointer; transition: background var(--transition), color var(--transition); }
.lang-btn.active { background: var(--gradient); color: #fff; }

.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: rgba(15,23,42,0.05); border: none; border-radius: var(--radius-sm); padding: 0 9px; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--color-dark); transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero__bg { display: none; }
.hero__inner { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease-out both;
}
.hero__title .accent { color: var(--color-primary); }

.rotating { display: inline-block; transition: opacity 0.4s ease, transform 0.4s ease; }

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.05s both;
}

.hero__pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin-top: 2rem; margin-bottom: 0.75rem;
  animation: fadeUp 0.9s ease-out 0.1s both;
}

.pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(15,23,42,0.07);
  border: 1px solid rgba(15,23,42,0.1);
  color: var(--color-dark);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 1rem; border-radius: 2rem;
  backdrop-filter: blur(8px);
}
.pill svg { color: var(--color-primary); }

.hero__sub { font-size: 0.9rem; color: var(--color-muted); font-style: italic; animation: fadeUp 1s ease-out 0.15s both; }

/* ========================================
   LOGOS
   ======================================== */
.logos { background: transparent; padding: 2.25rem 0; overflow: hidden; }
.logos__wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent); }
.logos__track { display: flex; width: max-content; animation: scrollLogos 34s linear infinite; align-items: center; }
.logos__item { flex-shrink: 0; width: 160px; height: 70px; margin: 0 2.5rem; display: flex; align-items: center; justify-content: center; opacity: 0.55; transition: opacity var(--transition); }
.logos__item:hover { opacity: 1; }
.logos__item img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================
   SERVICIOS
   ======================================== */
.services { padding: 6rem 0; background: transparent; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.svc-card {
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card--featured { border-color: rgba(37,99,235,0.3); background: linear-gradient(135deg, #f0f7ff, #e8f4ff); }

.svc-card__icon {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-blue); margin-bottom: 1.25rem;
}
.svc-card__title { font-size: 1.05rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.6rem; }
.svc-card__desc { font-size: 0.9rem; color: var(--color-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-card__badge { display: inline-block; background: #eff6ff; border: 1px solid #bfdbfe; color: var(--color-blue); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 2rem; }

/* ========================================
   CÓMO FUNCIONA
   ======================================== */
.how { padding: 6rem 0; background: transparent; }
.how__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--color-dark); text-align: center; margin-bottom: 2.5rem; }
.how__card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 2.5rem 2rem; box-shadow: var(--shadow); border: 1px solid var(--color-border); max-width: 700px; margin: 0 auto; }
.how__list { list-style: none; margin-bottom: 2.5rem; }
.how__list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; font-size: 1rem; color: var(--color-text); }
.how__list li:last-child { margin-bottom: 0; }
.how__check { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.how__cta { text-align: center; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.how__cta-note { font-size: 1.1rem; font-weight: 600; color: var(--color-muted); font-style: italic; margin-bottom: 1.25rem; }

/* ========================================
   RESULTADOS
   ======================================== */
.results { padding: 6rem 0; background: transparent; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.metric {
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.metric:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.metric__num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 0.4rem;
}
.metric__label { font-size: 0.85rem; color: var(--color-muted); font-weight: 500; }

/* ========================================
   TESTIMONIOS
   ======================================== */
.testimonials { padding: 6rem 0; background: transparent; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.tcard {
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tcard__quote { width: 2rem; height: 2rem; color: var(--color-primary); opacity: 0.6; margin-bottom: 1rem; }
.tcard blockquote { font-size: 0.9rem; color: var(--color-muted); line-height: 1.75; flex-grow: 1; margin-bottom: 1.5rem; }
.tcard__author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--color-border); }
.tcard__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #bfdbfe; }
.tcard__name { font-weight: 700; font-size: 0.9rem; color: var(--color-dark); }
.tcard__role { font-size: 0.78rem; color: var(--color-muted); }

/* ========================================
   FORMULARIO — 2 columnas con panel de beneficios
   ======================================== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(to bottom,
    rgba(30,41,59,0) 0%,
    rgba(30,41,59,0.04) 60%,
    rgba(30,41,59,0.09) 100%
  );
  position: relative;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.contact__left {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact__headline {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; color: var(--color-dark); line-height: 1.2;
}
.contact__headline span { color: var(--color-primary); }
.contact__desc { font-size: 0.95rem; color: var(--color-muted); line-height: 1.65; }
.contact__benefits { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.contact__benefit {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--color-text); font-weight: 500;
}
.contact__benefit-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.05rem;
}
.contact__benefit-icon svg { color: var(--color-blue); }
.contact__trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--color-muted);
  border-top: 1px solid var(--color-border); padding-top: 1rem;
}
.contact__trust svg { color: #22c55e; flex-shrink: 0; }

.form-card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.form-card__title { font-size: 1.45rem; font-weight: 800; text-align: center; color: var(--color-dark); margin-bottom: 1.75rem; }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.45rem; }
.field input, .field select {
  width: 100%; height: 3rem; padding: 0 1rem;
  background: var(--bg-light, #f8fafc);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-dark);
  font-family: var(--font); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; background-color: #f8fafc; }
.field input::placeholder { color: var(--color-muted); }
.field input:focus, .field select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.field__phone { display: flex; gap: 0.5rem; }
.field__phone select { width: 175px; flex-shrink: 0; font-size: 0.78rem; }
.field__phone input { flex: 1; }

/* ========================================
   FAQ — fondo con degradado progresivo
   ======================================== */
.faq {
  padding: 6rem 0;
  background: linear-gradient(to bottom,
    rgba(30,41,59,0.09) 0%,
    rgba(30,41,59,0.15) 100%
  );
}
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item { background: rgba(255,255,255,0.78); backdrop-filter: blur(8px); border: 1.5px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.faq__item.open { border-color: var(--color-primary); background: rgba(255,255,255,0.92); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.4rem; background: none; border: none; color: var(--color-dark); font-family: var(--font); font-size: 0.95rem; font-weight: 600; text-align: left; cursor: pointer; transition: background var(--transition); }
.faq__question:hover { background: rgba(255,255,255,0.5); }
.faq__icon { flex-shrink: 0; color: var(--color-primary); transition: transform var(--transition); }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.4rem; }
.faq__item.open .faq__answer { max-height: 200px; padding: 0 1.4rem 1.25rem; }
.faq__answer p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.7; border-top: 1px solid var(--color-border); padding-top: 1rem; }

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  padding: 5.5rem 0; text-align: center;
  background: var(--gradient-cta);
  position: relative; overflow: hidden;
}
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(255,255,255,0.08), transparent); }
.cta-final__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-final__sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 2rem; position: relative; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: #0B1E3A; color: #fff; padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__desc { font-size: 0.875rem; color: #94a3b8; line-height: 1.6; max-width: 220px; margin-top: 0.5rem; }
.footer__socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer__socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: color var(--transition), background var(--transition); }
.footer__socials a:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer__heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #94a3b8; margin-bottom: 1rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-size: 0.875rem; color: #64748b; transition: color var(--transition); }
.footer__nav a:hover { color: #fff; }
.footer__email { font-size: 0.9rem; color: var(--color-primary); display: block; margin-bottom: 0.4rem; transition: opacity var(--transition); }
.footer__email:hover { opacity: 0.8; }
.footer__bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: #475569; }

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed; top: 1.25rem; right: 1.25rem;
  background: #fff; border: 1px solid #bbf7d0; border-left: 4px solid #22c55e;
  padding: 0.9rem 1.4rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); color: var(--color-dark);
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.6rem;
  transform: translateX(130%); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 1000; max-width: 320px;
}
.toast svg { color: #22c55e; flex-shrink: 0; }
.toast.show { transform: translateX(0); }

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (min-width: 640px) {
  .metrics { grid-template-columns: repeat(4, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   RESPONSIVE — DESKTOP
   ======================================== */
@media (min-width: 1024px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ========================================
   MOBILE MENU
   ======================================== */
@media (max-width: 1023px) {
  .nav {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 82vw); height: 100vh;
    background: #fff; border-left: 1px solid var(--color-border);
    flex-direction: column; padding: 6rem 1.75rem 2rem; gap: 0.35rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 99;
    box-shadow: -8px 0 32px rgba(15,23,42,0.1);
  }
  .nav--open { right: 0; }
  .nav__link { font-size: 1rem; padding: 0.7rem 1rem; border-radius: var(--radius-md); }
  .header__right .btn--sm { display: none; }
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .logo__img--footer { height: 68px; }
  .header__inner { padding: 0.55rem 1rem; }
  .footer__grid { gap: 2.25rem; }
  .logos__item { width: 130px; height: 56px; margin: 0 1.75rem; }
}

/* ========================================
   RESPONSIVE — MÓVIL
   ======================================== */
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .header { top: 0.6rem; width: calc(100% - 1.6rem); }
  .header__inner { padding: 0.5rem 0.85rem; border-radius: 0.85rem; }
  .logo__img--footer { height: 58px; }

  .hero { padding-top: 6.5rem; }
  .hero__pills { gap: 0.4rem; }
  .pill { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  .hero__subtitle { letter-spacing: 0.03em; }

  .metrics { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .how__card { padding: 1.75rem 1.25rem; }
  .form-card { padding: 1.5rem 1.15rem; }
  .field__phone select { width: 120px; font-size: 0.85rem; }

  .logos { padding: 1.5rem 0; }
  .logos__item { width: 110px; height: 48px; margin: 0 1.35rem; }

  .btn--hero { width: 100%; justify-content: center; }
  .footer__grid { gap: 1.85rem; }

  /* Evita zoom automático de iOS al enfocar inputs (font-size < 16px lo dispara) */
  input, select, textarea { font-size: 16px; }
}
