/* ============================================================
   FARO · ESTUDIO DIGITAL — Versión Plus
   Multi-página, limpia y directa. Inicio corto tipo scroll.
   Paleta de Faro: hueso, azul tinta y ámbar. Mobile-first.
   ============================================================ */

/* ------------------------------------------------------------
   1. VARIABLES
   ------------------------------------------------------------ */
:root {
  --paper:      #F4F0E6;   /* hueso (marca) */
  --paper-2:    #EBE4D5;   /* arena */
  --white:      #FFFFFF;
  --ink:        #0C1E2E;   /* azul profundo (marca) */
  --ink-soft:   #2E3D4B;
  --ink-mute:   #5F6B78;
  --line:       rgba(12, 30, 46, 0.12);

  --ambar:      #F2A341;   /* ámbar faro: rellenos y filetes */
  --ambar-ink:  #8F560C;   /* ámbar oscuro: texto sobre papel (AA) */
  --ambar-soft: rgba(242, 163, 65, 0.16);
  --verde:      #1FA855;   /* WhatsApp */
  --verde-oscuro: #17843F;

  --f-display: "Plus Jakarta Sans", "Inter", -apple-system, "Segoe UI", sans-serif;
  --f-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --ancho: 72rem;
  --medida: 64ch;
  --radio: 1.1rem;
  --seccion: clamp(3.5rem, 8vw, 6rem);
  --sombra: 0 10px 30px -18px rgba(12, 30, 46, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; overflow-x: clip; }

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
strong { font-weight: 600; }

:focus-visible { outline: 2px solid var(--ambar-ink); outline-offset: 3px; }

.contenedor { width: min(var(--ancho), 100% - 2rem); margin-inline: auto; }
.contenedor--lectura { width: min(var(--medida), 100% - 2rem); margin-inline: auto; }

.solo-lector {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { text-wrap: pretty; }

.kicker {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ambar-ink);
}
.kicker::before {
  content: ""; display: inline-block; width: 1.4rem; height: 3px;
  background: var(--ambar); vertical-align: middle; margin-right: 0.6rem; border-radius: 2px;
}

.mute { color: var(--ink-mute); }
.enlace { color: var(--ambar-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.enlace:hover { color: var(--ink); }

/* Transición entre páginas (View Transitions, sin librería) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 0.4s;
  animation-timing-function: var(--ease);
}
::view-transition-old(root) { animation-name: salida; }
::view-transition-new(root) { animation-name: entrada; }
@keyframes salida  { to   { opacity: 0; transform: translateY(-6px); } }
@keyframes entrada { from { opacity: 0; transform: translateY(6px); } }

/* ------------------------------------------------------------
   3. BOTONES
   ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3rem; padding: 0.7rem 1.4rem;
  font-family: var(--f-display); font-weight: 700; font-size: 0.98rem;
  text-decoration: none; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg { width: 1.25rem; height: 1.25rem; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra); }
.btn--wa { background: var(--verde); border-color: var(--verde); color: #fff; }
.btn--wa:hover { background: var(--verde-oscuro); border-color: var(--verde-oscuro); }
.btn--ambar { background: var(--ambar); border-color: var(--ambar); color: var(--ink); }
.btn--ambar:hover { background: #F6B45C; border-color: #F6B45C; }
.btn--linea { background: transparent; color: var(--ink); }
.btn--linea:hover { background: var(--ink); color: var(--paper); }
.btn--grande { min-height: 3.5rem; padding: 0.9rem 1.9rem; font-size: 1.08rem; }
.btn--chico  { min-height: 2.5rem; padding: 0.4rem 1rem; font-size: 0.9rem; }
.btn--bloque { width: 100%; }

/* ------------------------------------------------------------
   4. CABECERA
   ------------------------------------------------------------ */
.cabecera {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 230, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 4.25rem;
}
.cabecera__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 100%; }

.logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo__texto {
  font-family: var(--f-display); font-weight: 800; font-size: 1.45rem; letter-spacing: -0.03em;
  display: inline-flex; align-items: baseline;
}
.logo__o { position: relative; display: inline-block; }
.logo__haz {
  position: absolute; left: 88%; top: 10%; width: 1.1em; height: 0.8em;
  color: var(--ambar); pointer-events: none;
}
.logo__sub { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.3rem; }

.nav { display: none; }
.nav ul { display: flex; gap: 1.6rem; }
.nav a {
  font-family: var(--f-display); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; color: var(--ink-soft); padding: 0.4rem 0;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-color: var(--ambar); }

.cabecera__acciones { display: flex; align-items: center; gap: 0.6rem; }
.cabecera__wa { display: none; }

.hamb {
  width: 2.75rem; height: 2.75rem; border-radius: 0.7rem;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--line); background: var(--white);
}
.hamb span { width: 1.1rem; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.hamb[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamb[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamb[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil (panel bajo la cabecera) */
.menu-movil {
  position: fixed; inset: 4.25rem 0 auto 0; z-index: 49;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 1.4rem; display: none;
  box-shadow: 0 20px 40px -24px rgba(12, 30, 46, 0.4);
}
.menu-movil.abierto { display: block; }
.menu-movil.is-anim { animation: menuEntra 0.3s var(--ease); }
@keyframes menuEntra { from { opacity: 0; transform: translateY(-8px); } }
.menu-movil ul { display: grid; gap: 0.2rem; margin-bottom: 1rem; }
.menu-movil a:not(.btn) {
  display: block; padding: 0.8rem 0.6rem; border-radius: 0.6rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; text-decoration: none;
}
.menu-movil a[aria-current="page"] { background: var(--ambar-soft); color: var(--ambar-ink); }

@media (min-width: 62rem) {
  .nav { display: block; }
  .hamb, .menu-movil { display: none !important; }
  .cabecera__wa { display: inline-flex; }
}

/* ------------------------------------------------------------
   5. SECCIONES GENERALES
   ------------------------------------------------------------ */
.seccion { padding-block: var(--seccion); }
.seccion--blanca { background: var(--white); }
.seccion--tinta { background: var(--ink); color: var(--paper); }
.seccion--tinta .kicker { color: var(--ambar); }
.seccion--tinta .mute { color: rgba(244, 240, 230, 0.7); }
.seccion--compacta { padding-block: clamp(2.5rem, 6vw, 4rem); }

.cab { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.cab .kicker { margin-bottom: 0.9rem; }
.cab h1, .cab h2 { margin-bottom: 0.9rem; }
.cab p { font-size: 1.1rem; color: var(--ink-soft); }
.cab--centro { margin-inline: auto; text-align: center; }

.cab--pagina { padding-top: clamp(2.5rem, 6vw, 4.5rem); }

/* ------------------------------------------------------------
   6. INICIO — hero corto
   ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem); }
.hero::before {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 60vw; height: 60vw; max-width: 42rem; max-height: 42rem;
  background: radial-gradient(closest-side, rgba(242, 163, 65, 0.28), rgba(242, 163, 65, 0));
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
.hero h1 { margin: 0.9rem 0 1rem; }
.hero h1 em { font-style: normal; color: var(--ambar-ink); }
.hero__sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.6rem; }
.hero__botones { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__nota { margin-top: 1rem; font-size: 0.92rem; color: var(--ink-mute); }

/* Marco tipo navegador con foto de Mazatlán */
.ventana {
  border-radius: var(--radio); overflow: hidden; background: var(--white);
  box-shadow: 0 30px 60px -30px rgba(12, 30, 46, 0.45); border: 1px solid var(--line);
}
.ventana__barra { display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--line); }
.ventana__barra i { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--paper-2); }
.ventana__barra i:first-child { background: var(--ambar); }
.ventana__url { margin-left: 0.5rem; flex: 1; height: 1.3rem; border-radius: 999px; background: var(--paper); font-size: 0.7rem; color: var(--ink-mute); display: flex; align-items: center; padding-inline: 0.7rem; }
.ventana img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

@media (min-width: 56rem) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
}

/* ------------------------------------------------------------
   7. INICIO — tres líneas «cómo lo hacemos»
   ------------------------------------------------------------ */
.tres { display: grid; gap: 1rem; }
.linea {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radio);
  padding: 1.3rem 1.4rem;
}
.linea__icono {
  flex: none; width: 2.75rem; height: 2.75rem; border-radius: 0.8rem;
  background: var(--ambar-soft); color: var(--ambar-ink);
  display: grid; place-items: center;
}
.linea__icono svg { width: 1.4rem; height: 1.4rem; }
.linea p { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; line-height: 1.3; letter-spacing: -0.01em; }
@media (min-width: 48rem) { .tres { grid-template-columns: repeat(3, 1fr); } .linea { flex-direction: column; gap: 0.9rem; } }

/* ------------------------------------------------------------
   8. INICIO — tres pasos
   ------------------------------------------------------------ */
.pasos { display: grid; gap: 1rem; counter-reset: paso; }
.paso {
  position: relative; padding: 1.6rem 1.5rem 1.5rem;
  background: rgba(244, 240, 230, 0.06); border: 1px solid rgba(244, 240, 230, 0.16); border-radius: var(--radio);
}
.paso__num {
  font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--ambar); margin-bottom: 0.8rem;
}
.paso h3 { margin-bottom: 0.4rem; }
.paso p { color: rgba(244, 240, 230, 0.78); font-size: 1rem; }
@media (min-width: 48rem) { .pasos { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

/* ------------------------------------------------------------
   9. PRECIOS (tarjetas cortas en Inicio y planes en Servicios)
   ------------------------------------------------------------ */
.planes { display: grid; gap: 1.1rem; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radio);
  padding: 1.7rem 1.5rem 1.5rem;
}
.plan--destacado { border: 2px solid var(--ambar); box-shadow: var(--sombra); }
.plan__etiqueta {
  align-self: flex-start; font-family: var(--f-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ambar-ink);
  background: var(--ambar-soft); padding: 0.3rem 0.65rem; border-radius: 999px;
}
.plan h3, .plan h2 { font-size: 1.35rem; margin-top: 0.4rem; }
.plan__precio { font-family: var(--f-display); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.03em; line-height: 1.1; }
.plan__precio small { font-size: 0.85rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.plan__mensual { font-size: 0.98rem; color: var(--ink-soft); }
.plan__mensual strong { color: var(--ink); }
.plan__para { color: var(--ink-soft); font-size: 0.98rem; margin-top: 0.3rem; }
.plan ul { display: grid; gap: 0.5rem; margin-block: 0.9rem 0.4rem; font-size: 0.98rem; }
.plan li { display: flex; gap: 0.6rem; align-items: flex-start; }
.plan li::before {
  content: ""; flex: none; width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; border-radius: 50%;
  background: var(--ambar-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3L15 7' fill='none' stroke='%238F560C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/70% no-repeat;
}
.plan .btn { margin-top: auto; }
.plan__mas { font-size: 0.92rem; text-align: center; margin-top: 0.6rem; }
@media (min-width: 52rem) { .planes { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } .plan--destacado { transform: translateY(-0.4rem); } }

.planes__nota { max-width: 60ch; margin: 1.8rem auto 0; text-align: center; color: var(--ink-mute); font-size: 0.95rem; }

/* ------------------------------------------------------------
   10. CTA FINAL
   ------------------------------------------------------------ */
.cta { text-align: center; }
.cta h2 { margin: 0.9rem auto 0.8rem; max-width: 22ch; }
.cta p { max-width: 42ch; margin-inline: auto; color: var(--ink-soft); }
.cta .btn { margin-top: 1.6rem; }
.cta__micro { margin-top: 1rem; font-size: 0.9rem; color: var(--ink-mute); }
.seccion--tinta.cta p { color: rgba(244, 240, 230, 0.78); }
.seccion--tinta .cta__micro { color: rgba(244, 240, 230, 0.6); }

/* ------------------------------------------------------------
   11. SERVICIOS — detalle y FAQ
   ------------------------------------------------------------ */
.detalle { display: grid; gap: 1.5rem; }
.detalle__bloque {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radio); padding: 1.8rem 1.6rem;
}
.detalle__bloque h3 { margin-bottom: 0.6rem; }
.detalle__bloque > p { color: var(--ink-soft); }
.detalle__lista { display: grid; gap: 0.6rem; margin-top: 1rem; }
.detalle__lista li { display: flex; gap: 0.7rem; align-items: flex-start; }
.detalle__lista li::before {
  content: ""; flex: none; width: 0.55rem; height: 0.55rem; margin-top: 0.55rem; border-radius: 50%; background: var(--ambar);
}
.detalle__lista strong { display: block; }
.detalle__lista span { color: var(--ink-soft); font-size: 0.97rem; }
@media (min-width: 56rem) { .detalle { grid-template-columns: 1fr 1fr; } .detalle__bloque--ancho { grid-column: 1 / -1; } }

.preguntas { display: grid; gap: 0.7rem; }
.preguntas details {
  background: var(--white); border: 1px solid var(--line); border-radius: 0.9rem; padding: 0 1.3rem;
  transition: border-color 0.2s;
}
.preguntas details[open] { border-color: var(--ambar); }
.preguntas summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 0; font-family: var(--f-display); font-weight: 700; font-size: 1.05rem;
}
.preguntas summary::-webkit-details-marker { display: none; }
.preguntas summary::after {
  content: "+"; flex: none; width: 1.8rem; height: 1.8rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--ambar-soft); color: var(--ambar-ink); font-weight: 700; transition: transform 0.25s var(--ease);
}
.preguntas details[open] summary::after { transform: rotate(45deg); }
.preguntas p { padding: 0 0 1.2rem; color: var(--ink-soft); }

/* ------------------------------------------------------------
   12. TRABAJO — portafolio
   ------------------------------------------------------------ */
.filtros { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filtro {
  font-family: var(--f-display); font-weight: 600; font-size: 0.9rem; padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filtro:hover { border-color: var(--ink); }
.filtro.activo { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.archivo { display: grid; gap: 1.5rem; }
.entrada {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radio); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.entrada:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.entrada.oculto { display: none; }
.entrada__media img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.entrada__cuerpo { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.entrada__cuerpo h2 { font-size: 1.3rem; }
.entrada__cuerpo h2 a { text-decoration: none; }
.entrada__cuerpo > p { color: var(--ink-soft); font-size: 0.98rem; }
.entrada__pie { margin-top: auto; padding-top: 0.8rem; display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--ink-mute); }
@media (min-width: 44rem) { .archivo { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .archivo { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------
   13. NOSOTROS
   ------------------------------------------------------------ */
.foto-ancha { border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra); }
.foto-ancha img { aspect-ratio: 21 / 9; object-fit: cover; width: 100%; }
.pie-foto { margin-top: 0.6rem; font-size: 0.88rem; color: var(--ink-mute); }

.lectura { font-size: 1.1rem; color: var(--ink-soft); }
.lectura p + p { margin-top: 1.1rem; }
.lectura h2 { color: var(--ink); margin: 2.4rem 0 1rem; }
.lectura strong { color: var(--ink); }

.perfiles { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.perfil { display: grid; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radio); padding: 1.5rem; }
.perfil__foto { width: 6rem; height: 6rem; border-radius: 1rem; object-fit: cover; }
.perfil h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.perfil .rol { color: var(--ambar-ink); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.7rem; }
.perfil p { color: var(--ink-soft); font-size: 1rem; }
.perfil .meta { margin-top: 0.8rem; font-size: 0.88rem; color: var(--ink-mute); }
@media (min-width: 48rem) { .perfiles { grid-template-columns: 1fr 1fr; } }

.valores { display: grid; gap: 1rem; margin-top: 1.2rem; }
.valor { background: var(--white); border: 1px solid var(--line); border-radius: var(--radio); padding: 1.3rem 1.4rem; }
.valor h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.valor p { color: var(--ink-soft); font-size: 0.98rem; }
@media (min-width: 48rem) { .valores { grid-template-columns: 1fr 1fr; } }

.cita {
  margin: 2.4rem 0; padding: 1.4rem 1.6rem; border-left: 4px solid var(--ambar);
  background: var(--white); border-radius: 0 var(--radio) var(--radio) 0;
  font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; line-height: 1.4; color: var(--ink);
}

/* ------------------------------------------------------------
   14. CONTACTO
   ------------------------------------------------------------ */
.contacto__grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 58rem) { .contacto__grid { grid-template-columns: 1fr 1.15fr; gap: 3rem; } }

.datos { display: grid; gap: 0.9rem; margin-top: 1.8rem; }
.dato {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radio); padding: 1.1rem 1.2rem;
}
.dato__icono { flex: none; width: 2.5rem; height: 2.5rem; border-radius: 0.7rem; background: var(--ambar-soft); color: var(--ambar-ink); display: grid; place-items: center; }
.dato__icono svg { width: 1.25rem; height: 1.25rem; }
.dato h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.25rem; }
.dato a { font-weight: 600; text-decoration: none; }
.dato a:hover { color: var(--ambar-ink); }
.dato p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 0.2rem; }

.formulario {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radio); padding: 1.8rem 1.6rem;
  display: grid; gap: 1rem;
}
.formulario h2 { font-size: 1.5rem; }
.formulario .ayuda { color: var(--ink-mute); font-size: 0.93rem; }
.campo { display: grid; gap: 0.4rem; }
.campo label { font-family: var(--f-display); font-weight: 600; font-size: 0.93rem; }
.campo input, .campo select, .campo textarea {
  width: 100%; padding: 0.8rem 0.95rem; border: 1px solid rgba(12, 30, 46, 0.22); border-radius: 0.7rem;
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s;
}
.campo textarea { min-height: 6.5rem; resize: vertical; }
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--ambar); box-shadow: 0 0 0 3px var(--ambar-soft);
}
.campo--doble { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .campo--doble { grid-template-columns: 1fr 1fr; } }
.formulario__vista {
  background: var(--paper); border: 1px dashed rgba(12, 30, 46, 0.25); border-radius: 0.8rem; padding: 1rem 1.1rem;
  font-size: 0.95rem; color: var(--ink-soft); white-space: pre-wrap; min-height: 4rem;
}

/* ------------------------------------------------------------
   15. PIE
   ------------------------------------------------------------ */
.pie { background: var(--ink); color: var(--paper); padding-block: 3.5rem 1.8rem; }
.pie__grid { display: grid; gap: 2rem; }
.pie__col h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ambar); margin-bottom: 0.9rem; }
.pie__col a:not(.logo) { display: block; text-decoration: none; color: rgba(244, 240, 230, 0.82); padding: 0.25rem 0; }
.pie__col a:not(.logo):hover { color: var(--ambar); }
.pie .logo__sub { color: rgba(244, 240, 230, 0.6); }
.pie__desc { margin-top: 0.9rem; max-width: 30ch; color: rgba(244, 240, 230, 0.7); font-size: 0.95rem; }
.pie__legal {
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(244, 240, 230, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  font-size: 0.85rem; color: rgba(244, 240, 230, 0.6);
}
@media (min-width: 48rem) { .pie__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ------------------------------------------------------------
   16. REVELADO Y MOVIMIENTO
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .entrada:hover { transform: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
