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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito Sans", Arial, sans-serif;
}

:root {
  --topbar-h: 64px;
  --menu-h: 44px;

  --blue: #0b63d1;
  --dark: #071228;
  --paper: #efece4;
  --orange: #FF6740;
}

/* =========================================================
   UTILIDADES / ROBUSTEZ
   ========================================================= */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.flourish-embed,
.flourish-embed iframe {
  max-width: 100% !important;
}

/* Evita que textos “queden finitos” por un contenedor raro */
p,
h1,
h2,
h3,
h4 {
  max-width: 100%;
}

/* =========================================================
   TIPOGRAFÍA BASE (PEDIDO: más grande)
   ========================================================= */
.title {
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: 4.5em;
  /* antes 3.5em */
  line-height: .95;
}

.parrafo {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 1.32em;
  /* antes 1.25em */
  line-height: 1.55;
}

.link {
  color: var(--orange);
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  height: var(--topbar-h);
  background: var(--blue);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 34px;
}

.search {
  margin-left: auto;
  background: rgba(255, 255, 255, .18);
  padding: 6px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search input {
  width: 220px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.search input::placeholder {
  color: rgba(255, 255, 255, .9);
}

.search button {
  border: 0;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================================================
   MENU
   ========================================================= */
.menu {
  height: var(--menu-h);
  background: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #e6e6e6;
}

.menu a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.menu a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  height: calc(100vh - var(--topbar-h) - var(--menu-h));
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  overflow: hidden;
}

.hero__img {
  width: 40%;
  scale: 2;
  position: relative;
  left: 300px;
}

.hero__title {
  font-family: "Road Rage", cursive;
  color: #1b5fd6;
  font-size: 92px;
  line-height: .95;
  font-weight: 400;
  text-align: left;
  position: relative;
  right: 300px;
}

/* =========================================================
   SEPARADORES
   ========================================================= */
.sep {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1em 3em;
  background: var(--blue);
  color: #fff;
}

.sep-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1em 3em;
  background: var(--blue);
  color: #fff;
  border-radius: 50px 0 0 0;
}

/* =========================================================
   BODY 1
   ========================================================= */
.body1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../img/FONDO.png');
  background-size: cover;
  padding-bottom: 10em;
}

/* Contenedores de texto: en desktop mantenemos ancho cómodo */
.content-info {
  width: min(980px, 52vw);
  margin: 0 auto;
  padding: 1.5em 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* CLAVE */
}

.content-info h2 {
  text-align: left;
  width: 100%;
}

.content-info p {
  margin-top: 1em;
  width: 100%;
}

.separador-tele {
  width: 25%;
  margin-top: 2em;
  overflow: hidden;
  margin: auto;
}

.separador-tele img {
  width: 100%;
  margin: auto;
}

.content-info-img {
  display: flex;
  width: 100%;
  margin-top: 2em;
}

.content-img {
  width: 25%;
}

.content-img img {
  width: auto;
  margin: auto;
}

.content-info-p {
  width: 50%;
  color: #000;
}

.content-right {
  width: 25%;
}

/* =========================================================
   QUOTE BOX
   ========================================================= */
.quote-box {
  width: min(980px, 52vw);
  margin: 46px auto 20px;
  background: var(--dark);
  border-radius: 2px;
  padding: 26px 34px;
  position: relative;
}

.quote-box::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -22px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-top: 22px solid var(--dark);
}

.quote-box__text {
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 36px);
  /* un poco más grande */
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.2px;
  padding-left: 1em;
}

.quote-box__hi {
  color: var(--blue);
  font-weight: 900;
}

.quote-box--icon {
  position: relative;
  padding-right: 84px;
}

.quote-box__icon {
  position: absolute;
  top: -18px;
  right: 10px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  pointer-events: none;
  scale: 1.5;
}

/* Mano/imagen adentro de quote */
.content-box-text {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-left: 1em;
}

.content-box-text section {
  flex: 1;
}

.content-box-text figure {
  width: 10%;
}

.content-box-text img {
  scale: 5;
  position: relative;
  left: 180px;
  top: 90px;
}

/* =========================================================
   BLOQUE DONUT
   ========================================================= */
.contet-prob {
  width: min(980px, 52vw);
  margin: 40px auto;
}

.block-head {
  margin-bottom: 10px;
}

.block-title {
  font-weight: 900;
  /* más grande */
  line-height: 1.05;
  color: #111;
  margin: 0 0 6px 0;
}

.block-subtitle {
  font-weight: 700;
  font-size: 16px;
  /* más grande */
  line-height: 1.35;
  color: #111;
  margin: 0;
}

.chart-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0 10px;
}

.chart-wrap .flourish-embed {
  width: 420px;
  max-width: 100%;
}

/* más grande */
.block-source {
  font-weight: 700;
  font-size: 12px;
  color: #111;
  margin-top: 8px;
}

/* =========================================================
   RESUMEN 43/37/20
   ========================================================= */
.resumen-bloques {
  padding: 38px 24px 44px;
  width: 100%;
}

.resumen-bloques__title {
  margin: 0 auto 26px;
  width: min(980px, 92%);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.05;
  font-size: clamp(26px, 3.4vw, 46px);
  /* más grande */
}

.resumen-bloques__title--accent {
  color: #ff4f2a;
}

.resumen-bloques__title--dark {
  color: #121212;
}

.resumen-bloques__grid {
  width: min(980px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.resumen-bloques__bars {
  height: 150px;
  display: flex;
  /* <-- en vez de grid */
  gap: 2px;
  width: 100%;
}

.resumen-bloques__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  flex: 0 0 auto;
  /* no se estiran igual */
}

/* anchos proporcionales */
.resumen-bloques__bar.b43 {
  width: 43%;
  background: #2f78d2;
  color: #fff;
}

.resumen-bloques__bar.b37 {
  width: 37%;
  background: #9dc6f3;
  color: #0b1f3a;
}

.resumen-bloques__bar.b20 {
  width: 20%;
  background: #c7e3ff;
  color: #0b1f3a;
}

.resumen-bloques__text {
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  /* más grande */
  line-height: 1.45;
}

.resumen-bloques__text p {
  margin: 0 0 10px 0;
}

/* =========================================================
   MAPA PROVINCIA (ARREGLADO: NUNCA width:50% ACA)
   ========================================================= */
.map-provincia {
  padding: 44px 0 56px;
  width: 100%;
}

.map-provincia__head {
  width: min(980px, 92%);
  margin: 0 auto 18px;
}

.map-provincia__head .title {
  font-size: 4.2em;
  /* más grande en desktop */
}

.map-provincia__subtitle {
  margin-top: 10px;
  font-weight: 800;
  font-size: 1.15em;
  line-height: 1.35;
  color: #121212;
  max-width: 720px;
}

.map-provincia__layout {
  width: min(980px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 30px;
  align-items: start;
}

.map-provincia__map {
  width: 420px;
  max-width: 100%;
}

.map-provincia__map .flourish-embed {
  width: 100%;
}

.map-provincia__search {
  justify-self: start;
  align-self: start;
  margin-top: 58px;
  display: flex;
  align-items: center;
  width: 280px;
  /* un poco más grande */
  height: 34px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  overflow: hidden;
}

.map-provincia__input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
  color: var(--blue);
}

.map-provincia__btn {
  width: 44px;
  height: 100%;
  border: 0;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
}

/* =========================================================
   BODY 2
   ========================================================= */
.body2 {
  background-image: url('../img/fondoAzul.png');
}

.content-info-II,
.content-info-II-2 {
  width: min(980px, 52vw);
  margin: 0 auto;
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* CLAVE para que “ocupe todo su ancho” */
}

.content-info-II h2 {
  text-align: left;
  width: 100%;
  color: #fff;
}

.content-info-II p {
  margin-top: 1em;
  color: #fff;
  width: 100%;
}

.content-info-II-2 {
  color: #fff;
  padding-top: 1.6em;
}

.sombra {
  background: #FFAE99;
}

.sombra-title {
  background-color: #071228;
}

/* layout “img - texto - img” */
.content-info-img-II {
  display: flex;
  width: 100%;
  margin-top: 2em;
}

.content-img-II {
  width: 25%;
}

.content-img-II img {
  width: 25%;
  margin: auto;
}

.content-info-p-II {
  width: 50%;
  color: #fff;
}

.content-right-II {
  width: 25%;
}

.content-prob-II {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.content-prob-II>div {
  width: 40%;
}

/* =========================================================
   FLOURISH: “50% y centrado” (DESKTOP)
   Usalo con class="flourish-half"
   ========================================================= */
.flourish-half {
  width: 80%;
  margin: 0 auto;
}

.flourish-half .flourish-embed {
  width: 100% !important;
}

/* =========================================================
   METODOLOGÍA + CRÉDITOS (dejo tu estilo, solo robustez)
   ========================================================= */
.metodologia {
  background: var(--dark);
  color: #fff;
  border-radius: 50px 0 0 0;
}

.metodo {
  background: radial-gradient(120% 120% at 20% 15%, #0f2344 0%, #071228 55%, #050b18 100%);
  padding: 56px 0 60px;
  color: #fff;
  border-radius: 50px 0 0 0;
}

.metodo__inner {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

.metodo__title {
  margin: 0 0 18px 0;
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: 70px;
  /* más grande */
  line-height: 1;
  color: #fff;
  text-align: center;
}

.metodo__list {
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.metodo__item {
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.metodo__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 10px 16px 0;
  display: grid;
  grid-template-columns: 14px 1fr 38px;
  align-items: center;
  gap: 14px;
}

.metodo__q::-webkit-details-marker {
  display: none;
}

.metodo__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  justify-self: center;
}

.metodo__qtext {
  font-weight: 800;
  font-size: 20px;
  /* más grande */
  line-height: 1.3;
  color: rgba(255, 255, 255, .92);
}

.metodo__chev {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  justify-self: end;
  position: relative;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.metodo__chev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, .9);
  border-bottom: 2px solid rgba(255, 255, 255, .9);
  transform: translate(-50%, -55%) rotate(45deg);
}

.metodo__item[open] .metodo__chev {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .5);
}

.metodo__a {
  overflow: hidden;
}

.metodo__a-inner {
  padding: 0 38px 16px 28px;
  font-weight: 650;
  font-size: 14px;
  /* más grande */
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

.credits {
  position: relative;
  padding: 46px 0 64px;
  color: #fff;
}

.credits__inner {
  width: min(980px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.credits__title {
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 10px;
}

.credits__lead {
  margin: 0 auto 22px;
  max-width: 760px;
  font-weight: 650;
  font-size: 14px;
  /* más grande */
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

.credits__mail {
  color: #ff4f2a;
  font-weight: 900;
  text-decoration: none;
}

.credits__mail:hover {
  text-decoration: underline;
}

.credits__grid {
  margin: 18px auto 20px;
  max-width: 720px;
}

.credits__role {
  font-weight: 900;
  font-size: 16px;
}

.credits__names {
  font-weight: 650;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.credits__icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.credits__soc {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.credits__brand {
  margin-top: 26px;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 30px;
  /* más grande */
}

.credits__brandA {
  color: var(--blue);
}

.credits__brandSep {
  color: rgba(255, 255, 255, .35);
  margin: 0 10px;
}

.credits__brandB {
  color: rgba(255, 255, 255, .55);
  font-weight: 800;
}

/* =========================================================
   INTRO GATE (tu estilo, sin duplicados peligrosos)
   ========================================================= */
body.is-locked {
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #061024;
  opacity: 1;
  visibility: visible;
  transition: opacity .85s ease, visibility .85s ease;
}

.intro-gate__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 48% 52%, rgba(11, 99, 209, .55) 0%, rgba(7, 23, 60, .35) 45%, rgba(0, 0, 0, .78) 100%),
    radial-gradient(1200px 800px at 15% 85%, rgba(11, 99, 209, .25) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #071228 0%, #040812 100%);
  filter: saturate(1.05) contrast(1.02);
}

.intro-gate__map {
  position: absolute;
  left: 6%;
  top: 12%;
  width: min(460px, 52vw);
  opacity: .22;
  filter: grayscale(1) contrast(.9) brightness(.95);
  pointer-events: none;
}

.intro-gate__brand {
  position: absolute;
  top: 28px;
  left: 56px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 14px;
  text-transform: uppercase;
}

.intro-gate__title {
  position: absolute;
  top: 70px;
  right: 70px;
  max-width: min(720px, 62vw);
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: clamp(52px, 5.2vw, 96px);
  line-height: .92;
  color: rgba(0, 0, 0, .55);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  margin: 0;
  pointer-events: none;
}

.intro-gate__cta {
  position: absolute;
  left: 70px;
  bottom: 70px;
  display: grid;
  gap: 14px;
}

.intro-gate__cta p {
  margin: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.25;
}

.intro-gate__btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f2f2f2 55%, #dedede 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45), 0 0 0 3px rgba(255, 255, 255, .25) inset;
  color: #1b5fd6;
  transition: transform .18s ease, filter .18s ease;
}

.intro-gate__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

body.is-unlocked .intro-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 981px) {
  .separador-guarda {
    display: none;
  }

  .separador-guarda img {
    display: none;
  }

  .separador-nota2 {
    display: none;
  }

  .separador-nota2 img {
    display: none;
  }

  .desaparecer-desktop {
    display: none;
  }
}

/* =========================================================
   RESPONSIVE: TABLET
   ========================================================= */
@media (max-width: 980px) {

  .topbar {
    padding: 0 14px;
    gap: 12px;
  }

  .logo {
    height: 30px;
  }

  .search input {
    width: 160px;
  }

  .menu {
    gap: 14px;
    padding: 0 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu::-webkit-scrollbar {
    display: none;
  }

  .menu a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .hero {
    padding: 0 24px;
  }

  .hero__img {
    left: 0;
    scale: 1.4;
    width: 44%;
  }

  .hero__title {
    right: 0;
    font-size: 72px;
  }

  .content-info,
  .contet-prob,
  .quote-box,
  .content-info-II,
  .content-info-II-2 {
    width: min(860px, 92vw);
  }

  .content-info-img,
  .content-info-img-II {
    gap: 14px;
  }

  .map-provincia__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .map-provincia__search {
    margin-top: 0;
  }
}

/* =========================================================
   RESPONSIVE: MOBILE (PEDIDO CLAVE)
   - TODO al 100% del ancho real
   - títulos/parrafos más grandes
   - arregla “ancho raro” en body2 y texto azul
   ========================================================= */
@media (max-width: 680px) {

  :root {
    --topbar-h: 58px;
    --menu-h: auto;
  }

  .topbar {
    height: var(--topbar-h);
    padding: 0 12px;
  }

  .logo {
    height: 28px;
  }

  .search {
    padding: 6px 8px;
    gap: 6px;
  }

  .search input {
    width: 120px;
    font-size: 13px;
  }

  .search button {
    padding: 6px 9px;
  }

  .menu {
    height: auto;
    padding: 10px 12px;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 99, 209, .08);
    font-size: 13px;
    white-space: nowrap;
  }

  .menu a.active {
    text-decoration: none;
    background: var(--blue);
    color: #fff;
  }

  .desaparecer-mobil {
    display: none;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--topbar-h));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px 14px 28px;
    gap: 10px;
    text-align: center;
  }

  .hero__img {
    width: min(520px, 92vw);
    left: 0;
    scale: 1;
  }

  .hero__title {
    right: 0;
    font-size: clamp(52px, 13vw, 72px);
    line-height: .92;
    text-align: center;
    margin-top: 6px;
  }

  .sep,
  .sep-2 {
    padding: 4px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sep-2 {
    border-radius: 26px 0 0 0;
  }

  /* --- Pediste: TODO 100% en mobile --- */
  .content-info,
  .contet-prob,
  .quote-box,
  .content-info-II,
  .content-info-II-2 {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Tipos más grandes en mobile */
  .title {
    font-size: clamp(48px, 12.8vw, 72px);
  }

  .parrafo {
    font-size: 1.18em;
  }

  .separador-tele {
    width: 70%;
    margin-top: 1em;
    overflow: hidden;
    margin: auto;
  }

  .separador-tele img {
    width: 100%;
    margin: auto;
  }

  .separador-guarda {
    margin: 22px auto;
  }

  .separador-guarda img {
    width: 46% !important;
    /* <-- ACÁ se achica */
    max-width: 140px !important;
    /* tope para que no explote */
    height: auto !important;
    margin: 0 auto !important;

  }

  .content-info-img,
  .content-info-img-II {
    flex-direction: column;
    width: 100%;
    padding: 0 14px;
    gap: 14px;
  }

  .content-right,
  .content-right-II {
    display: none;
  }

  /* guardas laterales en mobile: ocultas */
  .content-img,
  .content-img-II {}

  .content-info-p,
  .content-info-p-II {
    width: 100% !important;
    max-width: 100%;
    font-size: 1.12em;
    line-height: 1.55;
  }

  /* Quote box */
  .quote-box {
    padding: 20px 18px;
    margin: 26px auto 14px;
  }

  .quote-box::after {
    left: 18px;
  }

  .quote-box__text {
    font-size: clamp(20px, 5.2vw, 28px);
  }

  /* Mano/iconos: fuera en mobile (te estaba deformando el globo) */
  .quote-box__icon {
    display: none !important;
  }

  .quote-box--icon {
    padding-right: 18px !important;
  }

  .content-box-text {
    display: block;

  }

  .content-box-text figure {
    display: none !important;
  }

  .content-box-text img {
    display: none !important;
  }

  /* Mapa provincia: full */
  .map-provincia {
    padding: 30px 0 40px;
  }

  .map-provincia__head {
    width: 100%;
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  .map-provincia__layout {
    width: 70%;
    display: block;
    margin: auto;

  }

  .map-provincia__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .map-provincia__search {
    width: 100%;
    max-width: 360px;
    margin-top: 0;
  }

  /* Flourish half: en mobile vuelve a 100% */
  .flourish-half {
    width: 100%;
  }

  /* Charts II */
  .content-prob-II {
    flex-direction: column;
    gap: 16px;
    padding: 0 14px;
  }

  .content-prob-II>div {
    width: 100%;
  }

  /* Intro gate mobile */
  .intro-gate__brand {
    left: 18px;
    top: 18px;
    font-size: 13px;
  }

  .intro-gate__title {
    right: 18px;
    top: 56px;
    max-width: 92vw;
  }

  .intro-gate__map {
    left: 4%;
    top: 16%;
    width: 70vw;
    opacity: .18;
  }

  .intro-gate__cta {
    left: 18px;
    bottom: 26px;
  }

  .intro-gate__btn {
    width: 58px;
    height: 58px;
  }
}

/* =========================================================
   MOBILE CHICO
   ========================================================= */
@media (max-width: 420px) {
  .search input {
    width: 88px;
  }

  .menu a {
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .hero {
    padding: 18px 12px 24px;
  }

  .hero__title {
    font-size: clamp(46px, 13.2vw, 64px);
  }
}

/* =========================================================
   UNIFICAR ANCHO DE TEXTO (TODOS LOS PARRAFOS)
   Pegalo AL FINAL del CSS
   ========================================================= */

/* 1) ancho único para lectura (desktop/tablet) */
:root {
  --text-w: min(980px, 52vw);
  /* si querés más ancho: 60vw */
}

/* 2) cualquier contenedor que tenga texto pasa a usar el mismo ancho */
.content-info,
.content-info-II,
.content-info-II-2,
.contet-prob,
.quote-box,
.map-provincia__head,
.metodo__inner,
.credits__inner {
  width: var(--text-w) !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 3) todos los <p> dentro de esos bloques ocupan 100% del contenedor */
.content-info p,
.content-info-II p,
.content-info-II-2 p,
.contet-prob p,
.map-provincia__head p,
.metodo__inner p,
.credits__inner p,
.content-info-p,
.content-info-p-II,
.content-p,
.block-subtitle,
.credits__names,
.credits__lead {
  width: 100% !important;
  max-width: 100% !important;
}

/* 4) ojo: tus layouts con columnas no deben forzar 50% en el párrafo */
.content-info-img .content-info-p,
.content-info-img-II .content-info-p-II {
  width: 100% !important;
  /* en desktop igual lo dejamos al ancho de lectura */
}

/* 5) En mobile: todo el texto es 100% del viewport (con padding) */
@media (max-width: 680px) {
  :root {
    --text-w: 100%;
  }

  .content-info,
  .content-info-II,
  .content-info-II-2,
  .contet-prob,
  .quote-box,
  .map-provincia__head,
  .metodo__inner,
  .credits__inner {
    width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* =========================================================
   1 SOLO ANCHO PARA TODO (PARRAFOS + TITULOS + BLOQUES)
   PEGAR AL FINAL DEL CSS
   ========================================================= */

:root {
  /* Ajustá este valor y cambia TODO el sitio */
  --read-w: 860px;
  /* probá 900px si lo querés más ancho */
  --read-pad: 14px;
  /* padding mobile */
}

/* 1) Fuerzo un “ancho de lectura” a TODOS los bloques principales */
.content-info,
.content-info-II,
.content-info-II-2,
.contet-prob,
.quote-box,
.map-provincia,
.map-provincia__head,
.resumen-bloques__title,
.resumen-bloques__grid,
.credits__inner,
.metodo__inner {
  width: min(var(--read-w), 92vw) !important;
  max-width: min(var(--read-w), 92vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 2) TODAS las piezas de texto adentro ocupan 100% del ancho de lectura */
.content-info h1,
.content-info h2,
.content-info h3,
.content-info p,
.content-info-II h1,
.content-info-II h2,
.content-info-II h3,
.content-info-II p,
.content-info-II-2 p,
.map-provincia__head h2,
.map-provincia__head p,
.contet-prob h2,
.contet-prob h3,
.contet-prob p,
.quote-box p,
.resumen-bloques__title,
.resumen-bloques__text,
.credits__title,
.credits__lead,
.credits__role,
.credits__names,
.metodo__title,
.metodo__qtext,
.metodo__a-inner {
  width: 100% !important;
  max-width: 100% !important;
}

/* 3) MATAMOS el layout “3 columnas” cuando la intención es texto alineado */
.content-info-img,
.content-info-img-II {
  width: min(var(--read-w), 92vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;

  /* clave: el texto ya no depende de 25%-50%-25% */
  display: block !important;
}

/* Ocultamos las figuras laterales que están rompiendo el ancho (micrófono, mano, etc.) */
.content-info-img>.content-img,
.content-info-img>.content-right,
.content-info-img-II>.content-img-II,
.content-info-img-II>.content-right-II {}

/* El párrafo dentro de esos layouts ahora es 100% del ancho de lectura */
.content-info-img>.content-info-p,
.content-info-img-II>.content-info-p-II {
  width: 100% !important;
  max-width: 100% !important;
}

/* 4) Quote-box: mismo ancho exacto que el resto (ya lo igualamos arriba)
      pero respetamos padding interno */
.quote-box {
  padding-left: 34px;
  padding-right: 34px;
}

/* 5) Mobile: todo 100% con padding consistente */
@media (max-width: 680px) {

  .content-info,
  .content-info-II,
  .content-info-II-2,
  .contet-prob,
  .quote-box,
  .map-provincia,
  .map-provincia__head,
  .credits__inner,
  .metodo__inner,
  .content-info-img,
  .content-info-img-II {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: var(--read-pad) !important;
    padding-right: var(--read-pad) !important;
  }

  /* Quote padding más compacto en mobile */
  .quote-box {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* =========================================================
   SLOPE (MOBILE): header + gráfico al 80% centrado
   PEGAR AL FINAL DEL CSS
   ========================================================= */
@media (max-width: 680px) {

  /* El bloque completo no ocupa toda la pantalla */
  .slope-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Header (título/subtítulo/select) al 80% */
  .slope-head {
    width: 80% !important;
    margin: 0 auto 12px auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  /* Selector en fila, alineado prolijo */
  .slope-controls {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .slope-label {
    margin: 0 !important;
    white-space: nowrap;
  }

  .slope-select {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
  }

  /* Caja del gráfico al 80% */
  .slope-wrap {
    width: 80% !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    /* sin scroll */
    border-radius: 14px;
  }

  .slope-svg {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}

/* =========================================================
   FIX GUARDAS (ESCRITORIO vs MOBILE)
   PEGAR AL FINAL DEL CSS (MUY IMPORTANTE)
   ========================================================= */

/* ---------- ESCRITORIO / TABLET GRANDE ---------- */
@media (min-width: 981px) {

  /* En escritorio NO se ven las guardas separador */
  .separador-guarda,
  .separador-guarda img {
    display: none !important;
  }

  /* Recuperamos el layout de 3 columnas (25 / 50 / 25)
     porque tu bloque final lo estaba rompiendo con display:block */
  .content-info-img,
  .content-info-img-II {
    display: flex !important;
    width: 100% !important;
    margin-top: 2em !important;
    align-items: flex-start;
  }

  /* Columnas laterales visibles (en el orden del HTML) */
  .content-info-img>.content-img,
  .content-info-img-II>.content-img-II {
    display: block !important;
    width: 25% !important;
  }

  .content-info-img>.content-right,
  .content-info-img-II>.content-right-II {
    display: block !important;
    width: 25% !important;
  }

  /* Texto al centro como lo tenías (50%) */
  .content-info-img>.content-info-p,
  .content-info-img-II>.content-info-p-II {
    width: 50% !important;
    max-width: 50% !important;
  }

  /* NO mates las imágenes laterales con reglas viejas */
  .content-info-img>.content-img img,
  .content-info-img-II>.content-img-II img {
    display: block !important;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 680px) {

  /* En mobile SOLO se ven las guardas separador */
  .separador-guarda,
  .separador-guarda img {
    display: block !important;
  }

  /* En mobile NO se ven las columnas laterales (micros/guardas) */
  .content-info-img>.content-img,
  .content-info-img>.content-right,
  .content-info-img-II>.content-img-II,
  .content-info-img-II>.content-right-II {
    display: none !important;
  }

  /* El texto ocupa todo el ancho */
  .content-info-img,
  .content-info-img-II {
    display: block !important;
    width: 100% !important;
    padding: 0 14px !important;
  }

  .content-info-img>.content-info-p,
  .content-info-img-II>.content-info-p-II {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   ESCRITORIO: texto mismo ancho que el resto + guardas a los costados
   PEGAR AL FINAL DEL CSS
   ========================================================= */

/* Tamaño de las guardas laterales en desktop (ajustable) */
:root {
  --side-w: clamp(90px, 12vw, 170px);
  --side-gap: 24px;
}

@media (min-width: 981px) {

  /* En escritorio NO se ven las separador-guarda */
  .separador-guarda,
  .separador-guarda img {
    display: none !important;
  }

  /* Estos bloques deben medir exactamente lo mismo que los párrafos normales */
  .content-info-img,
  .content-info-img-II {
    position: relative;
    display: block !important;
    width: min(var(--read-w), 92vw) !important;
    /* MISMO ANCHO QUE TODO */
    max-width: min(var(--read-w), 92vw) !important;
    margin: 2em auto 0 !important;
    padding: 0 !important;
  }

  /* El texto ocupa TODO el ancho de lectura (igual que los demás párrafos) */
  .content-info-img>.content-info-p,
  .content-info-img-II>.content-info-p-II {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ===== Nota 1: guardas (content-img izquierda / content-right derecha) ===== */
  .content-info-img>.content-img {
    position: absolute;
    left: calc(-1 * (var(--side-w) + var(--side-gap)));
    top: 0;
    width: var(--side-w) !important;
    display: block !important;
  }

  .content-info-img>.content-right {
    position: absolute;
    right: calc(-1 * (var(--side-w) + var(--side-gap)));
    top: 0;
    width: var(--side-w) !important;
    display: block !important;
  }

  /* ===== Nota 2: guardas (content-right-II izquierda / content-img-II derecha) ===== */
  .content-info-img-II>.content-right-II {}

  .content-info-img-II>.content-img-II {
    position: absolute;
    right: calc(-1 * (var(--side-w) + var(--side-gap)));
    top: 0;
    width: var(--side-w) !important;
    display: block !important;
  }

  /* Las imágenes laterales no deben “achicarse raro” */
  .content-img img,
  .content-img-II img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* =========================================================
   MOBILE: solo separador-guarda (por si alguna regla vieja pisa)
   ========================================================= */
@media (max-width: 680px) {

  .content-info-img>.content-img,
  .content-info-img>.content-right,
  .content-info-img-II>.content-img-II,
  .content-info-img-II>.content-right-II {
    display: none !important;
  }

  .separador-guarda,
  .separador-guarda img {
    display: block !important;
  }

  .title br {
    display: none;
  }
}

/* =========================================================
   HOME MOBILE: MISMA POSICIÓN en oscuro (intro-gate) y claro (hero)
   PEGAR AL FINAL DEL CSS
   ========================================================= */
@media (max-width: 680px) {

  /* ---------- INTRO (OSCURO) ---------- */
  .intro-gate__map {
    /* mismo “lugar” que hero */
    left: 50% !important;
    top: 18% !important;
    transform: translateX(-50%) !important;
    width: min(620px, 92vw) !important;
    opacity: .22 !important;
  }

  .intro-gate__title {
    left: 50% !important;
    right: auto !important;
    top: 56% !important;
    /* título debajo del mapa */
    transform: translateX(-50%) !important;
    width: min(560px, 92vw) !important;
    max-width: min(560px, 92vw) !important;
    text-align: center !important;
    font-size: clamp(64px, 14vw, 88px) !important;
    /* más grande */
    line-height: .9 !important;
  }

  /* ---------- HERO (CLARO) ---------- */
  .hero {
    /* mismo “layout visual” */
    min-height: calc(100vh - var(--topbar-h) - var(--menu-h)) !important;
    justify-content: flex-start !important;
    padding-top: 34px !important;
    gap: 16px !important;
  }

  .hero__img {
    /* mapa en mismo lugar que intro */
    order: 1 !important;
    width: min(620px, 92vw) !important;
    transform: none !important;
    scale: 1.25 !important;
    /* más grande */
    margin-top: 6px !important;
  }

  .hero__title {
    /* título debajo, igual al intro */
    order: 2 !important;
    width: min(560px, 92vw) !important;
    text-align: center !important;
    font-size: clamp(64px, 14vw, 88px) !important;
    /* más grande */
    line-height: .9 !important;
    margin-top: 10px !important;
  }

  /* (Opcional) si querés que no “se pierda” el fondo, subimos contraste */
  .hero__title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  }
}

/* =========================================================
   HOME: MISMA POSICIÓN (OSCURO vs CLARO) + MÁS GRANDES
   DESKTOP + MOBILE
   PEGAR AL FINAL DEL CSS
   ========================================================= */

/* ---------- DESKTOP / TABLET GRANDE ---------- */
@media (min-width: 981px) {

  /* HERO (CLARO) */
  .hero {
    position: relative;
    padding: 0 60px !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Mapa: misma “columna” visual que el intro */
  .hero__img {
    width: min(520px, 42vw) !important;
    left: 260px !important;
    /* ajusta el “lugar” */
    scale: 2.25 !important;
    /* más grande (antes 2) */
  }

  /* Título: misma “columna” visual que el intro */
  .hero__title {
    right: 260px !important;
    /* ajusta el “lugar” */
    font-size: clamp(88px, 6.2vw, 118px) !important;
    /* más grande */
    line-height: .9 !important;
  }

  /* INTRO (OSCURO) -> lo ponemos “igual” al hero */
  .intro-gate__map {
    left: 6% !important;
    /* mismo espíritu que hero */
    top: 12% !important;
    width: min(520px, 42vw) !important;
    opacity: .22 !important;
  }

  .intro-gate__title {
    right: 70px !important;
    top: 70px !important;
    max-width: min(720px, 62vw) !important;
    font-size: clamp(88px, 6.2vw, 118px) !important;
    /* igual que hero */
    line-height: .9 !important;
  }
}

/* ---------- MOBILE (por si ya lo pegaste antes, lo reafirmo) ---------- */
@media (max-width: 680px) {

  .intro-gate__map {
    left: 50% !important;
    top: 18% !important;
    transform: translateX(-50%) !important;
    width: min(620px, 92vw) !important;
  }

  .intro-gate__title {
    left: 50% !important;
    right: auto !important;
    top: 56% !important;
    transform: translateX(-50%) !important;
    width: min(560px, 92vw) !important;
    text-align: center !important;
    font-size: clamp(64px, 14vw, 88px) !important;
    line-height: .9 !important;
  }

  .hero__img {
    width: min(620px, 92vw) !important;
    scale: 1.25 !important;
  }

  .hero__title {
    width: min(560px, 92vw) !important;
    text-align: center !important;
    font-size: clamp(64px, 14vw, 88px) !important;
    line-height: .9 !important;
  }
}

/* =========================================================
   FIX: CENTRAR TODAS LAS GUARDAS EN MOBILE (NO tele)
   PEGAR AL FINAL
   ========================================================= */

@media (max-width: 680px) {
  .separador-nota2 {
    width: 30%;
    margin: 12px auto -24px auto;

  }

  .separador-nota2 img {
    width: 80%;
    margin: 12px auto -24px auto;
  }

}

/* =========================================================
   INTRO: HINT MANO (CTA)
   ========================================================= */

.intro-gate__cta {
  position: absolute;
  left: 70px;
  bottom: 70px;
  display: grid;
  gap: 14px;

  /* clave: para ubicar la mano relativa a este bloque */
  z-index: 5;
}

.intro-gate__hint {
  position: absolute;
  /* al lado derecho del botón */
  left: 86px;
  /* ajusta fino si querés más pegado */
  bottom: 6px;
  width: 84px;
  height: 84px;
  pointer-events: none;
  opacity: .95;
  display: grid;
  place-items: center;

  /* animación suave constante */
  animation: introHintNudge 1.2s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.intro-gate__hand {
  width: 100%;
  height: 100%;
  transform: rotate(-8deg);
  /* “apunta” un poco más al botón */
}

/* mini pulsos */
.intro-gate__pulse {
  position: absolute;
  left: 8px;
  /* cerca del borde que apunta al botón */
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .85);
  transform: translateY(-50%);
  opacity: 0;
}

.intro-gate__pulse.p1 {
  animation: introPulse 1.2s ease-out infinite;
}

.intro-gate__pulse.p2 {
  animation: introPulse 1.2s ease-out infinite .35s;
}

@keyframes introHintNudge {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-12px) translateY(0);
  }

  /* va “hacia” el botón */
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes introPulse {
  0% {
    transform: translateY(-50%) scale(.8);
    opacity: 0;
  }

  35% {
    opacity: .85;
  }

  100% {
    transform: translateY(-50%) scale(2.2);
    opacity: 0;
  }
}

/* =====================
   MOBILE: reajustes
   ===================== */
@media (max-width: 680px) {
  .intro-gate__cta {
    left: 18px;
    bottom: 26px;
  }

  .intro-gate__hint {
    left: 76px;
    /* al lado del botón mobile */
    bottom: 4px;
    width: 72px;
    height: 72px;
    animation-duration: 1.05s;
  }
}

/* MOBILE chico */
@media (max-width: 420px) {
  .intro-gate__hint {
    left: 70px;
    width: 66px;
    height: 66px;
  }
}

/* ===== INTRO: HINT con EMOJI 👈🏻 ===== */

.intro-gate__cta {
  position: absolute;
  left: 70px;
  bottom: 70px;
  display: grid;
  gap: 14px;
  z-index: 5;
}

.intro-gate__hint {
  position: absolute;
  left: 92px;
  /* al lado derecho del botón */
  bottom: 10px;
  pointer-events: none;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.intro-gate__emoji {
  display: inline-block;
  font-size: 44px;
  /* tamaño del emoji */
  line-height: 1;
  transform-origin: center;
  animation: introEmojiNudge 1.1s ease-in-out infinite;
  will-change: transform;
}

/* Pulsos (opcional) */
.intro-gate__pulse {
  position: absolute;
  left: -8px;
  /* cerca del lado que “apunta” al botón */
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .85);
  transform: translateY(-50%);
  opacity: 0;
}

.intro-gate__pulse.p1 {
  animation: introPulse 1.2s ease-out infinite;
}

.intro-gate__pulse.p2 {
  animation: introPulse 1.2s ease-out infinite .35s;
}

@keyframes introEmojiNudge {
  0% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(-14px) scale(1.02);
  }

  /* va hacia el botón */
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes introPulse {
  0% {
    transform: translateY(-50%) scale(.8);
    opacity: 0;
  }

  35% {
    opacity: .85;
  }

  100% {
    transform: translateY(-50%) scale(2.2);
    opacity: 0;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 680px) {
  .intro-gate__cta {
    left: 18px;
    bottom: 26px;
  }

  .intro-gate__hint {
    left: 80px;
    bottom: 8px;
  }

  .intro-gate__emoji {
    font-size: 38px;
    animation-duration: 1.0s;
  }
}

@media (max-width: 420px) {
  .intro-gate__hint {
    left: 76px;
  }

  .intro-gate__emoji {
    font-size: 36px;
  }
}

/* ===== Iconos SVG en botones share ===== */
.soc-ico {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  /* usa el color del link */
}

.credits__soc {
  color: #fff;
  /* icono blanco */
  background: transparent;
}

.credits__soc:hover {
  background: rgba(255, 255, 255, .08);
}

/* ===== Toast compartir ===== */
.share-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .75);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 99999;
}

.share-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.azul {
  color: #0b63d1;
}

.content-info {
  margin-bottom: -1em !important;
  margin-top: -1em !important;
}

/* =========================================================
   RESUMEN 43/37/20 - MOBILE: barras arriba (100%) + texto abajo (100%)
   ========================================================= */
@media (max-width: 680px) {

  /* El contenedor pasa a 1 columna */
  .resumen-bloques__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: start !important;
  }

  /* Barras arriba y ocupan todo el ancho */
  .resumen-bloques__bars {
    width: 100% !important;
    height: 140px;
    /* ajustá si querés */
  }

  /* Texto abajo y 100% */
  .resumen-bloques__text {
    width: 100% !important;
  }

  .resumen-bloques__text p {
    width: 100% !important;
    margin: 0 0 12px 0 !important;
  }
}

/* ===== Leyenda: 0% ---- barra ---- 100% (mismo ancho) ===== */
.map-legend {
  width: 22%;
  max-width: 420px;
  /* poné el mismo ancho que uses para el mapa/barrita */
  margin: 0 auto 10px auto;
  /* centrado */
}

.map-legend__labels {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22%;
  /* mismo ancho que la barra */
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0b63d1;
  margin-bottom: 6px;
  /* separación con la barrita */
}

.map-legend__bar {
  width: 22%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cfe6ff 0%, #0b63d1 100%);
  box-shadow: 0 0 0 1px rgba(11, 99, 209, .18) inset;
  margin: auto;
}

/* =========================================================
   MAPA (DESKTOP): centrado real
   ========================================================= */
@media (min-width: 981px) {

  /* el layout deja de ser 2 columnas y centra todo */
  .map-provincia__layout {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  /* el bloque del mapa centrado */
  .map-provincia__map {
    width: min(520px, 92vw) !important;
    /* ajustá 520 si lo querés más grande */
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .map-provincia__map .flourish-embed {
    width: 100% !important;
  }

  .desaparecer-desktop {
    display: none !important;
  }
}

/* ===== bloque mapa centrado, estilo como tu captura ===== */
.map-block {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 10px 0 30px;
}

.map-block__head {
  width: 100%;
}

.map-block__title {
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: 4.2em;
  line-height: .95;
  color: #111;
  margin: 0 0 6px 0;
}

.map-block__subtitle {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05em;
  line-height: 1.35;
  color: #111;
  max-width: 760px;
}

/* leyenda arriba del mapa */
.map-legend {
  width: min(340px, 60vw);
  margin: 10px auto 12px auto;
}

.map-legend__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0b63d1;
  margin-bottom: 6px;
}

.map-legend__bar {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7ecff 0%, #0b63d1 100%);
  box-shadow: 0 0 0 1px rgba(11, 99, 209, .18) inset;
}

/* contenedor del mapa centrado */
.map-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.arg-map {
  width: min(520px, 86vw);
  height: auto;
  display: block;
}

/* provincias */
.prov {
  stroke: rgba(255, 255, 255, .85);
  stroke-width: 1;
}

.prov:hover {
  stroke: rgba(7, 18, 40, .7);
  stroke-width: 1.6;
}

/* labels porcentaje */
.prov-label {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  fill: rgba(7, 18, 40, .75);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, .85);
  stroke-width: 3px;
  stroke-linejoin: round;
  pointer-events: none;
}

/* tooltip */
.map-tip {
  position: absolute;
  z-index: 10;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(7, 18, 40, .92);
  color: #fff;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  pointer-events: none;
  transform: translate(-50%, -110%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

/* mobile: todo a 100% y centrado */
@media (max-width: 680px) {
  .map-block {
    width: 100%;
    padding: 10px 14px 30px;
  }

  .map-block__title {
    font-size: clamp(44px, 10.8vw, 66px);
  }

  .map-legend {
    width: min(320px, 76vw);
  }

  .arg-map {
    width: min(420px, 92vw);
  }
}

/* =========================================================
   FIX ESPACIOS ROJOS - SOLO MOBILE y SOLO EN ESOS BLOQUES
   PEGAR AL FINAL
   ========================================================= */
@media (max-width: 680px) {

  /* 1) Bloque 43/37/20: sacamos el “aire” de abajo */
  .resumen-bloques {
    padding-bottom: 8px !important;
    /* antes 44px */
  }

  /* 2) El bloque de texto inmediatamente después del resumen:
        que no meta padding/margen arriba */
  .resumen-bloques+.content-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* 3) Las figuras que marcaste (tele / guardas / separadores):
        sin margen abajo */
  .separador-tele,
  .separador-guarda,
  .separador-nota2,
  .separador-II {
    margin-bottom: 0 !important;
  }

  /* 4) Y el contenido inmediatamente después de esas figuras,
        sin “salto” arriba */
  .separador-tele+.content-info,
  .separador-tele+.content-info-img,
  .separador-guarda+.content-info,
  .separador-guarda+.content-info-img,
  .separador-nota2+.content-info-II,
  .separador-nota2+.content-info-img-II,
  .separador-II+.content-info-II,
  .separador-II+.content-info-img-II {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .separador-guarda {}
}


/* =========================================================
   MOBILE: TODAS LAS GUARDAS CON EL MISMO ESPACIADO (ARRIBA/ABAJO)
   PEGAR AL FINAL
   ========================================================= */
@media (max-width: 680px) {

  /* Ajustá acá el espacio único */
  :root {
    --space-guarda: 8px;
    /* probá 16px / 20px según te guste */
  }

  /* 1) Todas las guardas separadoras (las de línea) */
  figure.separador-guarda,
  figure.separador-nota2,
  figure.separador-II {
    margin: var(--space-guarda) auto !important;
    /* MISMO arriba/abajo */
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
  }

  /* Sus imágenes centradas */
  figure.separador-guarda img,
  figure.separador-nota2 img,
  figure.separador-II img {
    display: block !important;
    margin: 0 auto !important;
    /* sin margen extra */
    padding: 0 !important;
    height: auto !important;
    width: min(320px, 40%) !important;
    /* mismo “look” en todas */
  }

  /* 2) Si querés que la TELE tenga también el mismo espaciado,
        dejá esto. Si NO, borrá este bloque. */
  figure.separador-tele {
    margin: var(--space-guarda) auto !important;
  }

  /* 3) Anulamos reglas viejas que estaban rompiendo (negativos / distintos) */
  .separador-guarda,
  .separador-nota2 {
    margin-bottom: var(--space-guarda) !important;
    margin-top: var(--space-guarda) !important;
  }

  .margin-bottom {
    margin-bottom: 300px !important;
  }

  .sacar-margin {
    margin-bottom: -100px !important;
  }

  .agregar-margin {
    margin-top: 100px !important;
  }

  .agregar-margin img {}
}

@media (max-width: 680px) {
  figure.separador-guarda.agregar-margin {
    margin: 40px auto var(--space-guarda) auto !important;
    /* top, left/right, bottom */
    /* tu debug */
  }
}

/* ===== CREDITOS: marca igual al header ===== */
.credits__brand {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 22px;
  /* ajustá si querés */
}

.credits__brandA {
  color: #fff;
  /* FOPEA azul */
}

.credits__brandSep {
  color: rgba(255, 255, 255, .55);
  /* | gris claro */
  margin: 0 6px;
}

.credits__brandB {
  color: #ffffff;
  /* DJV BOOTCAMP blanco (como el header) */
  font-weight: 900;
}

/* mobile */
@media (max-width: 680px) {
  .credits__brand {
    font-size: 20px;
  }
}

@media (max-width: 680px) {

  /* permitir SOLO este salto */
  .title .desaparecer-desktop {
    display: inline !important;
  }
}

/* =========================
   MAP LEGEND: alineada con la línea negra + escala 0–60
   PEGAR AL FINAL
   ========================= */

/* contenedor igual al "ancho del mapa" */
.map-legend {
  width: 100% !important;
  /* mismo ancho que el contenedor donde está */
  /* mismo ancho que tu mapa (map-provincia__map = 420px) */
  margin: 10px auto 12px auto;

  position: relative;
  top: 35px;
  /* centrada */
}

/* labels 0% y 60% alineadas a los extremos de la línea */
.map-legend__labels {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0b63d1;
  margin: 0 0 6px 0 !important;
}

/* esta ES la “línea negra” + la barrita encima */
.map-legend__bar {
  width: 100% !important;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7ecff 0%, #0b63d1 100%);
  box-shadow: 0 0 0 2px #111 inset;
  /* línea negra */
}

/* MOBILE: que siga igual pero un toque más angosta si querés */
@media (max-width: 680px) {
  .map-legend {
    max-width: 320px;
  }
}

/* =========================
   MAP LEGEND: más gruesa + más contraste
   PEGAR AL FINAL
   ========================= */

.map-legend {
  width: 100% !important;
  max-width: 420px;
  margin: 10px auto 12px auto;
}

/* 0% y 60% bien claros */
.map-legend__labels {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  /* un poco más grande */
  color: #0b63d1;
  margin: 0 0 8px 0 !important;
}

/* Barra más gruesa y legible */
.map-legend__bar {
  width: 100% !important;
  height: 14px;
  /* ✅ MÁS GRUESA (antes 6px) */
  border-radius: 999px;

  /* gradiente más contrastado */
  background: linear-gradient(90deg,
      #eaf4ff 0%,
      #b9dcff 35%,
      #4d9bff 70%,
      #0b63d1 100%);

  /* borde blanco externo para que resalte sobre el fondo */
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .95),
    0 0 0 5px rgba(11, 99, 209, .25),
    inset 0 0 0 1.5px rgba(0, 0, 0, .55);
  /* “línea” oscura finita dentro */
}

/* Mobile: misma idea pero un toque más compacta */
@media (max-width: 680px) {
  .map-legend {
    max-width: 320px;
  }

  .map-legend__bar {
    height: 16px;
  }

  /* en mobile todavía más fácil de ver */
  .map-legend__labels {
    font-size: 13px;
  }
}