/* mienergiabarata.es — hoja de estilo única.
   Tokens y componentes tomados literalmente de "Especificación de construcción".
   Mobile-first: lo de aquí es el móvil; los breakpoints amplían hacia arriba. */

:root {
  --verde: #00c874;
  --verde-jade: #009f63;
  --verde-oscuro: #0b2f20;
  --carbon: #1a1a1a;
  --gris-fondo: #f2f2f2;
  --blanco: #ffffff;
  --gris-texto: #6f6f6f;
  --gris-borde: #e0e0e0;
  --ambar: #ffc53d;
  --ambar-fondo: #fff8e1;
  --ambar-texto: #8a5a00;

  --radio-s: 8px;
  --radio-m: 12px;
  --radio-l: 18px;

  --e1: 4px;  --e2: 8px;  --e3: 12px; --e4: 16px;
  --e5: 20px; --e6: 24px; --e7: 32px; --e8: 40px; --e9: 56px;

  --fuente-titular: Archivo, system-ui, sans-serif;
  --fuente-ui: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Trama de galones de la marca. Va como SVG incrustado y no como imagen
     aparte: son 200 bytes dentro del CSS, que ya se descarga, en vez de una
     petición más y un archivo que mantener. El color se queda dentro del data
     URI —ahí no llega `currentColor`—, así que hay una versión para fondo
     oscuro y otra para fondo claro. */
  --trama-clara: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M-4 14 24 0l28 14M-4 38 24 24l28 14' fill='none' stroke='%23ffffff' stroke-width='7'/%3E%3C/svg%3E");
  --trama-oscura: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M-4 14 24 0l28 14M-4 38 24 24l28 14' fill='none' stroke='%230b2f20' stroke-width='7'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--gris-fondo);
  color: var(--carbon);
  font-family: var(--fuente-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

/* --- Titulares con trazo. El grosor escala con el tamaño: 1,5 px hasta 20 px
   de fuente, 2 px hasta 32 px, 2,5 px por encima. --- */
.titular {
  font-family: var(--fuente-titular);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--blanco);
  -webkit-text-stroke: 2px var(--verde-oscuro);
  paint-order: stroke fill;
  margin: 0;
}
.titular--carbon { -webkit-text-stroke-color: var(--carbon); }
.titular--sin-trazo { -webkit-text-stroke: 0; color: var(--carbon); }
/* El titular es la pieza que más trabaja de toda la pantalla: grande, apretado
   y con las líneas casi tocándose, como en el tablero de marca. */
.titular--xl { font-size: 38px; line-height: 1.02; letter-spacing: -0.035em; }
.titular--l  { font-size: 27px; line-height: 1.2; }
.titular--m  { font-size: 22px; -webkit-text-stroke-width: 2px; }

/* Palabra destacada dentro del titular. Sobre el verde del hero el acento tiene
   que ir hacia el oscuro: en claro sobre claro no se distinguiría. */
.titular__acento { color: var(--verde-oscuro); -webkit-text-stroke-color: var(--blanco); }

/* --- Cabecera y logo --- */
.cabecera {
  /* Carbón liso, sin trama: el logo ya lleva bastante dibujo y la textura
     detrás le quitaba aire. La trama se queda para el hero. */
  background: var(--carbon);
  padding: var(--e3) var(--e5) var(--e4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--e3);
}

.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }

.logo__texto {
  font-family: var(--fuente-titular);
  font-style: italic;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--blanco);
  -webkit-text-stroke: 1.5px var(--verde-oscuro);
  paint-order: stroke fill;
}
.logo__acento { color: var(--verde); }

.cabecera__nav {
  display: none;
  gap: var(--e6);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9c9c9;
  font-weight: 600;
}
.cabecera__nav a { color: inherit; text-decoration: none; }
.cabecera__nav a:hover { color: var(--blanco); }

/* --- Contenedor --- */
.contenido { padding: var(--e5); display: flex; flex-direction: column; gap: var(--e5); }
.contenido--estrecho { max-width: 720px; margin: 0 auto; width: 100%; }

/* --- Hero verde --- */
.hero {
  background: var(--verde);
  padding: var(--e8) var(--e5);
  display: flex;
  flex-direction: column;
  gap: var(--e3);
  position: relative;
  overflow: hidden;
}
/* La trama, en su propia capa para poder bajarle la opacidad: dentro del data
   URI el color es sólido y aclararlo ahí obligaría a un SVG por fondo. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--trama-oscura);
  opacity: 0.07;
  pointer-events: none;
}

/* El rayo de la marca, sólido y con sombra proyectada como en el tablero. En el
   móvil se queda detrás del texto, girado y recortado por el borde: es fondo, no
   ilustración, y el titular tiene que seguir siendo lo primero que se lee. */
.hero__rayo {
  position: absolute;
  right: -58px;
  top: -20px;
  color: var(--blanco);
  opacity: 0.22;
  transform: rotate(8deg);
  filter: drop-shadow(10px 12px 0 rgba(11, 47, 32, 0.35));
  pointer-events: none;
}
.hero__texto {
  font-size: 15px;
  line-height: 1.5;
  /* Estaba en #eafff5, que sobre este verde da 2,1:1: por debajo del mínimo
     legible y encima en el párrafo que explica de qué va todo, leído a menudo
     en la calle con sol. En verde oscuro son 6,6:1 y la jerarquía sigue clara,
     porque el titular es el que va en blanco. */
  color: var(--verde-oscuro);
  position: relative;
  text-wrap: pretty;
  margin: 0;
}
.hero .titular { position: relative; }

/* Sombra dura desplazada, el gesto del tablero. Va con el trazo, no en su
   lugar: el trazo separa la letra del fondo y la sombra le da el relieve. */
.titular--sombra { text-shadow: 4px 5px 0 rgba(11, 47, 32, 0.28); }

/* Los tres distintivos del hero. No prometen nada nuevo: son las tres promesas
   que ya estaban en el párrafo, puestas donde se leen de un vistazo. */
.hero__puntos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--e3);
  position: relative;
}
.hero__punto {
  display: flex;
  align-items: center;
  gap: var(--e3);
  font-size: 15px;
  font-weight: 700;
  /* En verde oscuro y no en blanco, como el tablero: blanco sobre este verde da
     2,2:1 de contraste y estos son textos pequeños. Así llegan a 6,5:1. */
  color: var(--verde-oscuro);
}
.hero__punto svg { flex: none; }
.hero__marca {
  width: 26px; height: 26px; flex: none;
  border-radius: 99px;
  background: var(--blanco);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 3px 0 rgba(11, 47, 32, 0.28);
}

/* --- Botones --- */
.boton {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 15px;
  border: 0;
  border-radius: var(--radio-m);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--verde);
  color: var(--blanco);
}
.boton:hover, .boton:active { background: var(--verde-jade); }
/* Botón principal con la sombra dura de la marca y el rayo detrás del texto. */
.boton--marca {
  box-shadow: 4px 5px 0 var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--e3);
}
.boton--marca:hover, .boton--marca:active { box-shadow: 2px 3px 0 var(--verde-oscuro); }
.boton--marca:disabled, .boton--marca[aria-disabled="true"] { box-shadow: none; }
.boton--marca svg { flex: none; }
.boton:disabled, .boton[aria-disabled="true"] {
  background: #e2e2e2;
  color: #a5a5a5;
  cursor: not-allowed;
}
.boton--secundario {
  background: transparent;
  color: var(--carbon);
  font-size: 15px;
  padding: 13px;
  min-height: 44px;
}
.boton--secundario:hover { background: transparent; color: var(--verde-jade); }
.boton--carbon { background: var(--carbon); }
.boton--carbon:hover { background: #333; }

/* Foco visible: contorno 3 px carbón a 2 px de separación. */
a:focus-visible, button:focus-visible, input:focus-visible,
label:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--carbon);
  outline-offset: 2px;
}

/* --- Zona de subida --- */
.subida {
  background: var(--blanco);
  border: 2px dashed #bdbdbd;
  border-radius: 16px;
  padding: var(--e7) var(--e5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--e3);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.subida:hover { border-color: var(--verde-jade); }
.subida.esta-arrastrando {
  border-color: var(--verde);
  background: #f2fff9;
  color: var(--verde-jade);
}
.subida__titulo { font-size: 16px; font-weight: 700; }
.subida__ayuda { font-size: 13px; color: var(--gris-texto); }
.subida input[type="file"] { display: none; }

.archivo {
  background: var(--blanco);
  border: 2px solid var(--verde);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: var(--e4);
}
.archivo__icono {
  width: 44px; height: 44px; flex: none;
  border-radius: 99px;
  background: var(--verde);
  display: flex; align-items: center; justify-content: center;
}
.archivo__datos { flex: 1; min-width: 0; }
.archivo__nombre {
  font-size: 15px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.archivo__meta { font-size: 13px; color: var(--gris-texto); }
.archivo__cambiar {
  font-size: 13px; font-weight: 700; color: var(--verde-jade);
  background: none; border: 0; cursor: pointer; padding: var(--e2);
}

.archivo--error { border-color: var(--ambar); background: var(--ambar-fondo); }
.archivo--error .archivo__icono { background: var(--ambar); }
.archivo--error .archivo__nombre { color: var(--ambar-texto); }

/* Una factura puede ocupar varias páginas: se listan todas, en orden. */
.archivos { display: flex; flex-direction: column; gap: var(--e3); }
.archivos__lista {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--e3);
}
.archivos__pie {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--e4); flex-wrap: wrap;
}
.archivos__resumen { font-size: 13px; color: var(--gris-texto); }
.archivos__resumen--error { color: var(--ambar-texto); font-weight: 700; }

/* --- Progreso --- */
.progreso {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: var(--e3);
}
.progreso__titulo { font-size: 15px; font-weight: 700; }
.progreso__barra {
  height: 8px; border-radius: 99px; background: #e6e6e6; overflow: hidden;
}
.progreso__relleno {
  height: 100%; width: 8%; background: var(--verde);
  transition: width .6s ease;
}
.progreso__paso { font-size: 13px; color: var(--gris-texto); }

/* --- Confianza y pasos --- */
.confianza {
  font-size: 13px; color: var(--gris-texto);
  text-align: center; line-height: 1.5; margin: 0;
}

.separador { height: 1px; background: #dcdcdc; }

.pasos { display: flex; flex-direction: column; gap: var(--e4); }
.paso { display: flex; align-items: flex-start; gap: var(--e4); }
.paso__icono {
  width: 38px; height: 38px; flex: none;
  border-radius: 99px; background: var(--verde);
  display: flex; align-items: center; justify-content: center;
}
.paso__titulo { font-size: 15px; font-weight: 700; }
.paso__texto { font-size: 13px; color: var(--gris-texto); }

.seccion__titulo { font-size: 17px; font-weight: 700; margin: 0; }

/* --- Hero de resultado --- */
.resumen {
  border-radius: var(--radio-l);
  padding: var(--e7) var(--e5);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.resumen--aviso { background: var(--ambar-fondo); border: 2px solid var(--ambar); }
.resumen--ok {
  background: var(--verde); position: relative; overflow: hidden; gap: var(--e3);
}
.resumen__etiqueta { font-size: 14px; font-weight: 700; color: var(--ambar-texto); }
.resumen__cifra {
  font-size: 62px; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--carbon);
}
.resumen__pct { font-size: 16px; font-weight: 700; color: var(--ambar-texto); }
.resumen__nota {
  font-size: 13px; color: var(--ambar-texto); opacity: .85;
  margin-top: 6px; line-height: 1.5;
}
.resumen__marca {
  width: 56px; height: 56px; border-radius: 99px; background: var(--blanco);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.resumen__texto-ok {
  font-size: 15px; color: #eafff5; line-height: 1.5; position: relative; margin: 0;
}

/* --- Hallazgos --- */
.hallazgos { display: flex; flex-direction: column; gap: var(--e3); }
.hallazgo {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-left: 5px solid var(--verde);
  border-radius: var(--radio-m);
  padding: var(--e4);
  display: flex; flex-direction: column; gap: 6px;
}
.hallazgo--aviso { border-left-color: var(--ambar); }
.hallazgo__titulo { font-size: 15px; font-weight: 700; }
.hallazgo__texto { font-size: 14px; color: var(--gris-texto); line-height: 1.5; margin: 0; }
.hallazgo__cifra { font-size: 14px; font-weight: 800; color: var(--ambar-texto); }

/* --- Tarjetas de tarifa --- */
.tarifas { display: flex; flex-direction: column; gap: var(--e3); }

.tarifa {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: var(--e4);
  display: flex; align-items: center; gap: var(--e4);
  position: relative;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}
.tarifa:hover { border-color: var(--verde-jade); }
.tarifa--mejor { border: 2px solid var(--verde); }
.tarifa__pildora {
  position: absolute; top: -10px; left: var(--e4);
  background: var(--verde); color: var(--blanco);
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 99px;
}
.tarifa__iniciales {
  width: 44px; height: 44px; flex: none;
  border-radius: 10px; background: var(--gris-fondo); color: var(--carbon);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.tarifa--mejor .tarifa__iniciales { background: var(--carbon); color: var(--verde); }
.tarifa__datos { flex: 1; min-width: 0; }
.tarifa__nombre { font-size: 15px; font-weight: 700; }
.tarifa__detalle { font-size: 13px; color: var(--gris-texto); }
.tarifa__ahorro { text-align: right; }
.tarifa__ahorro-eur { font-size: 18px; font-weight: 800; color: var(--verde-jade); }
.tarifa__ahorro-pct { font-size: 13px; font-weight: 700; color: var(--verde-jade); }

/* --- Avisos --- */
.aviso {
  background: var(--ambar-fondo);
  border: 1px solid var(--ambar);
  border-radius: 14px;
  padding: var(--e5);
  font-size: 14px;
  color: var(--ambar-texto);
  line-height: 1.6;
}
.aviso--sutil {
  background: var(--blanco);
  border-color: var(--gris-borde);
  color: var(--gris-texto);
  font-size: 13px;
}

.legal { font-size: 12px; color: #8a8a8a; text-align: center; line-height: 1.5; margin: 0; }

/* --- Confirmación --- */
.confirmacion {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--e4); padding: var(--e6) 0 var(--e1); text-align: center;
}
.confirmacion__marca {
  width: 72px; height: 72px; border-radius: 99px; background: var(--verde);
  display: flex; align-items: center; justify-content: center;
}
.confirmacion__texto {
  font-size: 15px; color: var(--gris-texto); line-height: 1.55;
  text-wrap: pretty; margin: 0;
}

.tarjeta {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column; gap: var(--e4);
}
.tarjeta__titulo { font-size: 15px; font-weight: 700; }
.numerado { display: flex; gap: var(--e3); align-items: flex-start; }
.numerado__n {
  width: 24px; height: 24px; flex: none; border-radius: 99px;
  background: var(--verde); color: var(--blanco);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.numerado__texto { font-size: 14px; color: var(--gris-texto); line-height: 1.5; }

/* --- Formulario --- */
.campo { display: flex; flex-direction: column; gap: 6px; }
.campo__etiqueta { font-size: 14px; font-weight: 700; }
.campo__ayuda { font-size: 13px; color: var(--gris-texto); }
.campo input[type="text"],
.campo input[type="tel"],
.campo input[type="email"] {
  font-family: inherit;
  font-size: 16px; /* 16px evita el zoom automático en iOS */
  padding: 14px;
  min-height: 48px;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-m);
  background: var(--blanco);
  color: var(--carbon);
}
.campo input:focus { border-color: var(--verde); }

.consentimiento {
  display: flex; gap: var(--e3); align-items: flex-start;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-m);
  padding: var(--e4);
  cursor: pointer;
}
.consentimiento input[type="checkbox"] {
  width: 22px; height: 22px; flex: none; margin: 1px 0 0;
  accent-color: var(--verde); cursor: pointer;
}
.consentimiento__texto { font-size: 13px; color: var(--gris-texto); line-height: 1.55; }

.pie {
  background: var(--carbon);
  color: #9a9a9a;
  padding: var(--e6) var(--e5);
  font-size: 13px;
  display: flex; flex-direction: column; gap: var(--e3);
  align-items: center; text-align: center;
}
.pie a { color: #c9c9c9; }
.pie__enlaces { display: flex; gap: var(--e4); flex-wrap: wrap; justify-content: center; }
/* Es un botón porque no lleva a ninguna parte: abre el aviso. Se viste de enlace
   para que en el pie se lea como uno más. */
.pie__enlace-boton {
  background: none;
  border: 0;
  padding: 0;
  color: #c9c9c9;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.pie__enlace-boton:hover { color: var(--blanco); }

.texto-legal { line-height: 1.65; }
.texto-legal h2 { font-size: 18px; margin: var(--e6) 0 var(--e2); }
.texto-legal h3 { font-size: 15px; margin: var(--e5) 0 var(--e1); }
.texto-legal p, .texto-legal li { font-size: 14px; color: #444; }
.texto-legal table { width: 100%; border-collapse: collapse; font-size: 14px; margin: var(--e3) 0; }
.texto-legal th, .texto-legal td {
  border: 1px solid var(--gris-borde); padding: var(--e2) var(--e3); text-align: left;
}
.texto-legal th { background: var(--blanco); }

.oculto { display: none !important; }
.solo-lectores {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- Escritorio --- */
@media (min-width: 768px) {
  .cabecera { padding: var(--e4) var(--e8); }
  .cabecera__nav { display: flex; align-items: center; }
  .logo__texto { font-size: 20px; }
  .contenido { padding: var(--e8); max-width: 1080px; margin: 0 auto; width: 100%; }
  .hero { padding: var(--e9) var(--e8); }
  /* En escritorio el hero ya está partido en dos y la columna derecha está
     vacía: ahí el rayo deja de ser marca de agua y pasa a ser la ilustración
     que enseña el tablero, sólido y con su sombra. */
  .hero__rayo {
    right: 4%;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
    opacity: 0.95;
    filter: drop-shadow(16px 18px 0 rgba(11, 47, 32, 0.3));
  }
  .titular--xl { font-size: 56px; line-height: 1.0; -webkit-text-stroke-width: 2.5px; }
  .titular--l { font-size: 32px; }
  .hero__texto { font-size: 18px; max-width: 470px; }
  .resumen__cifra { font-size: 86px; }
  .boton { width: auto; display: inline-block; padding: 16px 28px; }
  .boton--ancho { width: 100%; }

  .hero--dividido {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--e9);
    align-items: center;
  }
  .pasos--fila { flex-direction: row; }
  .pasos--fila .paso { flex: 1; }
  .resultado--dos-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--e7);
    align-items: start;
  }
  .resultado__columna { display: flex; flex-direction: column; gap: var(--e6); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* --- Aviso de cookies de medición ---
   Solo aparece si hay píxel configurado y el visitante no ha decidido todavía.
   Los dos botones pesan igual a propósito: rechazar tiene que costar lo mismo
   que aceptar, y con "Rechazar" primero para que no se acepte por inercia. */
.cookies {
  position: fixed;
  left: var(--e3);
  right: var(--e3);
  bottom: var(--e3);
  z-index: 50;
  background: var(--carbon);
  color: var(--blanco);
  border-radius: var(--radio-m);
  padding: var(--e4);
  display: flex;
  flex-direction: column;
  gap: var(--e3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.cookies__texto { font-size: 13px; line-height: 1.5; margin: 0; color: #e6e6e6; }
.cookies__texto a { color: var(--verde); }
.cookies__botones { display: flex; gap: var(--e3); }
.cookies__boton {
  flex: 1;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radio-m);
  border: 1px solid #4a4a4a;
  background: #2a2a2a;
  color: var(--blanco);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cookies__boton:hover { background: #3a3a3a; }

@media (min-width: 768px) {
  .cookies {
    left: auto;
    right: var(--e5);
    bottom: var(--e5);
    max-width: 420px;
  }
}

/* Un botón que se lee como un enlace dentro de un párrafo. Botón y no <a>
   porque no navega: abre el aviso de cookies aquí mismo. */
.enlace-en-texto {
  background: none;
  border: 0;
  padding: 0;
  color: var(--verde-jade);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

/* El aviso de que no se cobra nada, en la pantalla donde se piden los datos de
   contacto. Verde y no gris: es una buena noticia, no letra pequeña. */
.gratis {
  background: #eafff5;
  border: 1px solid var(--verde);
  border-radius: var(--radio-m);
  padding: var(--e4);
  font-size: 14px;
  line-height: 1.5;
  color: var(--verde-oscuro);
}
