/* ============================================
   VALTHERA · Payroll & Operations
   styles.css — Hoja de estilos principal
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta principal */
  --ink:        #0b1f2d;
  --ink-2:      #142d3f;
  --ink-3:      #1e3f57;
  --steel:      #2b5f82;
  --steel-l:    #4d8aad;
  --mist:       #e4eef5;
  --mist-2:     #f3f8fb;
  --chalk:      #f9fafb;
  --slate:      #6b828f;
  --gold:       #b8965a;
  --gold-l:     #d4b07a;
  --white:      #ffffff;
  --green-wa:   #25d366;

  /* Tipografías */
  --font-display: 'Fraunces', serif;
  --font-body:    'Outfit', sans-serif;

  /* Espaciado de secciones */
  --section-pad: 96px 7%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ---------- TIPOGRAFÍA GENERAL ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ---------- UTILIDADES ---------- */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-l);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--steel-l);
}

.section-eyebrow.eyebrow--gold {
  color: var(--gold-l);
}

.section-eyebrow.eyebrow--gold::before {
  background: var(--gold-l);
}

.section-eyebrow.eyebrow--center {
  justify-content: center;
}

.section-eyebrow.eyebrow--center::before {
  display: none;
}

h2.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--ink);
  margin-bottom: 16px;
}

h2.section-title--white {
  color: var(--white);
}

p.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  max-width: 560px;
}

p.section-lead--white {
  color: rgba(255, 255, 255, 0.45);
}

p.section-lead--center {
  margin: 0 auto;
  text-align: center;
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
  padding: 14px 32px;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  opacity: 0.85;
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  font-size: 13px;
  padding: 16px 40px;
}

.btn--whatsapp:hover {
  opacity: 0.88;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 31, 45, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav__logo-dot {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.nav__logo-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 2px;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero__left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 7%;
  position: relative;
  z-index: 2;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 30%);
}

.hero__overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, transparent 40%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 150, 90, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 2px;
  padding: 8px 16px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-l);
  width: fit-content;
}

.hero__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-l);
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.hero__metric {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 32px;
}

.hero__metric:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero__metric-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.hero__metric-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

/* ============================================
   CLIENTS STRIP
   ============================================ */
.clients-strip {
  background: var(--ink-2);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.clients-strip__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.clients-strip__logos {
  display: flex;
  gap: 48px;
  align-items: center;
  opacity: 0.35;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

/* ============================================
   SECCIONES — FONDOS
   ============================================ */
.section--light { padding: var(--section-pad); background: var(--white); }
.section--mist  { padding: var(--section-pad); background: var(--mist-2); }
.section--dark  { padding: var(--section-pad); background: var(--ink); }

/* ============================================
   SERVICIOS
   ============================================ */
.services__header {
  margin-bottom: 56px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mist);
}

.service-card {
  background: var(--white);
  padding: 44px 40px;
  border-bottom: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--ink);
  border-bottom-color: var(--gold);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card__sep {
  width: 28px;
  height: 1px;
  background: var(--mist);
  margin-bottom: 20px;
  transition: background 0.3s;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
  transition: color 0.3s;
}

/* Estados hover */
.service-card:hover .service-card__number,
.service-card:hover .service-card__title {
  color: var(--white);
}

.service-card:hover .service-card__desc {
  color: rgba(255, 255, 255, 0.45);
}

.service-card:hover .service-card__sep {
  background: var(--gold);
}

/* ============================================
   SOBRE NOSOTROS
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about__image-col {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.about__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85);
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 45, 0.35);
}

.about__floater {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
}

.about__floater-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.about__floater-sig {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.about__content {
  background: var(--ink-2);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__content h2.section-title {
  color: var(--white);
}

.about__content p.section-lead {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.about__pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
}

.pillar__icon {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: rgba(184, 150, 90, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

.pillar__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.pillar__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

/* ============================================
   PROCESO
   ============================================ */
.process__header {
  margin-bottom: 56px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--mist);
}

.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--mist);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.process-step::after {
  content: attr(data-number);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--mist);
  line-height: 1;
}

.process-step__accent {
  width: 24px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials__header {
  padding: 0 7% 48px;
}

.testimonials__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
}

.testimonial-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.5);
}

.testimonial-image__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.testimonial-image__quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 380px;
}

.testimonial-image__author {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.testimonials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist);
}

.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
}

.testimonial-card__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 11px;
  color: var(--slate);
  margin-top: 1px;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact__wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact__wrap h2.section-title {
  margin: 0 auto 16px;
  color: var(--white);
}

.contact__wrap .section-lead {
  margin: 0 auto 48px;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 28px 20px;
  text-align: center;
}

.contact-card__icon {
  font-size: 20px;
  color: var(--gold-l);
  margin-bottom: 12px;
}

.contact-card__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.contact-card__value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer__logo span {
  color: var(--gold);
}

.footer__tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 4px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

/* ============================================
   ANIMACIONES DE ENTRADA (JS-activadas)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* Hamburguesa: oculta en desktop, visible en mobile via media query */
.nav__menu-toggle {
  display: none;
}

/* CTA mobile dentro del menú: oculto en desktop */
.nav__mobile-cta {
  display: none;
}
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px 5%;
  }

  /* Nav: ocultar tag y achicar logo */
  .nav__logo-tag { display: none; }

  /* Proceso: 2 columnas */
  .process__grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-step:nth-child(2) {
    border-right: none;
  }
  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid var(--mist);
  }

  /* Sobre nosotros: apilar */
  .about {
    grid-template-columns: 1fr;
  }
  .about__image-col {
    min-height: 400px;
  }
  .about__content {
    padding: 60px 5%;
  }

  /* Testimonios: 2 columnas en cards */
  .testimonials__cards {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================
   RESPONSIVE — MOBILE  (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 5%;
  }

  /* ------------------------------------------
     NAV MOBILE — hamburguesa
  ------------------------------------------ */
  .nav {
    padding: 0 5%;
    height: 62px;
  }

  .nav__logo {
    font-size: 20px;
  }

  /* Ocultar links desktop y botón CTA */
  .nav__links,
  .nav > .btn {
    display: none;
  }

  /* Mostrar botón hamburguesa */
  .nav__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .nav__menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Menú mobile desplegado */
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ink);
    padding: 40px 5% 40px;
    gap: 0;
    z-index: 199;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    animation: menuSlideIn 0.25s ease;
  }

  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav__links--open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links--open a {
    display: block;
    padding: 20px 0;
    font-size: 22px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
  }

  .nav__links--open a:hover {
    color: var(--white);
  }

  /* CTA dentro del menú abierto */
  .nav__links--open::after {
    content: '';
    display: block;
    flex: 1;
  }

  .nav__links--open .nav__mobile-cta {
    display: block;
    margin-top: 32px;
    text-align: center;
    background: var(--gold);
    color: var(--ink);
    padding: 16px 32px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: none !important;
  }

  /* ------------------------------------------
     HERO MOBILE
  ------------------------------------------ */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    position: relative;
  }

  /* En mobile mostramos la imagen como fondo del hero */
  .hero__right {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero__right img {
    filter: brightness(0.35) saturate(0.6);
  }

  .hero__left {
    position: relative;
    z-index: 1;
    padding: 80px 5% 60px;
    background: transparent;
  }

  /* Degradado adicional para legibilidad */
  .hero__left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,31,45,0.6) 0%, rgba(11,31,45,0.85) 100%);
    z-index: -1;
  }

  .hero__title {
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 13px;
  }

  .hero__metrics {
    flex-wrap: wrap;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero__metric {
    flex: 0 0 50%;
    padding: 16px 0;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__metric:nth-child(odd) {
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__metric:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero__metric-number {
    font-size: 28px;
  }

  /* ------------------------------------------
     CLIENTS STRIP MOBILE
  ------------------------------------------ */
  .clients-strip {
    flex-direction: column;
    gap: 16px;
    padding: 20px 5%;
    align-items: flex-start;
  }

  .clients-strip__logos {
    gap: 20px;
    font-size: 13px;
  }

  /* ------------------------------------------
     SERVICIOS MOBILE
  ------------------------------------------ */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-card:hover {
    /* En mobile no hay hover real, evitamos el estado pegado */
    background: var(--white);
    border-bottom-color: transparent;
  }

  .service-card:hover .service-card__number,
  .service-card:hover .service-card__title {
    color: var(--ink);
  }

  .service-card:hover .service-card__desc {
    color: var(--slate);
  }

  .service-card:hover .service-card__sep {
    background: var(--mist);
  }

  /* Usar active en su lugar (toque) */
  .service-card:active {
    background: var(--ink);
    border-bottom-color: var(--gold);
  }

  .service-card:active .service-card__number,
  .service-card:active .service-card__title {
    color: var(--white);
  }

  .service-card:active .service-card__desc {
    color: rgba(255, 255, 255, 0.45);
  }

  .service-card:active .service-card__sep {
    background: var(--gold);
  }

  /* ------------------------------------------
     SOBRE NOSOTROS MOBILE
  ------------------------------------------ */
  .about {
    grid-template-columns: 1fr;
  }

  .about__image-col {
    min-height: 300px;
  }

  .about__floater {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    border-radius: 0;
  }

  .about__floater-quote {
    font-size: 16px;
  }

  .about__content {
    padding: 48px 5%;
  }

  .about__pillars {
    margin-top: 28px;
    gap: 12px;
  }

  .pillar {
    padding: 16px 18px;
  }

  /* ------------------------------------------
     PROCESO MOBILE
  ------------------------------------------ */
  .process__grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--mist);
    padding: 32px 24px;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-step::after {
    font-size: 36px;
    top: 16px;
    right: 16px;
  }

  /* ------------------------------------------
     TESTIMONIOS MOBILE
  ------------------------------------------ */
  .testimonials__header {
    padding: 0 5% 36px;
  }

  .testimonials__images {
    grid-template-columns: 1fr;
  }

  .testimonial-image {
    height: 220px;
  }

  .testimonial-image__overlay {
    padding: 20px;
  }

  .testimonial-image__quote {
    font-size: 14px;
  }

  .testimonials__cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  /* ------------------------------------------
     CONTACTO MOBILE
  ------------------------------------------ */
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 18px 20px;
  }

  .contact-card__icon {
    font-size: 22px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-card__label {
    margin-bottom: 2px;
  }

  .btn--whatsapp {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 14px;
  }

  /* ------------------------------------------
     FOOTER MOBILE
  ------------------------------------------ */
  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 5%;
  }

  .footer__copy {
    text-align: center;
  }

  /* ------------------------------------------
     DESACTIVAR ANIMACIONES FADE en mobile
     (evita parpadeos en pantallas pequeñas)
  ------------------------------------------ */
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================
   RESPONSIVE — MOBILE PEQUEÑO  (max 390px)
   ============================================ */
@media (max-width: 390px) {
  .nav__logo {
    font-size: 18px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .hero__metric {
    flex: 0 0 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__metric:last-child {
    border-bottom: none;
  }

  .about__content {
    padding: 36px 5%;
  }

  h2.section-title {
    font-size: 28px;
  }
}


/* ============================================
   TOUCH DEVICES — deshabilitar hover effects
   que no aplican en pantallas táctiles
   ============================================ */
@media (hover: none) {
  .service-card:hover {
    background: var(--white);
    border-bottom-color: transparent;
  }

  .service-card:hover .service-card__number,
  .service-card:hover .service-card__title {
    color: var(--ink);
  }

  .service-card:hover .service-card__desc {
    color: var(--slate);
  }

  .service-card:hover .service-card__sep {
    background: var(--mist);
  }
}
