/* ===== Variables y reset ===== */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #777777;
  --soft: #f4f4f5;
  --line: #e6e6e6;
  --maxw: 1100px;

  /* Estilo suave (inspirado en Once UI / Magic Portfolio) */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --border-soft: 1px solid #e6e6e6;
  --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-soft-lg: 0 14px 44px rgba(0, 0, 0, 0.10);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ===== Patrón ajedrez (sin imágenes) ===== */
.checker {
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, var(--black) 25%, transparent 25%),
    linear-gradient(-45deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--black) 75%),
    linear-gradient(-45deg, transparent 75%, var(--black) 75%);
  background-size: 64px 64px;
  background-position: 0 0, 0 32px, 32px -32px, -32px 0;
}

.checker-soft {
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, #f2f2f2 25%, transparent 25%),
    linear-gradient(-45deg, #f2f2f2 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f2f2f2 75%),
    linear-gradient(-45deg, transparent 75%, #f2f2f2 75%);
  background-size: 48px 48px;
  background-position: 0 0, 0 24px, 24px -24px, -24px 0;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: var(--border-soft);
}

.nav__logo {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--black);
  user-select: none;
}

/* Contenedor tipo "pill" */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 4px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.nav__links a {
  position: relative;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  color: #555;
  white-space: nowrap;
  transition: color 0.3s var(--ease), background-color 0.45s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active {
  background: var(--black);
  color: var(--white);
}

/* ===== Hero ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 960px;
  box-shadow: var(--shadow-soft-lg);
}

.hero__text { text-align: left; }

/* Foto: recorte transparente, sin recuadro, alineado al fondo */
.hero__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.hero__photo img {
  width: 100%;
  max-width: 340px;
  max-height: 540px;
  height: auto;
  object-fit: contain;
  display: block;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo img { animation: none; }
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.hero__name {
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* Entrada "desplegada" del nombre (revela las letras al cargar) */
.hero__name .reveal { display: block; overflow: hidden; }
.hero__name .reveal__inner {
  display: inline-block;
  animation: nameUnfold 0.9s var(--ease) both;
}
.hero__name .reveal:nth-child(2) .reveal__inner { animation-delay: 0.14s; }

@keyframes nameUnfold {
  from { clip-path: inset(0 100% 0 0); transform: translateY(0.2em); opacity: 0; }
  to   { clip-path: inset(0 0 0 0);    transform: translateY(0);     opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__name .reveal__inner { animation: none; }
}

.hero__slogan {
  margin: 24px 0 14px;
  max-width: 520px;
  font-size: 1.15rem;
  color: #333;
}

.hero__signature {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 28px;
}

/* ===== Botón ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  padding: 13px 30px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); opacity: 0.92; }

/* ===== Secciones ===== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 24px;
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.section__title {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

/* Encabezado con recuadro blanco (Contacto, sobre el ajedrez) */
.section__head--boxed {
  background: var(--white);
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
}

/* ===== Lo que hago ===== */
.hago__bio {
  font-size: 1.3rem;
  line-height: 1.55;
  max-width: 720px;
  margin-bottom: 44px;
}
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.cap {
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-lg); }
.cap--feature {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.cap__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
}
.cap__icon svg { width: 100%; height: 100%; display: block; }
.cap__flag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cap__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cap__desc { font-size: 0.95rem; color: inherit; opacity: 0.85; }
.cap:not(.cap--feature) .cap__desc { color: #444; opacity: 1; }

/* ===== Tira de herramientas ===== */
.toolstrip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tool {
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.82rem;
  background: var(--white);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tool:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.hago__industries { color: var(--gray); font-size: 0.95rem; }
.hago__industries strong { color: var(--black); }

/* ===== Carrusel de logros (manual) ===== */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.carousel__track > .logro {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  background: var(--white);
  color: var(--black);
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.carousel__arrow:hover { background: var(--black); color: var(--white); transform: translateY(-50%) scale(1.06); }
.carousel__arrow--prev { left: -10px; }
.carousel__arrow--next { right: -10px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  background: var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease);
}
.carousel__dot.is-active { background: var(--black); width: 26px; }

/* ===== Logros (tarjeta reutilizable) ===== */
.logro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  padding: 40px 4px;
}
.logro--reverse .logro__info { order: 2; }
.logro--reverse .logro__media { order: 1; }

.logro__kicker {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 10px;
}
.logro__hero {
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.logro__unit {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 10px 0 18px;
}
.logro__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 540px;
}

.logro__strategy {
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--soft);
  max-width: 540px;
}
.logro__strategy-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.logro__strategy p { font-size: 0.95rem; line-height: 1.6; color: #222; }

.logro__stats {
  display: flex;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 22px 0;
  max-width: 540px;
  overflow: hidden;
}
.logro__stat {
  flex: 1;
  text-align: center;
  padding: 16px 6px;
}
.logro__stat + .logro__stat { border-left: 1px solid var(--line); }
.logro__stat-num {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logro__stat-cap {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-top: 8px;
  text-transform: uppercase;
}

.logro__tags { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge--solid { background: var(--black); color: var(--white); border-color: var(--black); }

/* ===== Marco de embeds (video Reyco) ===== */
.logro__media { display: flex; flex-direction: column; align-items: center; }
.embed-frame {
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  padding: 8px;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
}
.embed-frame .tiktok-embed { margin: 0 !important; }
.embed-frame iframe { display: block; width: 100%; border: none; border-radius: var(--radius); }
.embed-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--black);
}
.embed-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.5;
}
.embed-note a { text-decoration: underline; color: var(--black); }

/* ===== Cómo trabajo ===== */
.block__title {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin: 44px 0 6px;
}
.block__eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 44px 0 0;
}
.block__title--tight { margin-top: 4px; }
.block__lead { color: #444; max-width: 640px; margin-bottom: 24px; }

/* ===== Galería "Contenido de vídeo" (embeds en vivo, 3+3) ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
/* Celda que centra el embed en vivo de TikTok */
.vembed { display: flex; justify-content: center; }
.vembed .tiktok-embed { margin: 0 !important; }

/* ===== Operación ===== */
.ops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ops__card {
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.ops__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.chatbubble { background: var(--soft); border-radius: var(--radius); padding: 18px; }
.chatbubble__head { font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.chatbubble__msg {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.chatbubble__meta { font-size: 0.72rem; color: var(--gray); margin-top: 8px; }

/* Panel de keywords de Meta (interpretación del flujo de automatización) */
.autokeys { display: flex; flex-direction: column; gap: 14px; }
.autokeys__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.autokeys__title { font-size: 0.92rem; font-weight: 600; }
.autokeys__ch {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.autokeys__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.autokey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: var(--soft);
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.autokeys.is-in .autokey { opacity: 1; transform: none; }
.autokeys.is-in .autokey:nth-child(2) { transition-delay: 0.06s; }
.autokeys.is-in .autokey:nth-child(3) { transition-delay: 0.12s; }
.autokeys.is-in .autokey:nth-child(4) { transition-delay: 0.18s; }
.autokeys.is-in .autokey:nth-child(5) { transition-delay: 0.24s; }
.autokeys.is-in .autokey:nth-child(6) { transition-delay: 0.30s; }
.autokey__kw { font-size: 0.9rem; font-weight: 500; }

/* Toggle estilo iOS en B&N */
.switch {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: #d7d7d9;
  transition: background 0.4s var(--ease);
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.4s var(--ease);
}
.autokeys.is-in .switch { background: var(--black); }
.autokeys.is-in .switch::after { transform: translateX(16px); }
.autokeys__foot { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* Marco de captura (placeholder con proporción fija) */
.shot {
  position: relative;
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: var(--soft);
  overflow: hidden;
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot figcaption {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  text-align: center; color: var(--gray);
  font-size: 0.8rem; line-height: 1.4; padding: 12px;
}
.shot.is-empty figcaption { display: flex; }

/* ===== Caso SEO (Sandy) ===== */
.seocase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft-lg);
  padding: 40px;
  margin-top: 24px;
}
.seocase__num {
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.seocase__unit { font-size: 1.05rem; color: #333; margin-bottom: 18px; }
.seocase__text { font-size: 0.95rem; line-height: 1.65; color: #333; margin-bottom: 22px; }

.seocase__chart-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bar__label { width: 78px; font-size: 0.85rem; flex-shrink: 0; }
.bar__track { flex: 1; height: 12px; background: var(--soft); border-radius: var(--radius-pill); overflow: hidden; }
.bar__fill { height: 100%; background: var(--black); width: 0; border-radius: var(--radius-pill); transition: width 1.1s var(--ease); }
.bar__pct { width: 52px; text-align: right; font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }
.seocase__note {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ===== Ilustración (galería arrastrable) ===== */
.ilustra__lead {
  font-size: 1.15rem;
  color: #333;
  max-width: 640px;
  margin-bottom: 28px;
}
.gallery-drag {
  position: relative;
  height: 460px;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--soft);
  overflow: hidden;
  touch-action: none;
}
.gallery-drag__item {
  position: absolute;
  width: 180px;
  height: 230px;
  margin: 0;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: grab;
  user-select: none;
  overflow: hidden;
  z-index: calc(var(--i) + 1);
  transform: rotate(var(--rot, 0deg));
  transition: box-shadow 0.3s var(--ease);
}
/* Dispersión inicial tipo pila (2 filas). El JS lee --rot para preservarla al arrastrar. */
.gallery-drag__item:nth-child(1) { left: 3%;  top: 5%;  --rot: -6deg; }
.gallery-drag__item:nth-child(2) { left: 26%; top: 7%;  --rot: 4deg; }
.gallery-drag__item:nth-child(3) { left: 49%; top: 4%;  --rot: -3deg; }
.gallery-drag__item:nth-child(4) { left: 72%; top: 8%;  --rot: 5deg; }
.gallery-drag__item:nth-child(5) { left: 12%; top: 42%; --rot: -5deg; }
.gallery-drag__item:nth-child(6) { left: 38%; top: 44%; --rot: 3deg; }
.gallery-drag__item:nth-child(7) { left: 64%; top: 41%; --rot: 6deg; }
.gallery-drag__item.is-dragging { cursor: grabbing; box-shadow: var(--shadow-soft-lg); }
.gallery-drag__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.gallery-drag__item figcaption {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  text-align: center; color: var(--gray);
  font-size: 0.8rem; padding: 10px;
}
.gallery-drag__item.is-empty figcaption { display: flex; }
.gallery-drag__item--gif::after {
  content: "GIF";
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(0,0,0,0.78);
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.ilustra__hint {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
}
.ilustra__cta { text-align: center; margin-top: 24px; }

/* ===== Contacto ===== */
.contact {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 52px 36px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft-lg);
}
.contact__lead {
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact__links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.contact__link {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 13px 32px;
  border: 1px solid var(--black);
  border-radius: var(--radius-pill);
  background: var(--black);
  color: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s ease;
}
.contact__link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); opacity: 0.92; }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .logro, .seocase, .ops { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .logro--reverse .logro__info { order: 1; }
  .logro--reverse .logro__media { order: 2; }
  .logro__media { align-items: flex-start; }
  .caps { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 8px; }
  .hero__text { text-align: center; }
  .hero__photo { order: -1; }
  .hero__photo img { max-height: 360px; }
  .hero__slogan { margin-left: auto; margin-right: auto; }
}
@media (max-width: 620px) {
  .nav__links { gap: 2px; font-size: 0.78rem; padding: 3px; }
  .nav__links a { padding: 6px 10px; }
  .hero__inner { padding: 32px 24px; }
  .checker {
    background-size: 44px 44px;
    background-position: 0 0, 0 22px, 22px -22px, -22px 0;
  }
  .hago__bio { font-size: 1.1rem; }
  .carousel__arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .carousel__arrow--prev { left: 0; }
  .carousel__arrow--next { right: 0; }
  .gallery-drag { height: 380px; }
  .gallery-drag__item { width: 130px; height: 168px; }
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .nav__links { display: none; }
  .logro__stats { flex-direction: column; }
  .logro__stat + .logro__stat { border-left: none; border-top: 1px solid var(--line); }
}
