@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

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

html {
  font-size: 1rem;
}

:root {
  --azul: #111b49;
  --fondo: #eafafa;
  --barra: #cceced;
  --turquesa: #10b8d4;
  --rosa: #ff3f86;
  --amarillo: #ffc20e;
  --amarillo-suave: #ffecad;
  --celeste: #bff1f4;
  --celeste-suave: #d8f2f2;
  --rosa-suave: #f7dce8;
  --amarillo-suave-2: #f4f1c9;
  --lila: #d8daef;
  --texto: #111b49;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--fondo);
  color: var(--texto);
  max-width: 26.875rem;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 5.5rem;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font-family: inherit;
}

main {
  padding: 1.5rem 1.125rem 7rem;
}

header {
  height: 6.6875rem;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo img {
  width: 8.25rem;
}

.logo p {
  display: none;
}

.menu-desktop {
  display: none;
}

#regresar {
  position: absolute;
  left: 1.75rem;
}

#regresar img {
  width: 2.125rem;
}

#configuracion {
  position: absolute;
  right: 1.75rem;
  z-index: 200;
}

.boton-config {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.boton-config img {
  width: 2.125rem;
}

.menu-config {
  display: none;
  position: absolute;
  top: 3rem;
  right: 0;
  width: 11.25rem;
  overflow: hidden;
  border-radius: 0 0 .5rem .5rem;
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15);
}

#configuracion:hover .menu-config,
#configuracion:focus-within .menu-config {
  display: block;
}

.menu-config button {
  width: 100%;
  border: none;
  padding: .7rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  cursor: pointer;
}

.menu-config button:nth-child(1),
.menu-config button:nth-child(4) {
  background: #f3d4e4;
}

.menu-config button:nth-child(2),
.menu-config button:nth-child(5) {
  background: #f4f1c9;
}

.menu-config button:nth-child(3) {
  background: #bff1f4;
}

.barra {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 26.875rem;
  width: 100%;
  height: 5.5rem;
  background: var(--barra);
  padding: .5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  align-items: center;
  z-index: 90;
}

.barra a {
  display: block;
}

.barra article {
  width: 100%;
  height: 4.5rem;
  border-radius: .875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.barra article.activo,
.barra .verifica-activo,
.barra .preveni-activo,
.barra .comunidad-activo {
  background: rgba(255, 255, 255, .65);
}

.barra picture img {
  height: 1.875rem;
  margin-bottom: .25rem;
}

.barra p {
  font-size: .875rem;
  line-height: 1;
}

.verificacion {
  background: var(--rosa);
  color:#eafafa;
  border-radius: 1.75rem;
  padding: 1.875rem 1rem;
  text-align: center;
}

.verificacion h1 {
  font-size: 2.375rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.verificacion p,
.verificacion form > p {
  max-width: 17.5rem;
  margin: 0 auto 1.5rem;
  font-size: .9375rem;
  line-height: 1.15;
}

.ejemplo {
  width: 100%;
  min-height: 3.25rem;
  background: var(--fondo);
  border-radius: 1.0625rem;
  padding: 0 1.125rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #999;
}

.ejemplo img {
  width: 1.5625rem;
}

.ejemplo input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: .9375rem;
  color: var(--texto);
}

.boton-verificar {
  width: 100%;
  min-height: 3.75rem;
  border: none;
  border-radius: .9375rem;
  background: var(--amarillo);
  color: black;
  display: grid;
  grid-template-columns: 2.75rem 1fr 1.75rem;
  align-items: center;
  gap: .5rem;
  padding: 0 1.125rem;
  cursor: pointer;
}

.boton-verificar h2,
.boton-verificar span {
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
}

.boton-verificar img {
  width: 2.125rem;
}

.ayuda {
  margin: 1.375rem .5rem;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  column-gap: .375rem;
}

.ayuda picture img {
  width: 1.375rem;
}

.ayuda h5 {
  font-size: 1rem;
  line-height: 1.2;
}

.ayuda ul {
  grid-column: 1 / 3;
  margin-left: 1.125rem;
  margin-top: .25rem;
  font-size: .9375rem;
  line-height: 1.25;
}

.final {
  margin-bottom: .75rem;
}

.imagen-señora img {
  width: 100%;
  border-radius: 1.75rem 1.75rem 0 0;
}

.consejo,
.mensaje-seguridad {
  background: var(--amarillo-suave);
  border-radius: 1rem;
  padding: .75rem 1.125rem;
  display: grid;
  grid-template-columns: 3.625rem 1fr;
  gap: .875rem;
  align-items: center;

}

.consejo {
  border-radius: 0 0 1rem 1rem;

}

.consejo picture img,
.mensaje-seguridad picture img {
  width: 3.625rem;
}

.consejo p,
.mensaje-seguridad p {
  font-size: .9375rem;
  line-height: 1.5rem;
}

.consejo p:first-of-type {
  font-weight: 700;
}

.verif-vinculo,
.verif.vinculo {
  border: .125rem solid var(--turquesa);
  border-radius: 1.25rem;
  padding: .8125rem 2rem;
  margin: .375rem 0 1.375rem;
}

.verif-vinculo p:first-child,
.verif.vinculo p:first-child {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.15;
}

.verif-vinculo p:last-child,
.verif.vinculo p:last-child {
  font-size: .8125rem;
  line-height: 1.15;
  margin-top: .5rem;
}

.resultado {
  border-radius: 2.125rem;
  text-align: center;
  padding: 1.5rem 1.5rem 1.875rem;
  margin-bottom: 1.75rem;
}

.resultado.verificado {
  background: var(--celeste-suave);
}

body:has(img[src*="cuidado"]) .resultado {
  background: var(--rosa-suave);
}

body:has(img[src*="cuidado"]) .verif-vinculo,
body:has(img[src*="cuidado"]) .verif.vinculo {
  border-color: var(--rosa);
}

.resultado picture img {
  width: 9.375rem;
  margin: 0 auto .875rem;
}

.resultado h2 {
  font-size: 2.1875rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: .875rem;
}

body:has(img[src*="cuidado"]) .resultado h2 {
  color: var(--rosa);
}

.resultado p {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.1;
}

.estafas {
  margin: 0 .75rem 1.5rem;
}

.estafas h3 {
  font-size: 1.3125rem;
  line-height: 1.1;
  margin-bottom: 1.125rem;
}

.estafas ul {
  list-style: none;
}

.estafas li {
  position: relative;
  padding-left: 1.125rem;
  margin-bottom: 1.125rem;
  font-size: 1rem;
  line-height: 1.25;
}

.estafas li::before {
  content: "";
  width: .875rem;
  height: .875rem;
  background: var(--turquesa);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .25rem;
}

body:has(img[src*="cuidado"]) .estafas li::before {
  background: var(--rosa);
}

.estafas article:last-child p {
  background: var(--amarillo);
  color: var(--azul);
  border-radius: .9375rem;
  padding: .9375rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  margin-top: 1.125rem;
}

.como_denunciar {
  padding-top: .5rem;
}

.como_denunciar .denuncia {
  border: .125rem solid var(--rosa);
  border-radius: 1.25rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  column-gap: .75rem;
  align-items: center;
  margin-bottom: 1.625rem;
}

.como_denunciar .denuncia picture {
  grid-row: 1 / 3;
}

.como_denunciar .denuncia img {
  width: 4.25rem;
}

.como_denunciar .denuncia h3 {
  font-size: 1.25rem;
  line-height: 1;
}

.como_denunciar .denuncia p {
  font-size: .8125rem;
  line-height: 1.1;
  margin-top: .3125rem;
}

.como_denunciar h2 {
  font-size: 1.6875rem;
  line-height: 1.1;
  margin: 0 .75rem .875rem;
}

.como_denunciar article > h2 + ul::before {
  content: "Denunciá por internet";
  display: block;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.como_denunciar ul {
  list-style: none;
}

.como_denunciar li {
  background: var(--celeste-suave);
  border-radius: .875rem;
  padding: .875rem 1rem;
  margin-bottom: .875rem;
}

.como_denunciar h4 {
  font-size: 1.125rem;
  line-height: 1.1;
  position: relative;
  padding-left: 1rem;
}

.como_denunciar h4::before {
  content: "";
  width: .8125rem;
  height: .8125rem;
  background: var(--rosa);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .3125rem;
}

.como_denunciar li p {
  font-size: .875rem;
  line-height: 1.15;
  margin-top: .375rem;
}

.preveni-estafas,
.prevení_estafas {
  padding: .625rem .25rem 0;
}

.preveni-estafas h2,
.prevení_estafas h2 {
  font-size: 1.9375rem;
  line-height: 1.1;
  margin-bottom: .25rem;
}

.preveni-estafas > p,
.prevení_estafas > p {
  font-size: .875rem;
  line-height: 1.15;
  margin-bottom: 1.625rem;
}

.preveni-estafas article,
.prevení_estafas article {
  min-height: 8.125rem;
  border-radius: 1.5rem;
  padding: 1.375rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 5.625rem 1fr 2rem;
  align-items: center;
  gap: 1rem;
}

.preveni-estafas a:nth-of-type(1) article,
.prevení_estafas article:nth-of-type(1) {
  background: var(--rosa-suave);
}

.preveni-estafas a:nth-of-type(2) article,
.prevení_estafas article:nth-of-type(2) {
  background: var(--celeste);
}

.preveni-estafas a:nth-of-type(3) article,
.prevení_estafas article:nth-of-type(3) {
  background: var(--amarillo-suave-2);
}

.preveni-estafas a:nth-of-type(4) article,
.prevení_estafas article:nth-of-type(4) {
  background: var(--lila);
}

.preveni-estafas article picture:first-child img,
.prevení_estafas article picture:first-child img {
  width: 4.875rem;
}

.preveni-estafas article h3,
.prevení_estafas article h3,
.prevení_estafas article p {
  font-size: 1.1875rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
}

.preveni-estafas article picture:last-child img,
.prevení_estafas article picture:last-child img {
  width: 2rem;
}

.ruta-navegacion {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 500;
  margin-bottom: .75rem;
}

.ruta-navegacion img {
  width: .625rem;
}

.ruta-navegacion span {
  font-weight: 700;
}

.envios-paqueteria,
.organismos-beneficios,
.metodos-de-pago,
.Redes-sociales {
  border-radius: 1.5rem;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.envios-paqueteria {
  background: var(--rosa-suave);
}

.organismos-beneficios {
  background: var(--celeste);
}

.metodos-de-pago {
  background: var(--amarillo-suave-2);
}

.Redes-sociales {
  background: var(--lila);
}

.icono {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.icono img {
  width: 1.75rem;
}

.envios-paqueteria h2,
.organismos-beneficios h2,
.metodos-de-pago h2,
.Redes-sociales h2 {
  font-size: 1rem;
  line-height: 1.1;
}

.empresas,
.billeteras-virtuales,
.redes {
  margin-bottom: 1rem;
}

.empresas article,
.billeteras-virtuales article,
.redes article {
  min-height: 3rem;
  border-radius: 1rem;
  border: .0625rem solid var(--rosa);
  padding: .5rem .875rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.organismos-beneficios + .empresas article {
  border-color: var(--turquesa);
}

.metodos-de-pago + .billeteras-virtuales article {
  border-color: var(--amarillo);
}

.Redes-sociales + .redes article {
  border-color: #4a5cc4;
}

.empresas article img,
.billeteras-virtuales article img,
.redes article img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.empresas h3,
.billeteras-virtuales h3,
.redes h3 {
  font-size: 1.3125rem;
  line-height: 1;
}

.empresas > p,
.billeteras-virtuales > p,
.redes > p {
  font-size: .875rem;
  font-weight: 600;
  margin: .5rem 0 1rem;
}

.contacto-fraudulentos {
  margin-bottom: 1.75rem;
}

.contacto-fraudulentos::before {
  content: "Contactos fraudulentos";
  display: block;
  font-size: 1.5625rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: .875rem;
}

.contacto-fraudulentos .items {
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--rosa-suave);
}

.organismos-beneficios ~ .contacto-fraudulentos .items {
  background: var(--celeste);
}

.metodos-de-pago ~ .contacto-fraudulentos .items {
  background: var(--amarillo-suave-2);
}

.Redes-sociales ~ .contacto-fraudulentos .items {
  background: var(--lila);
}

.contacto-fraudulentos .items h2 {
  font-size: 1.0625rem;
  line-height: 1.15;
  margin-bottom: .625rem;
}

.contacto-fraudulentos .items:nth-child(1) h2::before { content: "1. "; }
.contacto-fraudulentos .items:nth-child(2) h2::before { content: "2. "; }
.contacto-fraudulentos .items:nth-child(3) h2::before { content: "3. "; }
.contacto-fraudulentos .items:nth-child(4) h2::before { content: "4. "; }
.contacto-fraudulentos .items:nth-child(5) h2::before { content: "5. "; }
.contacto-fraudulentos .items:nth-child(6) h2::before { content: "6. "; }

.contacto-fraudulentos .items p {
  font-size: .875rem;
  line-height: 1.35;
}

.como-identificar {
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  column-gap: .75rem;
  align-items: start;
}

.como-identificar picture {
  grid-row: 1 / 3;
}

.como-identificar picture img {
  width: 3.5rem;
}

.como-identificar h3 {
  font-size: 1.125rem;
  line-height: 1.1;
  margin-bottom: .5rem;
}

.como-identificar ul {
  list-style: none;
}

.como-identificar li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  line-height: 1.25;
}

.como-identificar li::before {
  content: "";
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background: var(--rosa);
  position: absolute;
  left: 0;
  top: .25rem;
}

.organismos-beneficios ~ .como-identificar li::before {
  background: var(--turquesa);
}

.metodos-de-pago ~ .como-identificar li::before {
  background: var(--amarillo);
}

.Redes-sociales ~ .como-identificar li::before {
  background: #4a5cc4;
}

.recorda {
  background: var(--celeste-suave);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  margin-bottom: 1rem;
}

.recorda h3 {
  color: var(--rosa);
  font-size: 1.5625rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1rem;
}

.recorda p {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.recorda ul {
  list-style: none;
}

.recorda li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .5rem;
  font-size: .875rem;
}

.recorda li::before {
  content: "×";
  color: var(--rosa);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.recorda video,
video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 10rem;
  margin: 1rem auto 0;
  border: .5rem solid var(--azul);
  border-radius: .75rem;
  background: var(--celeste-suave);
}

.mensaje-seguridad {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.usuario {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--rosa);
  color: white;
  border-radius: .5rem;
  padding: .5rem .875rem;
  width: max-content;
  margin-left: auto;
  margin-bottom: .75rem;
  font-weight: 700;
}

.usuario img {
  width: 1.5rem;
}

.seccion-comunidad h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: .5rem;
}

.seccion-comunidad > p {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.subir-video {
  margin-bottom: 1.5rem;
}

.subir-video picture {
  display: inline-block;
  vertical-align: middle;
}

.subir-video picture img {
  width: 1.5rem;
}

.subir-video h3 {
  display: inline-block;
  font-size: 1rem;
  margin-left: .25rem;
}

.subir-video ul {
  margin-left: 1.25rem;
  font-size: .9375rem;
  line-height: 1.35;
  margin-top: .5rem;
}

.aviso {
  border: .125rem solid var(--turquesa);
  border-radius: 1.25rem;
  padding: .75rem 1rem;
  font-weight: 700;
  margin-top: 1rem;
}

.videos {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  column-gap: .5rem;
  align-items: center;
}

.videos picture img {
  width: 3.25rem;
}

.videos h4 {
  font-size: 1rem;
}

.videos p {
  font-size: .875rem;
}

.boton-video {
  background: var(--amarillo);
  border-radius: 1.5rem;
  padding: .875rem 1.5rem;
  margin-bottom: 1.5rem;
}

.boton-video h5 {
  font-size: 1.5625rem;
  line-height: 1;
}

footer {
  display: none;
}

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  body {
    max-width: none;
    width: 100%;
    padding-bottom: 0;
  }

  main {
    max-width: 50rem;
    width: 100%;
    margin: 0 auto;
    padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
  }

  .barra {
    display: none;
  }

  header {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .logo img {
    width: 8.75rem;
  }

  footer {
    display: none;
  }

  body:has(.ayuda) main {
    max-width: 54rem;
  }

  body:has(.resultado) main {
    max-width: 54rem;
  }

  .preveni-estafas,
  .prevení_estafas,
  .contacto-fraudulentos,
  .empresas,
  .billeteras-virtuales,
  .redes {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 64rem) {

  body {
    max-width: none;
    width: 100%;
    padding-bottom: 0;
  }

  main {
    padding: 3.75rem;
  }

  .barra {
    display: none;
  }

  header {
    height: 6.375rem;
    padding: 0 clamp(1.25rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 16rem 1fr 3rem;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .logo img {
    width: 8.75rem;
    flex-shrink: 0;
  }

  .logo p {
    display: block;
    color: var(--fondo);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 11rem;
  }

  #regresar {
    display: none;
  }

  #configuracion {
    position: relative;
    right: auto;
    justify-self: end;
  }

  .menu-config {
    top: 2.75rem;
    right: 0;
  }

  .menu-desktop {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1.25rem, 4vw, 4rem);
    margin-right: clamp(1.25rem, 4vw, 4rem);
  }

  .menu-desktop a {
    color: var(--fondo);
    font-size: 1.25rem;
    font-weight: 600;
    padding: .65rem 1rem;
    border-radius: .75rem;
  }

  .menu-desktop a.activo {
    background: var(--fondo);
    color: var(--azul);
  }

  footer {
    display: grid;
    grid-template-columns: 16rem 20rem 1fr 12rem 12rem;
    gap: 2rem;
    background: var(--azul);
    color: var(--fondo);
    padding: 2.75rem clamp(2rem, 5vw, 4rem) 1.25rem;
  }

  footer .alertanet,
  footer .footer {
    display: contents;
  }

  footer .alertanet .logo {
    grid-column: 1;
  }

  footer .alertanet .logo img {
    width: 12rem;
  }

  footer .alertanet .logo p {
    display: none;
  }

  footer .alertanet > p {
    grid-column: 2;
    max-width: 16rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: .5rem;
  }

  footer .links {
    grid-column: 4;
  }

  footer .redes {
    grid-column: 5;
  }

  footer h6 {
    font-size: .9375rem;
    margin-bottom: 1.25rem;
  }

  footer ul {
    list-style: none;
  }

  footer li {
    font-size: .9375rem;
    line-height: 1.4;
  }

  footer .privacidad {
    grid-column: 1 / 6;
    border-top: .125rem solid var(--turquesa);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: .8125rem;
  }

  footer .privacidad p:nth-child(2) {
    font-weight: 700;
    margin-bottom: .5rem;
  }

  footer .privacidad p:nth-child(3) {
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.25;
  }

  body:has(.ayuda) main {
    max-width: 82rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 1.25rem;
    align-items: start;
  }

  body:has(.ayuda) .verificacion {
    grid-column: 1;
    padding: 3rem 2.25rem 1.75rem;
    border-radius: 1.75rem;
  }

  body:has(.ayuda) .verificacion h1 {
    font-size: 3.75rem;
    color: #eafafa;
  }

  body:has(.ayuda) .verificacion p {
    font-size: 1.5rem;
    color: white;
    max-width: 31rem;
  }

  body:has(.ayuda) .ejemplo {
    height: 4.25rem;
    border-radius: .75rem;
    margin-top: 2rem;
  }

  body:has(.ayuda) .boton-verificar {
    height: 4.25rem;
    border-radius: .75rem;
  }

  body:has(.ayuda) .ayuda {
    grid-column: 1;
    margin: 1.25rem 0;
  }

  body:has(.ayuda) .ayuda h5 {
    font-size: 1.25rem;
  }

  body:has(.ayuda) .ayuda ul {
    columns: 2;
    list-style: none;
    margin-left: 0;
    margin-top: .75rem;
  }

  body:has(.ayuda) .ayuda li {
    font-size: 1rem;
    line-height: 1.35;
  }

  body:has(.ayuda) .final {
    display: contents;
  }

  body:has(.ayuda) .imagen-señora {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  body:has(.ayuda) .imagen-señora img {
    height: 38.75rem;
    object-fit: cover;
    border-radius: 1.75rem;
  }

  body:has(.ayuda) .consejo {
    grid-column: 1;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
  }

  body:has(.ayuda) .consejo p {
    font-size: 1.125rem;
  }

  body:has(.resultado) main {
    max-width: 80rem;
    min-height: 46rem;
    margin: 0 auto;
    padding: 2rem 3.75rem 3rem;
    display: grid;
    grid-template-columns: 30rem 34rem;
    grid-template-rows: auto 1fr auto;
    column-gap: 4.5rem;
    row-gap: 1.5rem;
    align-items: start;
  }

  body:has(.resultado) .verif-vinculo,
  body:has(.resultado) .verif.vinculo {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: .875rem 2rem;
  }

  body:has(.resultado) .resultado {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 100%;
    min-height: 32rem;
    margin: 0;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body:has(.resultado) .resultado picture img {
    width: 18rem;
    margin: 0 auto 1.25rem;
  }

  body:has(.resultado) .resultado h2 {
    font-size: 3rem;
  }

  body:has(.resultado) .resultado p {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  body:has(.resultado) .estafas {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    align-self: start;
  }

  body:has(.resultado) .estafas h3 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  body:has(.resultado) .estafas ul {
    display: grid;
    gap: 1rem;
  }

  body:has(.resultado) .estafas li {
    background: var(--celeste);
    border-radius: 1.25rem;
    padding: 1.375rem 2rem 1.375rem 3rem;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.15;
  }

  body:has(img[src*="cuidado"]) .estafas li {
    background: var(--rosa-suave);
  }

  body:has(.resultado) .estafas li::before {
    left: 1.5rem;
    top: 1.625rem;
  }

  body:has(.resultado) .estafas article:last-child p {
    margin-top: 1rem;
    font-size: 1.75rem;
    padding: 1rem;
    border-radius: .75rem;
  }

  body:has(.resultado) .verificacion {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    margin: 0;
    align-self: end;
    padding: 1.5rem;
    border-radius: 1.25rem;
  }

  body:has(.resultado) .verificacion h1,
  body:has(.resultado) .verificacion form > p {
    display: none;
  }

  body:has(.resultado) .verificacion .ejemplo {
    margin: 0 0 1rem;
    min-height: 3.5rem;
  }

  body:has(.resultado) .boton-verificar {
    min-height: 3.5rem;
  }

  /* DENUNCIA DESKTOP */

  body:has(.como_denunciar) main {
    max-width: 78rem;
    margin: 0 auto;
  }

  .como_denunciar .denuncia {
    display: grid;
    grid-template-columns: 5rem 1fr;
    max-width: none;
    padding: 1rem 12rem;
    border-radius: 1.25rem;
  }

  .como_denunciar .denuncia h3 {
    font-size: 1.5rem;
  }

  .como_denunciar .denuncia p {
    font-size: 1.25rem;
  }

  .como_denunciar h2 {
    font-size: 3rem;
    margin: 2rem 0 1.5rem;
  }

  .como_denunciar article > h2 + ul::before {
    font-size: 0;
    margin: 0;
  }

  .como_denunciar ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2.5rem;
  }

  .como_denunciar li {
    min-height: 8rem;
    padding: 1.75rem 2rem 1.75rem 4rem;
    border-radius: 1.25rem;
  }

  .como_denunciar h4 {
    font-size: 2rem;
  }

  .como_denunciar h4::before {
    width: 1.25rem;
    height: 1.25rem;
    left: -2rem;
    top: .5rem;
  }

  .como_denunciar li p {
    font-size: 1.25rem;
  }

  body:has(.preveni-estafas) main,
  body:has(.prevení_estafas) main {
    max-width: 82rem;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
  }

  .preveni-estafas,
  .prevení_estafas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .preveni-estafas h2,
  .prevení_estafas h2,
  .preveni-estafas > p,
  .prevení_estafas > p {
    grid-column: 1 / 5;
  }

  .preveni-estafas h2,
  .prevení_estafas h2 {
    font-size: 4rem;
    margin-bottom: 0;
  }

  .preveni-estafas > p,
  .prevení_estafas > p {
    max-width: 38rem;
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }

  .preveni-estafas article,
  .prevení_estafas article {
    min-height: 26rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2rem;
    margin: 0;
  }

  .preveni-estafas article picture:first-child img,
  .prevení_estafas article picture:first-child img {
    width: 11rem;
    margin: 0 auto;
  }

  .preveni-estafas article h3,
  .prevení_estafas article p {
    font-size: 1.6rem;
  }

  .preveni-estafas article picture:last-child img,
  .prevení_estafas article picture:last-child img {
    width: 3rem;
    margin: 0 auto;
  }

  body:has(.ruta-navegacion) main {
    max-width: 82rem;
    margin: 0 auto;
    padding: 2.5rem 3rem 5rem;
  }

  .ruta-navegacion {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .ruta-navegacion img {
    width: .75rem;
  }

  .envios-paqueteria,
  .organismos-beneficios,
  .metodos-de-pago,
  .Redes-sociales {
    padding: 1.25rem 2rem;
    border-radius: 1.75rem;
    margin-bottom: 2rem;
  }

  .icono {
    width: 4rem;
    height: 4rem;
  }

  .icono img {
    width: 2.75rem;
  }

  .envios-paqueteria h2,
  .organismos-beneficios h2,
  .metodos-de-pago h2,
  .Redes-sociales h2 {
    font-size: 2rem;
  }

  .empresas,
  .billeteras-virtuales,
  .redes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .empresas article,
  .billeteras-virtuales article,
  .redes article {
    width: 17rem;
    min-height: 6rem;
    justify-content: center;
  }

  .empresas article img,
  .billeteras-virtuales article img,
  .redes article img {
    width: 3rem;
    height: 3rem;
  }

  .empresas h3,
  .billeteras-virtuales h3,
  .redes h3 {
    font-size: 1.5rem;
  }

  .contacto-fraudulentos::before {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .contacto-fraudulentos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .contacto-fraudulentos::before {
    grid-column: 1 / 4;
  }

  .contacto-fraudulentos .items {
    margin: 0;
    min-height: 18rem;
    padding: 2rem;
  }

  .contacto-fraudulentos .items h2 {
    font-size: 1.5rem;
  }

  .contacto-fraudulentos .items p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .como-identificar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 6rem 1fr;
    column-gap: 2rem;
  }

  .como-identificar picture img {
    width: 5rem;
  }

  .como-identificar h3 {
    font-size: 2.5rem;
  }

  .como-identificar li {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .recorda {
    margin-top: 3rem;
    padding: 2rem;
  }

  .recorda h3 {
    font-size: 2.5rem;
  }

  .recorda p {
    font-size: 1.2rem;
  }

  .recorda li {
    font-size: 1.15rem;
  }

  .recorda video {
    margin-top: 2rem;
    min-height: 26rem;
  }

  .mensaje-seguridad {
    margin-top: 2rem;
    padding: 1.25rem 2rem;
  }

  .mensaje-seguridad p {
    font-size: 1.1rem;
  }

  body:has(.seccion-comunidad) main {
    max-width: 82rem;
    margin: 0 auto;
    padding: 3.25rem 3rem 1.25rem;
    display: block;
  }

  body:has(.seccion-comunidad) .usuario {
    float: right;
    margin: -2rem 0 1rem 2rem;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-size: 1.75rem;
  }

  body:has(.seccion-comunidad) .usuario img {
    width: 2.5rem;
  }

  .seccion-comunidad h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  .seccion-comunidad > p {
    max-width: 60rem;
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 2rem;
  }

  .subir-video {
    display: grid;
    grid-template-columns: 1fr 26rem;
    column-gap: 5rem;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .instrucciones-video {
    grid-column: 1;
  }

  .titulo-ayuda {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
  }

  .titulo-ayuda img {
    width: 1.75rem;
  }

  .titulo-ayuda h3 {
    font-size: 1.25rem;
  }

  .instrucciones-video ul {
    margin-left: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .subir-video .aviso {
    grid-column: 2;
    border: .125rem solid var(--turquesa);
    border-radius: 1.25rem;
    padding: 1.5rem 2rem;
    font-size: 1.55rem;
    line-height: 1.15;
    font-weight: 700;
  }

  .videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  .video-card {
    display: flex;
    flex-direction: column;
  }

  .perfil-video {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
  }

  .perfil-video img {
    width: 3.5rem;
    height: 3.5rem;
    border: .125rem solid var(--turquesa);
    border-radius: 50%;
    object-fit: cover;
  }

  .perfil-video p {
    font-size: 1.125rem;
  }

  .video-falso {
    height: 10rem;
    border: .5rem solid var(--azul);
    border-radius: 1rem;
    background: var(--celeste-suave);
    position: relative;
  }

  .video-falso::before {
    content: "▶";
    color: var(--turquesa);
    font-size: 3rem;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }

  .boton-video {
    width: 58rem;
    max-width: 100%;
    margin: 2.5rem auto 0;
    padding: .9rem 3rem;
    border-radius: 1.25rem;
    background: var(--amarillo);
  }

  .boton-video h5 {
    font-size: 2rem;
    line-height: 1;
  }

  .boton-video p {
    font-size: 1rem;
    line-height: 1;
  }
}

@media (min-width: 48rem) {
  .barra {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  main {
    padding-left: clamp(1.25rem, 4vw, 3.75rem);
    padding-right: clamp(1.25rem, 4vw, 3.75rem);
  }

  header {
    padding-left: clamp(1.25rem, 4vw, 3.75rem);
    padding-right: clamp(1.25rem, 4vw, 3.75rem);
  }

  footer {
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .menu-desktop {
    gap: clamp(1.25rem, 4vw, 4rem);
    margin-right: clamp(1.25rem, 4vw, 4rem);
  }
}

.video-card video {
  width: 100%;
  display: block;
  height: auto;
  border: .5rem solid var(--azul);
  border-radius: 1rem;
  background: var(--celeste-suave);
}

.perfil-video {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.perfil-video picture {
  flex-shrink: 0;
}

.perfil-video p {
  margin: 0;
  white-space: normal;
}

@media (max-width: 62.5rem) {

  .videos {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }

  .video-card {
    width: 100%;
  }

  .perfil-video {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .perfil-video picture,
  .perfil-video picture img {
    width: 3.75rem;
    height: 3.75rem;
  }

  .perfil-video p {
    font-size: 1rem;
    line-height: 1.1;
  }

  .video-card video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: .45rem solid var(--azul);
    border-radius: 1rem;
  }

  .videos::after {
    display: none;
  }
}

@media (max-width: 47.9375rem) {

  main {
    padding-bottom: 7rem;
  }

  .barra {
    display: grid;
  }

  .video-card video {
    min-height: 10rem;
    object-fit: cover;
  }
}

@media (min-width: 48rem) {

  .barra {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (min-width: 64rem) {

  body:has(.como_denunciar) {
    background: white;
  }

  body:has(.como_denunciar) main {
    max-width: 78rem;
    margin: 0 auto;
    padding: 1.75rem 3rem 3rem;
  }

  .como_denunciar .denuncia {
    border: .125rem solid var(--rosa);
    border-radius: 1.25rem;
    padding: 1rem 12rem;
    display: grid;
    grid-template-columns: 5rem 1fr;
    align-items: center;
    column-gap: 1.25rem;
    margin-bottom: 2.75rem;
  }

  .como_denunciar .denuncia picture {
    grid-row: 1 / 3;
  }

  .como_denunciar .denuncia img {
    width: 4.25rem;
  }

  .como_denunciar .denuncia h3 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .como_denunciar .denuncia p {
    font-size: 1.25rem;
    line-height: 1.15;
  }

  .como_denunciar h2 {
    font-size: 3rem;
    margin: 0 0 1.75rem;
  }

  .como_denunciar article > h2 + ul::before {
    content: "Denunciá por internet";
    display: block;
    grid-column: 1 / 3;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
  }

  .como_denunciar ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .como_denunciar li {
    background: var(--celeste-suave);
    border-radius: 1.25rem;
    min-height: 7.5rem;
    padding: 1rem 2rem 1rem 3.25rem;
    margin: 0;
  }

  .como_denunciar h4 {
    font-size: 1.75rem;
    line-height: 1.1;
    padding-left: 0;
  }

  .como_denunciar h4::before {
    width: .75rem;
    height: .75rem;
    left: -1.5rem;
    top: .55rem;
  }

  .como_denunciar li p {
    font-size: 1.125rem;
    line-height: 1.15;
  }
}