/* =====================================================================
   AÚLLA · Escuela Bosque — Sistema de diseño
   Basado en el Documento Maestro del cliente. Móvil primero.
   Fuentes reales de aulla.es: Quicksand (marca/títulos) · ABeeZee (cuerpo).
   Todo el texto en verde bosque #1E3A27. Cortes rectos, sin ondas ni curvas.
   ===================================================================== */

:root {
  /* Paleta principal (exacta del documento) */
  --blanco: #FFFFFF;
  --crema: #F5F2EB;
  --blanco-calido: #F8F6F1;
  --verde-bosque: #1E3A27;   /* texto y marca */
  --lima: #C2D541;           /* divisores y acentos discretos */
  --salvia: #E5EBDD;         /* fondo "Aúlla, entre todos" */

  /* Fuentes existentes en la web de Aúlla */
  --fuente-marca-sans: "Quicksand", system-ui, sans-serif;
  --fuente-titulos-aulla: "Quicksand", system-ui, sans-serif;
  --fuente-cuerpo-aulla: "ABeeZee", system-ui, sans-serif;

  --ancho-texto: 380px;      /* ancho máximo de lectura en columnas centradas */
  --ancho-contenido: 1120px; /* contenedor de escritorio */
}

/* ---------- Reset suave ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--fuente-cuerpo-aulla);
  color: var(--verde-bosque);
  background: var(--blanco);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; font-family: var(--fuente-titulos-aulla); line-height: 1.2; }
p { margin: 0; }
::selection { background: var(--lima); color: var(--verde-bosque); }

/* ---------- Contenedores y ritmo ---------- */
.contenedor { width: 100%; max-width: var(--ancho-contenido); margin-inline: auto; padding-inline: 20px; }
.centrado { text-align: center; }
.medida { max-width: var(--ancho-texto); margin-inline: auto; }

/* Cada sección hace un corte recto (sin bordes redondeados ni ondas) */
.seccion { position: relative; }
.bg-blanco { background: var(--blanco); }
.bg-crema  { background: var(--crema); }
.bg-salvia { background: var(--salvia); }
.bg-neutro { background: var(--blanco-calido); }

/* Divisor lima entre contenidos (50% ancho, centrado) */
.divisor {
  width: 50%;
  height: 1px;
  background: var(--lima);
  border: 0;
  margin: 40px auto;
}

/* =====================================================================
   1 · CABECERA
   ===================================================================== */
.cabecera {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.1) blur(6px);
  min-height: 92px;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(30,58,39,.08);
}
.cabecera__inner {
  width: 100%; max-width: var(--ancho-contenido); margin-inline: auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.marca { display: inline-flex; align-items: center; gap: 11px; }
.marca__icono { width: 36px; height: 36px; }
.marca__nombre {
  font-family: var(--fuente-marca-sans);
  font-weight: 700; font-size: 30px; letter-spacing: .005em;
  color: var(--verde-bosque); line-height: 1;
}
.nav-principal { display: flex; align-items: center; gap: 26px; }
.nav-principal a {
  font-family: var(--fuente-marca-sans);
  font-size: 16px; font-weight: 500; color: var(--verde-bosque);
  letter-spacing: .005em; padding: 6px 0; position: relative;
}
.nav-principal a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--verde-bosque); transition: width .3s ease;
}
.nav-principal a:hover::after,
.nav-principal a[aria-current="page"]::after { width: 100%; }

.menu-btn { display: none; }

/* =====================================================================
   2 · VÍDEO PRINCIPAL (a sangre, limpio, sin texto encima)
   ===================================================================== */
.video-hero { background: var(--verde-bosque); }
.video-hero video {
  width: 100%;
  height: 62vh;
  object-fit: cover;
}

/* =====================================================================
   3 · BIENVENIDA (crema, centrada)
   ===================================================================== */
.bienvenida { padding: 80px 20px; text-align: center; }
.bienvenida__marca {
  font-family: var(--fuente-marca-sans);
  font-weight: 700; font-size: 39px; line-height: 1; color: var(--verde-bosque);
}
.bienvenida__sub {
  font-family: var(--fuente-marca-sans);
  font-weight: 300; font-size: 18px; color: var(--verde-bosque);
  margin-top: 6px;
}
.bienvenida__texto {
  font-family: var(--fuente-cuerpo-aulla);
  font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--verde-bosque);
  max-width: 460px; margin: 26px auto 0;
}

/* =====================================================================
   4 · CUATRO IDEAS QUE DAN FORMA A NUESTRO DÍA A DÍA (blanco)
   ===================================================================== */
.ideas { padding: 80px 20px 76px; }
.ideas__titulo {
  font-family: var(--fuente-titulos-aulla);
  font-size: 31px; font-weight: 500; line-height: 1.25; color: var(--verde-bosque);
  text-align: center; max-width: 360px; margin: 0 auto 54px;
}
.idea { text-align: center; }
.idea__foto {
  width: 90%; max-width: 520px; margin: 0 auto;
  aspect-ratio: 4/3; object-fit: cover; border-radius: 0;
}
.idea__titulo {
  font-family: var(--fuente-titulos-aulla);
  font-size: 21px; font-weight: 500; color: var(--verde-bosque);
  margin-top: 24px;
}
.idea__texto {
  font-family: var(--fuente-cuerpo-aulla);
  font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--verde-bosque);
  max-width: 360px; margin: 11px auto 0;
}

/* =====================================================================
   5 · MÁS DE UNA DÉCADA (crema)
   ===================================================================== */
.decada { padding: 90px 20px; text-align: center; }
.decada__frase {
  font-family: var(--fuente-titulos-aulla);
  font-size: 23px; font-weight: 500; line-height: 1.5; color: var(--verde-bosque);
  max-width: 360px; margin: 0 auto;
}
.enlace-editorial {
  display: inline-block; margin-top: 34px;
  font-family: var(--fuente-marca-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--verde-bosque);
  border-bottom: 1px solid var(--verde-bosque); padding-bottom: 3px;
  transition: letter-spacing .3s ease, opacity .3s ease;
}
.enlace-editorial:hover { letter-spacing: .16em; }
.enlace-editorial .fl { transition: transform .3s ease; display: inline-block; }
.enlace-editorial:hover .fl { transform: translateX(4px); }

/* =====================================================================
   6 · AÚLLA, ENTRE TODOS (salvia) — composición editorial
   ===================================================================== */
.entre-todos { padding: 80px 20px 95px; }
.entre-todos__titulo {
  font-family: var(--fuente-titulos-aulla);
  font-size: 31px; font-weight: 500; line-height: 1.2; color: var(--verde-bosque);
  text-align: center; margin-bottom: 50px;
}
.invitacion {
  max-width: 460px; margin: 0 auto 56px; text-align: center;
  font-family: var(--fuente-cuerpo-aulla); font-size: 16px; line-height: 1.6;
}
.invitacion a {
  color: var(--verde-bosque); border-bottom: 1px solid var(--lima); padding-bottom: 2px;
  font-weight: 400;
}
.invitacion strong { font-weight: 400; display: block; margin-bottom: 6px; font-size: 17px; }

/* Conjuntos que alternan; nada de cuadrícula rígida */
.aportaciones { display: flex; flex-direction: column; gap: 56px; max-width: 640px; margin: 0 auto; }
.aportacion { display: flex; flex-direction: column; gap: 18px; }
.aportacion--dcha { align-items: flex-end; }
.aportacion--izq { align-items: flex-start; }
.aportacion--centro { align-items: center; text-align: center; }
.aportacion__foto { width: 90%; border-radius: 0; }
.aportacion--dcha .aportacion__foto, .aportacion--izq .aportacion__foto { width: 82%; }
.testimonio {
  background: var(--crema); width: 88%;
  padding: 30px;
  font-family: var(--fuente-cuerpo-aulla); font-size: 16px; line-height: 1.6; color: var(--verde-bosque);
}
.testimonio__firma { display: block; margin-top: 14px; font-size: 14px; opacity: .8; }
.dibujo { width: 78%; }
.dibujo__marco { background: var(--blanco); padding: 14px; }
.dibujo__placeholder {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  text-align: center; border: 1px dashed rgba(30,58,39,.35);
  font-family: var(--fuente-cuerpo-aulla); font-size: 14px; color: rgba(30,58,39,.55);
}
.frase-peque {
  font-family: var(--fuente-cuerpo-aulla); font-size: 18px; line-height: 1.5; color: var(--verde-bosque);
  max-width: 320px;
}
.frase-peque cite { display: block; margin-top: 8px; font-size: 14px; opacity: .75; font-style: normal; }

/* =====================================================================
   7 · CONTACTO — cierre con Elena + formulario común
   ===================================================================== */
.contacto { padding: 80px 20px 100px; }
.contacto__inner { display: flex; flex-direction: column; gap: 48px; max-width: 960px; margin: 0 auto; }
.elena { text-align: center; display: flex; flex-direction: column; align-items: center; }
.elena__foto {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--salvia);
}
.elena__nombre {
  font-family: var(--fuente-titulos-aulla); font-size: 28px; font-weight: 600;
  color: var(--verde-bosque); margin-top: 22px;
}
.elena__cargo {
  font-family: var(--fuente-cuerpo-aulla); font-size: 15px; font-weight: 400;
  color: var(--verde-bosque); opacity: .8; margin-top: 4px;
}
.elena__frase {
  font-family: var(--fuente-titulos-aulla); font-size: 19px; font-weight: 400; line-height: 1.5;
  color: var(--verde-bosque); max-width: 320px; margin: 26px auto 0;
}

/* ---------- Formulario común ---------- */
.form-intro {
  font-family: var(--fuente-cuerpo-aulla); font-size: 16px; line-height: 1.6;
  text-align: center; max-width: 460px; margin: 0 auto 28px;
}
.form-aulla { width: 100%; max-width: 520px; margin: 0 auto; }
.campo { margin-bottom: 16px; }
.campo label {
  display: block; font-family: var(--fuente-cuerpo-aulla); font-size: 14px;
  color: var(--verde-bosque); margin-bottom: 6px;
}
.campo input, .campo select, .campo textarea {
  width: 100%; font-family: var(--fuente-cuerpo-aulla); font-size: 16px; color: var(--verde-bosque);
  background: var(--blanco); border: 1px solid rgba(30,58,39,.25);
  padding: 12px 14px; border-radius: 0;
  transition: border-color .25s ease;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--verde-bosque);
}
.campo textarea { min-height: 120px; resize: vertical; }
.form-fila { display: grid; grid-template-columns: 1fr; gap: 0; }
.btn-enviar {
  width: 100%; margin-top: 8px;
  font-family: var(--fuente-marca-sans); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--verde-bosque); color: var(--blanco);
  border: 1px solid var(--verde-bosque); padding: 15px 20px; border-radius: 0;
  transition: background .25s ease, color .25s ease;
}
.btn-enviar:hover { background: transparent; color: var(--verde-bosque); }
.form-nota { font-size: 13px; opacity: .7; text-align: center; margin-top: 12px; }
.form-ok { display: none; background: var(--salvia); padding: 14px; text-align: center; font-size: 15px; margin-top: 14px; }

/* Acceso a WhatsApp integrado en el bloque de contacto (Explora / cierres) */
.wa-inline {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fuente-marca-sans); font-weight: 600; font-size: 14px;
  color: var(--verde-bosque); border: 1px solid var(--verde-bosque);
  padding: 12px 18px; margin-bottom: 26px; transition: background .25s, color .25s;
}
.wa-inline:hover { background: var(--verde-bosque); color: var(--blanco); }
.wa-inline svg { width: 18px; height: 18px; }

/* =====================================================================
   WHATSAPP FLOTANTE (bocadillo, verde Aúlla, aparición controlada)
   ===================================================================== */
.wa-flotante {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 50px; height: 50px;
  background: var(--verde-bosque); color: var(--blanco);
  display: inline-flex; align-items: center; justify-content: center;
  /* Forma de bocadillo de conversación: esquinas suaves + pico */
  border-radius: 50% 50% 50% 6px;
  box-shadow: 0 6px 18px rgba(30,58,39,.28);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s;
}
.wa-flotante.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-flotante svg { width: 24px; height: 24px; }
.wa-flotante__texto {
  position: absolute; right: 62px; white-space: nowrap;
  background: var(--verde-bosque); color: #fff; font-family: var(--fuente-marca-sans);
  font-size: 13px; padding: 7px 12px; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
@media (hover: hover){
  .wa-flotante:hover .wa-flotante__texto { opacity: 1; }
}

/* =====================================================================
   FOOTER COMÚN
   ===================================================================== */
.footer { background: var(--verde-bosque); color: #EAF0E4; padding: 54px 20px 30px; }
.footer__inner { max-width: var(--ancho-contenido); margin: 0 auto; }
.footer__top { display: flex; flex-direction: column; gap: 26px; align-items: center; text-align: center; }
.footer__marca { display: inline-flex; align-items: center; gap: 9px; }
.footer__marca .marca__nombre { color: #fff; }
.footer__redes { display: flex; gap: 14px; }
.footer__redes a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s;
}
.footer__redes a:hover { background: rgba(255,255,255,.12); }
.footer__redes svg { width: 16px; height: 16px; fill: #fff; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
  font-family: var(--fuente-cuerpo-aulla); font-size: 13px; margin-top: 30px;
}
.footer__legal a { color: rgba(255,255,255,.82); }
.footer__legal a:hover { color: #fff; text-decoration: underline; }
.footer__legal button {
  background: none; border: 0; color: rgba(255,255,255,.82); font-family: var(--fuente-cuerpo-aulla);
  font-size: 13px; padding: 0; text-decoration: underline dotted;
}
.footer__kit {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.footer__kit img { max-width: 340px; width: 100%; margin: 0 auto; opacity: .95; }
.footer__kit p { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 10px; }
.footer__copy { text-align: center; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 24px; }

/* =====================================================================
   CABECERA DE PÁGINA INTERIOR (sin texto sobre foto → texto bajo la foto)
   ===================================================================== */
.pagina-titular { padding: 60px 20px 40px; text-align: center; }
.pagina-titular h1 {
  font-family: var(--fuente-titulos-aulla); font-size: 34px; font-weight: 500;
  color: var(--verde-bosque); line-height: 1.2;
}
.pagina-titular p {
  font-family: var(--fuente-cuerpo-aulla); font-size: 17px; line-height: 1.6;
  max-width: 480px; margin: 18px auto 0;
}
.foto-plena { width: 100%; }
.foto-plena img { width: 100%; height: 56vh; object-fit: cover; }

/* Bloque de texto + foto para páginas interiores */
.bloque-texto { padding: 70px 20px; }
.bloque-texto h2 {
  font-family: var(--fuente-titulos-aulla); font-size: 26px; font-weight: 500; color: var(--verde-bosque);
  text-align: center; max-width: 520px; margin: 0 auto 20px;
}
.bloque-texto p {
  font-family: var(--fuente-cuerpo-aulla); font-size: 16px; line-height: 1.7; color: var(--verde-bosque);
  max-width: 560px; margin: 0 auto 16px; text-align: center;
}
.propuestas { display: flex; flex-direction: column; gap: 56px; margin-top: 40px; }
.propuesta { text-align: center; }
.propuesta img { width: 90%; max-width: 520px; margin: 0 auto; aspect-ratio: 4/3; object-fit: cover; }
.propuesta h3 { font-family: var(--fuente-titulos-aulla); font-size: 22px; font-weight: 500; margin-top: 22px; }
.propuesta p { max-width: 420px; margin: 10px auto 0; }

/* Contenido legal */
.legal-contenido { max-width: 720px; margin: 0 auto; padding: 60px 20px 80px; }
.legal-contenido h1 { font-family: var(--fuente-titulos-aulla); font-size: 30px; margin-bottom: 24px; }
.legal-contenido h2 { font-family: var(--fuente-titulos-aulla); font-size: 20px; margin: 30px 0 10px; }
.legal-contenido p, .legal-contenido li { font-size: 15px; line-height: 1.7; }
.legal-contenido a { color: var(--verde-bosque); text-decoration: underline; }

/* =====================================================================
   BANNER DE COOKIES (sencillo; el sitio real usa su gestor de consentimiento)
   ===================================================================== */
.cookies {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--blanco); border-top: 1px solid rgba(30,58,39,.15);
  padding: 16px 20px; display: none;
}
.cookies.abierto { display: block; }
.cookies__inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: center; }
.cookies p { font-family: var(--fuente-cuerpo-aulla); font-size: 13px; line-height: 1.5; flex: 1; min-width: 220px; }
.cookies a { text-decoration: underline; }
.cookies__btns { display: flex; gap: 8px; }
.cookies button {
  font-family: var(--fuente-marca-sans); font-size: 13px; padding: 9px 16px; border-radius: 0;
  border: 1px solid var(--verde-bosque);
}
.cookies .aceptar { background: var(--verde-bosque); color: #fff; }
.cookies .rechazar, .cookies .config { background: transparent; color: var(--verde-bosque); }

/* Animación de aparición suave (respeta reduce-motion) */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].dentro { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   ESCRITORIO (el mismo criterio visual; se amplían ritmos y 2 columnas)
   ===================================================================== */
@media (min-width: 860px){
  .video-hero video { height: 78vh; max-height: 760px; }

  .bienvenida { padding: 110px 20px; }
  .bienvenida__marca { font-size: 46px; }

  .ideas { padding: 110px 20px 100px; }
  .ideas__titulo { font-size: 38px; max-width: 640px; }
  /* Los 4 contenidos alternan foto y texto en dos columnas, sin cuadrícula rígida */
  .idea {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
    max-width: 980px; margin: 0 auto; text-align: left;
  }
  .idea:nth-of-type(odd) .idea__foto { order: 2; }
  .idea__foto { width: 100%; }
  .idea__titulo { margin-top: 0; font-size: 26px; }
  .idea__texto { margin-left: 0; margin-right: 0; max-width: 420px; font-size: 17px; }
  .divisor { margin: 56px auto; }

  .decada { padding: 120px 20px; }
  .decada__frase { font-size: 30px; max-width: 560px; }

  .entre-todos { padding: 110px 20px 120px; }
  .entre-todos__titulo { font-size: 38px; }
  .aportaciones { max-width: 820px; gap: 70px; }
  .aportacion--dcha { flex-direction: row; align-items: center; gap: 32px; }
  .aportacion--izq { flex-direction: row-reverse; align-items: center; gap: 32px; }
  .aportacion--dcha .aportacion__foto, .aportacion--izq .aportacion__foto { width: 52%; }
  .testimonio { width: auto; flex: 1; }

  .contacto { padding: 110px 20px 120px; }
  .contacto__inner { flex-direction: row; align-items: flex-start; gap: 64px; }
  .contacto__col-elena { flex: 0 0 40%; position: sticky; top: 110px; }
  .contacto__col-form { flex: 1; }
  .form-fila { grid-template-columns: 1fr 1fr; gap: 16px; }
  .elena__foto { width: 170px; height: 170px; }

  .pagina-titular { padding: 90px 20px 50px; }
  .pagina-titular h1 { font-size: 46px; }
  .foto-plena img { height: 64vh; max-height: 620px; }
  .propuestas { gap: 80px; }
  .propuesta { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; text-align: left; max-width: 980px; margin: 0 auto; }
  .propuesta:nth-of-type(even) img { order: 2; }
  .propuesta img { width: 100%; }
  .propuesta p { margin-left: 0; }

  .wa-flotante { width: 52px; height: 52px; right: 24px; bottom: 24px; }

  .footer__top { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__legal { justify-content: flex-start; }
}

/* =====================================================================
   ACABADO ESTÉTICO (sutil, coherente con la calma de Aúlla)
   ===================================================================== */

/* Profundidad y vida en las fotografías (bordes rectos, sombra suave) */
.idea__foto, .propuesta img, .aportacion__foto, .foto-plena img, .dibujo__marco {
  box-shadow: 0 16px 40px -26px rgba(30, 58, 39, .55);
  transition: transform .5s ease, box-shadow .5s ease;
}
.idea__foto:hover, .propuesta img:hover, .aportacion__foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -26px rgba(30, 58, 39, .6);
}

/* Acento lima bajo los títulos de sección */
.ideas__titulo::after,
.entre-todos__titulo::after,
.pagina-titular h1::after,
.bloque-texto h2::after {
  content: ""; display: block;
  width: 46px; height: 3px; background: var(--lima);
  margin: 20px auto 0;
}

/* Testimonios con comilla de apertura y filo lima */
.testimonio {
  position: relative; padding: 40px 30px 30px;
  border-left: 3px solid var(--lima);
}
.testimonio::before {
  content: "\201C";
  position: absolute; top: 6px; left: 16px;
  font-family: var(--fuente-titulos-aulla); font-weight: 700;
  font-size: 46px; line-height: 1; color: var(--lima); opacity: .6;
}

/* Frase infantil: un poco más de carácter */
.frase-peque { font-style: italic; }
.frase-peque cite { font-style: normal; }

/* Elena, con más presencia y calidez */
.elena__foto {
  box-shadow: 0 18px 44px -22px rgba(30, 58, 39, .5);
}

/* Datos de contacto (página Contacto) */
.datos-contacto { display: flex; flex-direction: column; gap: 20px; }
.datos-contacto p { margin: 0; font-family: var(--fuente-cuerpo-aulla); font-size: 17px; }
.dato-lab {
  display: block; font-family: var(--fuente-marca-sans);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(30, 58, 39, .55); margin-bottom: 3px;
}
.datos-contacto a { color: var(--verde-bosque); border-bottom: 1px solid var(--lima); padding-bottom: 1px; }
.datos-contacto a:hover { border-bottom-color: var(--verde-bosque); }

/* Formulario de aportaciones: archivos, consentimiento y avisos */
.campo input[type="file"] {
  padding: 11px 12px; background: var(--blanco); font-size: 15px;
}
.form-hint { font-size: 13px; color: rgba(30,58,39,.65); margin: -8px 0 14px; }
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  margin: 6px 0 10px; font-family: var(--fuente-cuerpo-aulla); font-size: 14px; line-height: 1.5;
}
.consent input[type="checkbox"] {
  width: 20px; height: 20px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--verde-bosque);
}
.consent a { color: var(--verde-bosque); text-decoration: underline; }
.consent-aviso { display: none; color: #9a3412; font-size: 13px; margin: 0 0 12px; }
.aviso-moderacion {
  background: var(--salvia); border-left: 3px solid var(--lima);
  padding: 16px 18px; font-size: 14px; line-height: 1.55; margin-bottom: 28px;
}

/* Enlace editorial con matiz lima al pasar */
.enlace-editorial:hover { color: var(--verde-bosque); border-bottom-color: var(--lima); }

/* Botón de menú un poco más visible */

/* =====================================================================
   MENÚ MÓVIL
   ===================================================================== */
@media (max-width: 600px){
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; background: none; border: 0;
  }
  .menu-btn span, .menu-btn span::before, .menu-btn span::after {
    content: ""; display: block; width: 22px; height: 2px; background: var(--verde-bosque);
    transition: transform .3s ease, opacity .3s ease;
  }
  .menu-btn span::before { transform: translateY(-7px); }
  .menu-btn span::after { transform: translateY(5px); }
  .nav-principal {
    position: fixed; inset: 92px 0 auto 0;
    background: var(--blanco); flex-direction: column; align-items: center; gap: 4px;
    padding: 22px 20px 30px; border-bottom: 1px solid rgba(30,58,39,.1);
    transform: translateY(-140%); transition: transform .4s ease; z-index: 40;
  }
  .nav-principal a { font-size: 20px; padding: 14px 0; }
  .nav-abierto .nav-principal { transform: translateY(0); }
  .nav-abierto .menu-btn span { background: transparent; }
  .nav-abierto .menu-btn span::before { transform: rotate(45deg); }
  .nav-abierto .menu-btn span::after { transform: rotate(-45deg); }
}
