/* ============================================================
   NALLA HUNTING — style.css
   Diseño fiel al brochure PDF: ornamentos ricos, composición
   editorial, paleta amarillo / negro / gris claro.
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   VARIABLES
   ────────────────────────────────────────────────────────── */
:root {
  /* Paleta */
  --y:        #E6C847;   /* amarillo principal */
  --y-lt:     #F1DA72;   /* amarillo claro */
  --y-dk:     #C9AD2C;   /* amarillo oscuro / hover */
  --dk:       #2C2B29;   /* grafito oscuro cálido */
  --dk2:      #393835;   /* grafito medio */
  --gray:     #E9E9E7;   /* fondo gris claro */
  --gray2:    #D8D8D6;   /* borde / línea */
  --gray-dk:  #C2C2C0;   /* tono oscuro decorativo (reemplaza negro en decos) */
  --text:     #4A4A4A;   /* texto secundario */
  --white:    #FFFFFF;
  --surface:  #F4F4F2;   /* superficie de card en sección clara */

  /* Tipografía */
  --ff-display: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  --ff-body:    'Century Gothic', CenturyGothic, AppleGothic, sans-serif;

  /* Espaciado de secciones */
  --sp: 6rem 0;
  --sp-sm: 4rem 0;

  /* Contenedor */
  --max-w: 1200px;

  /* Radios */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-xl:   48px;
  --r-2xl:  64px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm:  0 2px 14px rgba(27,27,27,.06);
  --sh-md:  0 8px 32px  rgba(27,27,27,.10);
  --sh-lg:  0 22px 56px rgba(27,27,27,.14);
  --sh-y:   0 14px 36px rgba(230,200,71,.32);

  /* Transición */
  --ease: .25s ease;
}

/* ──────────────────────────────────────────────────────────
   RESET
   ────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html  { scroll-behavior:smooth; font-size:16px; }
body  { font-family:var(--ff-body); color:var(--text); background:var(--gray); line-height:1.7; overflow-x:hidden; }
img   { max-width:100%; height:auto; display:block; }
a     { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; }

/* ──────────────────────────────────────────────────────────
   LAYOUT
   ────────────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section { padding: var(--sp); position: relative; overflow: hidden; }
.section--white  { background: var(--white); }
.section--gray   { background: var(--gray); }
.section--dark   { background: var(--dk); color: var(--white); }
.section--surf   { background: var(--surface); }

/* ──────────────────────────────────────────────────────────
   TIPOGRAFÍA COMÚN
   ────────────────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--y-dk);
  margin-bottom: .6rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.label--y  { color: var(--y); }
.label--wh { color: rgba(255,255,255,.6); }
.label--wh::before { background: var(--y); }

.title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dk);
  margin-bottom: .9rem;
}
.title--lt  { color: var(--white); }
.title--y   { color: var(--y); }

.sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 640px;
  line-height: 1.75;
}
.sub--muted { color: rgba(255,255,255,.58); }
.sub--c     { margin-inline: auto; text-align: center; }

/* cabecera de sección */
.section-hd { margin-bottom: 3.5rem; }
.section-hd--c { text-align: center; }
.section-hd--c .sub { margin-inline: auto; }

/* ──────────────────────────────────────────────────────────
   BOTONES
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--yellow {
  background: var(--y);
  color: var(--dk);
  box-shadow: var(--sh-y);
}
.btn--yellow:hover {
  background: var(--y-dk);
  box-shadow: 0 18px 44px rgba(230,200,71,.40);
}

.btn--dark {
  background: var(--dk);
  color: var(--white);
}
.btn--dark:hover { background: #333; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.32);
}
.btn--ghost:hover { border-color: var(--y); color: var(--y); }

.btn--outline-dk {
  background: transparent;
  color: var(--dk);
  border: 2px solid rgba(27,27,27,.3);
}
.btn--outline-dk:hover { border-color: var(--dk); }

.btn--sm  { padding: .7rem 1.5rem; font-size: .84rem; }
.btn--full{ width: 100%; }

/* ──────────────────────────────────────────────────────────
   CHIPS / BADGES
   ────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.chip--dk { background: var(--dk); color: var(--white); }
.chip--y  { background: var(--y);  color: var(--dk); }

/* ──────────────────────────────────────────────────────────
   ELEMENTOS DECORATIVOS — sistema completo
   ────────────────────────────────────────────────────────── */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Cuadrado/rectángulo redondeado sólido amarillo (elemento estrella del PDF) */
.deco--sq-y {
  background: var(--y);
  border-radius: var(--r-xl);
}
/* Cuadrado sólido gris oscuro decorativo */
.deco--sq-dk {
  background: var(--gray-dk);
  border-radius: var(--r-xl);
}
/* Frame: sólo borde amarillo */
.deco--frame-y {
  border: 3px solid var(--y);
  border-radius: var(--r-xl);
  background: transparent;
}
/* Círculo / anillo amarillo */
.deco--ring-y {
  border: 3px solid var(--y);
  border-radius: 50%;
  background: transparent;
}
/* Blob gris oscuro decorativo (opacidad baja) */
.deco--blob-dk {
  background: var(--gray-dk);
  border-radius: 50%;
}
/* Cápsula sólida amarilla */
.deco--pill-y {
  background: var(--y);
  border-radius: var(--r-pill);
}
/* Cápsula sólo borde */
.deco--pill-outline {
  border: 2.5px solid var(--y);
  border-radius: var(--r-pill);
  background: transparent;
}
/* Línea fina */
.deco--line-y {
  height: 2px;
  background: var(--y);
  border-radius: 2px;
}
/* Cuadrícula de puntos (::after genera el patrón) */
.deco--dots {
  background-image: radial-gradient(circle, var(--y) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  border-radius: var(--r-sm);
  opacity: .55;
}

/* ──────────────────────────────────────────────────────────
   NAVEGACIÓN
   ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--gray);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.nav--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.10); border-bottom-color: var(--gray-dk); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav__logo { height: 52px; width: auto; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: auto;
}
.nav__links a {
  padding: .42rem .9rem;
  border-radius: var(--r-pill);
  font-size: .86rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease), background var(--ease);
}
.nav__links a:hover { color: var(--y-dk); }

.nav__cta {
  background: var(--y) !important;
  color: var(--dk) !important;
  font-weight: 700 !important;
  padding: .6rem 1.35rem !important;
}
.nav__cta:hover { background: var(--y-dk) !important; color: var(--dk) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 7px;
}
.nav__burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dk);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  background: var(--gray);
  z-index: 490;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: .4rem;
  border-top: 1px solid var(--gray-dk);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .95rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--ease), color var(--ease);
}
.mobile-nav a:hover { background: rgba(230,200,71,.18); color: var(--y-dk); }
.mobile-nav__cta {
  margin-top: .8rem;
  background: var(--y);
  color: var(--dk) !important;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   HERO — composición rica fiel al PDF
   ────────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 5rem 0 6rem;
  overflow: hidden;
  position: relative;
}

/* Grandes rectángulos decorativos del hero (como en el PDF) */
.hero .deco--sq-y-lg-1 {
  width: 220px; height: 220px;
  background: var(--y);
  border-radius: 48px;
  bottom: -60px; left: -55px;
  opacity: .9;
}
.hero .deco--sq-y-lg-2 {
  width: 160px; height: 160px;
  background: var(--y);
  border-radius: 40px;
  top: -40px; right: 34%;
  opacity: .85;
}
.hero .deco--sq-dk-1 {
  width: 130px; height: 130px;
  background: var(--gray-dk);
  border-radius: 36px;
  top: -20px; left: 28%;
  opacity: 1;
}
.hero .deco--sq-dk-2 {
  width: 100px; height: 100px;
  background: var(--gray-dk);
  border-radius: 28px;
  top: 40%; right: 2%;
  opacity: 1;
}
.hero .deco--ring-sm {
  width: 90px; height: 90px;
  border: 4px solid var(--y);
  border-radius: 50%;
  top: 8%; left: 5%;
  opacity: .6;
}
.hero .deco--dots-h1 {
  width: 80px; height: 60px;
  background-image: radial-gradient(circle, var(--dk) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  top: 30%; left: 44%;
  opacity: .18;
}
.hero .deco--dots-h2 {
  width: 60px; height: 50px;
  background-image: radial-gradient(circle, var(--y-dk) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  bottom: 20%; right: 18%;
  opacity: .5;
}
.hero .deco--frame-h {
  width: 300px; height: 300px;
  border: 3px solid var(--y);
  border-radius: 48px;
  bottom: -80px; right: 8%;
  opacity: .35;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--y-dk);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--y-dk);
  border-radius: 2px;
}

.hero__title { font-family: var(--ff-display); line-height: .92; margin-bottom: .7rem; }
.hero__title-main {
  display: block;
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 800;
  color: var(--dk);
  letter-spacing: -.02em;
}
.hero__title-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: .8em;
  color: var(--y-dk);
  text-transform: uppercase;
  padding-left: .2em;
  margin-top: .3rem;
}

.hero__tagline {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(27,27,27,.45);
  margin-bottom: 1.4rem;
}

.hero__text {
  color: var(--text);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.78;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual — composición de imágenes superpuestas como en el PDF */
.hero__visual { position: relative; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray2);
  box-shadow: var(--sh-lg);
  /* Frame amarillo exterior */
  outline: 3px solid var(--y);
  outline-offset: 10px;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero__img-wrap:hover .hero__img { transform: scale(1.04); }

/* Badge "10+ años" */
.hero__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--y);
  color: var(--dk);
  border-radius: var(--r-lg);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: var(--sh-y);
}
.hero__badge-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 800;
}
.hero__badge-lbl {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Chip flotante */
.hero__chip {
  position: absolute;
  top: 1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--dk);
  box-shadow: var(--sh-md);
  white-space: nowrap;
}
.hero__chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ──────────────────────────────────────────────────────────
   QUIÉNES SOMOS
   ────────────────────────────────────────────────────────── */
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Columna izquierda */
.who__left { display: flex; flex-direction: column; gap: 1.4rem; }

.who__big-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dk);
  line-height: 1.15;
  margin: 0;
}

.who__text { color: var(--text); line-height: 1.75; margin: 0; }

.who__media { position: relative; margin-top: .5rem; }
.who__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray2);
  box-shadow: var(--sh-lg);
  outline: 3px solid var(--y);
  outline-offset: 8px;
}
.who__img { width: 100%; height: 100%; object-fit: cover; }

/* Cuadrado amarillo decorativo debajo-izq de la foto */
.who__media::before {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  background: var(--y);
  border-radius: 22px;
  bottom: -28px; left: -28px;
  z-index: 0;
  opacity: .9;
}

/* Columna derecha: 4 tarjetas amarillas */
.who__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who__card {
  background: var(--y);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.who__card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.who__card-ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: rgba(0,0,0,.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dk);
}
.who__card-ico svg { width: 22px; height: 22px; }

.who__card p {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dk);
  line-height: 1.5;
  margin: 0;
  padding-top: .2rem;
}

/* ──────────────────────────────────────────────────────────
   BENEFICIOS — sección clara con lista + imagen
   ────────────────────────────────────────────────────────── */
.benefits__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits__left { display: flex; flex-direction: column; gap: 1.5rem; }

.benefits__big-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dk);
  line-height: 1.2;
  margin: 0;
}

.benefits__sub {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

/* Lista de beneficios */
.ben-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ben-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ben-item:hover { transform: translateX(4px); box-shadow: var(--sh-md); }

.ben-item__ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--y);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dk);
}
.ben-item__ico svg { width: 22px; height: 22px; }

.ben-item__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--dk);
  margin-bottom: .25rem;
}
.ben-item__text {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Imagen derecha */
.benefits__media { position: relative; }
.benefits__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray2);
  box-shadow: var(--sh-lg);
  outline: 3px solid var(--y);
  outline-offset: 8px;
}
.benefits__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ──────────────────────────────────────────────────────────
   SERVICIOS
   ────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.srv-card {
  background: var(--y);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-md);
  transition: transform var(--ease), box-shadow var(--ease);
}
.srv-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.srv-card--feat {
  background: var(--y);
}

.srv-card__media {
  position: relative;
  overflow: hidden;
}
.srv-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.srv-card:hover .srv-card__media img { transform: scale(1.06); }

.srv-card__tag { display: none; }

.srv-card__body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--y);
}
.srv-card__title {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .55rem;
}
.srv-card__text {
  font-size: .87rem;
  color: var(--dk2);
  flex: 1;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.srv-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: .65rem 1.4rem;
  border-radius: var(--r-pill);
  background: var(--y-dk);
  font-size: .82rem;
  font-weight: 700;
  color: var(--dk);
  transition: background var(--ease), transform var(--ease);
}
.srv-card__link:hover { background: var(--dk); color: var(--y); transform: translateY(-2px); }

/* ──────────────────────────────────────────────────────────
   ESPECIALIZACIÓN — sección oscura, 2 columnas
   ────────────────────────────────────────────────────────── */
.spec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spec__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dk);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.spec__title::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  width: 60%; height: 2px;
  background: var(--y);
  transform: translateY(-50%) rotate(-3deg);
  opacity: .7;
}

.spec__list { display: grid; gap: 1.2rem; }
.spec__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .97rem;
  font-weight: 600;
  color: var(--dk);
}
.spec__ico {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--y);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-y);
}
.spec__ico svg { width: 22px; height: 22px; color: var(--dk); }

.spec__visual { position: relative; }
.spec__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray2);
  box-shadow: var(--sh-lg);
}
.spec__img { width: 100%; height: 100%; object-fit: cover; }

.spec__stat {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--y);
  color: var(--dk);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  box-shadow: var(--sh-y);
}
.spec__stat-n { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 800; }
.spec__stat-l { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* Rectángulo decorativo detrás de la imagen */
.spec__visual::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  background: var(--y);
  border-radius: 36px;
  top: -30px; right: -30px;
  z-index: -1;
  opacity: .5;
}
.spec__visual::before {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.06);
  border-radius: 24px;
  bottom: 60px; right: -20px;
  z-index: 3;
}

/* ──────────────────────────────────────────────────────────
   METODOLOGÍA — bloques alternados
   ────────────────────────────────────────────────────────── */
.method-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.method-split__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  object-fit: cover;
}
.method-split__copy { display: grid; gap: 2.5rem; }
.method-split__item {}

.method-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}
.method-block:last-child { margin-bottom: 0; }

.method-block--rev > *:first-child { order: 2; }
.method-block--rev > *:last-child  { order: 1; }

.method-block__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray2);
  box-shadow: var(--sh-lg);
  position: relative;
}
.method-block__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 3px rgba(230,200,71,.25);
}
.method-block__img { width: 100%; height: 100%; object-fit: cover; }

.method-block__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--dk);
  color: var(--y);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--sh-md);
}
.method-block__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dk);
  margin-bottom: .9rem;
  line-height: 1.12;
}
.method-block__text { color: var(--text); margin-bottom: 1.75rem; line-height: 1.78; }

/* ──────────────────────────────────────────────────────────
   PROCESO DE HUNTING — 4 cards
   ────────────────────────────────────────────────────────── */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.proc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray2);
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.proc-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: var(--y); }

.proc-card__num {
  position: absolute;
  top: .9rem; left: .9rem;
  z-index: 2;
  background: var(--y);
  color: var(--dk);
  border-radius: var(--r-sm);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: var(--sh-y);
}

.proc-card__media {
  aspect-ratio: 4/3;
  background: var(--gray);
  overflow: hidden;
}
.proc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.proc-card:hover .proc-card__media img { transform: scale(1.06); }

.proc-card__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dk);
  padding: 1rem 1.1rem .4rem;
  line-height: 1.3;
}
.proc-card__text {
  font-size: .84rem;
  color: var(--text);
  padding: 0 1.1rem 1.2rem;
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   MISIÓN, VISIÓN Y VALORES
   ────────────────────────────────────────────────────────── */
.mvv__big-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--dk);
  line-height: 1.1;
  margin-bottom: 2.8rem;
}

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

.mvv-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
  transition: transform var(--ease);
}
.mvv-card:hover { transform: translateY(-5px); }

.mvv-card__frame {
  position: relative;
  margin-bottom: 1.2rem;
}
.mvv-card__frame::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 3px solid var(--y);
  border-radius: var(--r-md);
  z-index: 0;
}
.mvv-card--feat .mvv-card__frame::after {
  background: var(--y);
  border: none;
  z-index: -1;
}

.mvv-card__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray2);
}
.mvv-card__media img { width: 100%; height: 100%; object-fit: cover; }

.mvv-values-list {
  display: grid;
  gap: .4rem;
  margin-top: .5rem;
}
.mvv-values-list li {
  font-size: .93rem;
  font-weight: 600;
  color: var(--dk);
}

.mvv-card__body { padding: 0 .25rem; }
.mvv-card__lbl {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--y-dk);
  margin-bottom: .4rem;
}
.mvv-card__text { font-size: .9rem; color: var(--text); line-height: 1.7; }

/* ──────────────────────────────────────────────────────────
   CLIENTES
   ────────────────────────────────────────────────────────── */
.clients__carousel {
  overflow: hidden;
  width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

.clients__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter var(--ease), opacity var(--ease);
}

.clients__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer { background: var(--gray); color: var(--dk); position: relative; overflow: hidden; width: 100%; }

/* CTA banner amarillo */
.footer-cta { background: linear-gradient(135deg, var(--y) 0%, var(--y-lt) 100%); padding: 4rem 0; }
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--dk);
  line-height: 1.15;
  max-width: 540px;
}
.footer-cta__sub { font-size: .95rem; color: rgba(27,27,27,.65); margin-top: .5rem; }
.footer-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* Grid principal del footer */
.footer-main { padding: 4.5rem 0 3rem; }
.footer-main__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand__logo { height: 60px; width: auto; object-fit: contain; margin-bottom: .75rem; }
.footer-brand__tag {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: .7rem;
}
.footer-brand__desc { font-size: .86rem; color: rgba(27,27,27,.55); line-height: 1.65; max-width: 290px; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .55rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(27,27,27,.08);
  color: rgba(27,27,27,.65);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer-social a:hover { background: var(--y); color: var(--dk); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col__hd {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .7rem;
}
.footer-col__hd::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--y);
  border-radius: 2px;
}

.footer-col__list { display: grid; gap: .55rem; }
.footer-col__list a { font-size: .86rem; color: rgba(27,27,27,.55); transition: color var(--ease); }
.footer-col__list a:hover { color: var(--dk); }

.footer-contact-list { display: grid; gap: .75rem; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .84rem;
  color: rgba(27,27,27,.6);
  line-height: 1.5;
}
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--y); margin-top: .15rem; }

/* Formulario de contacto */
.contact-form { display: grid; gap: .75rem; }
.contact-form__row { display: flex; }
.contact-form__field {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .86rem;
  transition: border-color var(--ease), background var(--ease);
  resize: none;
  outline: none;
}
.contact-form__field::placeholder { color: rgba(255,255,255,.32); }
.contact-form__field:focus { border-color: rgba(230,200,71,.5); background: rgba(255,255,255,.08); }
.contact-form__textarea { min-height: 76px; resize: vertical; }

/* Footer bottom */
.footer-bottom { border-top: 1px solid rgba(27,27,27,.1); padding: 1.2rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom__inner p { font-size: .78rem; color: rgba(27,27,27,.4); }
.footer-bottom__privacy { font-size: .78rem; color: rgba(27,27,27,.4); transition: color var(--ease); }
.footer-bottom__privacy:hover { color: var(--dk); }

/* ──────────────────────────────────────────────────────────
   WHATSAPP FLOTANTE
   ────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 600;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.42);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.42); }
  50%      { box-shadow: 0 12px 36px rgba(37,211,102,.58); }
}

/* ──────────────────────────────────────────────────────────
   ANIMACIONES DE SCROLL
   ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.vis, .reveal-left.vis, .reveal-right.vis {
  opacity: 1; transform: none;
}

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__container  { gap: 2.5rem; }
  .who__grid        { gap: 2.5rem; }
  .benefits__layout { gap: 2.5rem; }
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .process__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-main__grid{ grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero .deco--sq-y-lg-2 { display: none; }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — 768px
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --sp: 4rem 0; }

  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 3.5rem 0 4.5rem; }
  .hero__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__title-main { font-size: clamp(4rem, 18vw, 6.5rem); }
  .hero__visual { max-width: 420px; margin-inline: auto; }
  .hero__chip   { right: .5rem; top: .5rem; }

  .who__grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .who__img-wrap    { aspect-ratio: 4/3; }
  .who__media::before { display: none; }
  .benefits__layout { grid-template-columns: 1fr; }
  .benefits__media  { display: none; }

  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .spec__grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .spec__visual::before,.spec__visual::after { display: none; }
  .spec__stat       { position: static; flex-direction: row; gap: .5rem; margin-top: 1rem; }

  .method-block         { grid-template-columns: 1fr; gap: 2rem; }
  .method-block--rev > *:first-child { order: unset; }
  .method-block--rev > *:last-child  { order: unset; }

  .mvv__grid        { grid-template-columns: 1fr; }
  .clients__carousel { width: 100%; }
  .footer-main__grid{ grid-template-columns: 1fr; gap: 2rem; }
  .footer-cta__inner{ flex-direction: column; text-align: center; }
  .footer-cta__actions{ justify-content: center; }
  .footer-bottom__inner{ flex-direction: column; text-align: center; }

  /* Ocultar decos complejas en móvil */
  .hero .deco--sq-y-lg-1,
  .hero .deco--sq-dk-1,
  .hero .deco--sq-dk-2,
  .hero .deco--ring-sm,
  .hero .deco--frame-h  { display: none; }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — 480px
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__actions    { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .services__grid   { grid-template-columns: 1fr; }
  .process__grid    { grid-template-columns: 1fr; }
  .footer-cta__actions .btn { width: 100%; }
}

/* ──────────────────────────────────────────────────────────
   REDUCCIÓN DE MOVIMIENTO
   ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal,.reveal-left,.reveal-right { opacity:1; transform:none; }
}
