:root {
  --content-max: 1200px;
  --content-pad: clamp(16px, 4vw, 28px);
  --padding-container: 100px 0;
  --color-title: #c5029e;
  --ink: #2a2a2a;
  --rose-100: #ffe6f1;
  --rose-200: #efcfe0;
  --rose-300: #e39dc0;
  --title: #6a0a57;
  --accent: #b0167a;
  --sep: #efe9f2;
  --pp-accent: #ff6be4;
  --pp-text: #72014fea;
  --pp-muted: #5b5b5b;
  --pp-bg: #ffffff;
  --pp-border: rgba(237, 95, 225, 0.28);
  --_pad: clamp(20px, 3.5vw, 28px);
  --_radius: 16px;
  --_shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  overflow: hidden;
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.hero {
  width: 100%;
  height: 100vh;
  min-height: 300px;
  max-height: 500px;
  position: relative;
  display: grid;
  grid-template-rows: 100px 1fr;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(360deg, #ff25bab1 0%, #0000008c 100%),
    url("../img/portada.jpg");
  background-size: cover;
  clip-path: polygon(
    50% 0%,
    100% 0,
    100% 35%,
    100% 70%,
    80% 90%,
    50% 90%,
    20% 90%,
    0% 70%,
    0% 35%,
    0 0
  );
  z-index: -1;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  text-decoration: none;
}
.nav-title {
  font-weight: 600;
  color: #fff;
  font-size: 25px;
}
.nav-title b {
  font-weight: 900;
  color: #ff6be4;
}
.nav-link {
  margin-left: auto;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 2rem;
}

.nav-items {
  list-style: none;
}

.nav-links {
  color: #fff;
  text-decoration: none;
}

.nav-menu {
  margin-left: auto;
  cursor: pointer;
  display: none;
}

.nav-img {
  display: block;
  width: 30px;
}

.nav-close {
  display: var(--show, none);
}

.hero-container {
  display: grid;
  grid-auto-rows: max-content;
  align-content: center;
  gap: 1rem;
  padding-bottom: 100px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
}

.hero-paragraph {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
}

.about {
  text-align: center;
  min-width: 0;
}

.subtitle {
  color: var(--color-title);
  font-size: 3rem;
  margin-bottom: 25px;
}

.about-paragraph {
  line-height: 1.7;
}

.about-main {
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
  width: 90%;
  margin: 0 auto;
  gap: 1em;
  overflow: hidden;
  grid-template-columns: minmax(min(100%, 700px), 1fr);
  justify-content: center;
}
.about-icons {
  display: grid;
  gap: 1em;
  justify-items: center;
  max-width: 760px;
  overflow: hidden;
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 16px;
  justify-items: stretch;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(
    360deg,
    rgba(255, 0, 200, 0.05) 0%,
    rgba(255, 0, 200, 0.02) 100%
  );

  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 96px;
  grid-template-areas:
    "meta  image"
    "title image";
  column-gap: 16px;
  align-items: center;
}

.about-icon {
  grid-area: image;
  width: 70px;
  height: 70px;
  justify-self: center;
  align-self: center;
  border-radius: 20%;
  object-fit: cover;
  display: block;
}
.about-span {
  grid-area: meta;
  color: var(--color-title);
  padding-top: 5px;
  padding-bottom: 5px;
}
.about-span time {
  color: #000;
}
.about-title {
  grid-area: title;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
  color: #72014fea;
}
.about-paragraph2 {
  order: 3;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
.about-text {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: left;
}
.about-sistema {
  padding-top: 10px;
  gap: 8px;
  text-align: center;
}
.about-button {
  background: rgba(255, 99, 178, 0.18);
  color: #fff;
  border: 1.5px solid rgba(230, 59, 143, 0.95);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
  margin-bottom: 2rem;
}

.about-button:hover {
  background: rgba(230, 59, 143, 0.28);
  border-color: rgb(199, 29, 119);
  transform: translateY(-1px);
}

.about-button:focus-visible {
  outline: 2px solid rgba(255, 214, 236, 0.9);
  outline-offset: 2px;
}

.about-button span {
  color: var(--color-title);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35),
    0 3px 10px rgba(255, 255, 255, 0.25);
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.25);
}

.sistema {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
}
.about-p {
  padding-bottom: 10px;
  color: #434343;
}
.sistema.android {
  background: #0077ff;
}
.sistema.ios {
  background: #111;
}

/* ========= Accesibilidad ========= */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========= Section ========= */
.site-search {
  /* padding fluido y compacto */
  padding: clamp(10px, 2.8vw, 22px) var(--content-pad);
  padding-bottom: 0px;
  background: linear-gradient(180deg, #fff, #fff);
  display: grid;
  place-items: center;
  row-gap: 0;
}

/* ========= Formulario ========= */
.site-search .search-form {
  width: 100%;
  max-width: min(520px, 94vw); /* contenido controlado y elegante */
  margin-inline: auto;
}

/* ========= Píldora (input + botón) ========= */
.site-search .search-field {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.8vw, 8px);
  padding: clamp(4px, 1vw, 8px) clamp(8px, 1.2vw, 12px);
  border: 1px solid var(--pp-border);
  border-radius: 9999px;
  background: var(--pp-bg);
  box-shadow: 0 3px 12px rgba(176, 22, 122, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
}

.site-search .search-field:focus-within {
  border-color: color-mix(in srgb, var(--pp-accent) 45%, var(--pp-border) 55%);
  box-shadow: 0 2px 8px rgba(176, 22, 122, 0.1),
    0 10px 26px rgba(176, 22, 122, 0.14);
}

/* ========= Input ========= */
.site-search input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  font: 500 clamp(13px, 1.6vw, 15px) / 1.15 ui-sans-serif, system-ui,
    -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  padding: 0.5em 0.35em;
}

/* placeholder tenue y legible */
.site-search input[type="search"]::placeholder {
  color: color-mix(in srgb, var(--pp-muted) 78%, #ffffff 0%);
  opacity: 0.95;
}

/* ========= Botón (lupa) ========= */
.site-search .search-btn {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  inline-size: clamp(32px, 7vw, 36px);
  block-size: clamp(32px, 7vw, 36px);
  border-radius: 50%;
  border: 1px solid var(--pp-border);
  background: linear-gradient(180deg, #fff, #fdf7fd);
  color: var(--pp-text);
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-search .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(176, 22, 122, 0.16);
  border-color: color-mix(in srgb, var(--pp-accent) 40%, var(--pp-border) 60%);
}

.site-search .search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(176, 22, 122, 0.18) inset;
}

.site-search .search-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pp-accent) 55%, #fff 45%);
  outline-offset: 2px;
}

/* El SVG se escala en proporción al botón */
.site-search .search-btn svg {
  pointer-events: none;
}
.empty-state {
  max-width: min(680px, 100%);
  margin: 20px auto 0;
  padding: var(--_pad);
  background: var(--pp-bg);
  border: 1px solid var(--pp-border);
  border-radius: var(--_radius);
  box-shadow: var(--_shadow);
  text-align: center;
}

.empty-illu {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  background: radial-gradient(
    ellipse at center,
    var(--rose-100),
    transparent 70%
  );
  border-radius: 50%;
}

.empty-title {
  margin: 8px 0 4px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.2;
  color: var(--title);
  font-weight: 700;
}

.empty-text {
  margin: 0 0 14px;
  color: var(--pp-muted);
  font-size: clamp(14px, 1.8vw, 16px);
}

.empty-reset {
  appearance: none;
  border: 1px solid var(--pp-border);
  background: linear-gradient(180deg, var(--rose-100), #fff 60%);
  color: var(--pp-text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.empty-reset:hover {
  border-color: var(--rose-300);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.empty-reset:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.aside {
  text-align: center;
  background: #fff;
  border: 1px solid var(--rose-200);
  border-radius: 14px;
  padding: 14px;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.top-truco__title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--title);
  padding: 10px 8px;
  border-bottom: 2px solid var(--rose-200);
  letter-spacing: 0.2px;
}

.top-truco__list {
  list-style: none;
  padding: 2px 10px 12px;
  margin: 0;
}
.top-truco__item {
  position: relative;
  padding: 20px 6px;
  border-bottom: 1px solid var(--sep);
  border-radius: 10px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.06s ease;
}
.top-truco__item:last-child {
  border-bottom: 0;
}

.top-truco__item:hover {
  background: rgba(176, 22, 122, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) inset;
}
.top-truco__item:active {
  transform: translateY(1px);
}

.truco-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 12px;
  align-items: center;
  text-decoration: none;
}

.truco-row__rank {
  grid-area: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--rose-100);
  border: 2px solid var(--rose-200);
  color: var(--title);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.truco-row__body {
  display: grid;
  grid-template-columns: 1fr 56px;
  grid-template-areas:
    "titulo  img"
    "descarga img";
  align-items: center;
  gap: 4px 8px;
}

.truco-row__name {
  grid-area: titulo;
  color: var(--title);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0.15px;
  text-decoration: none;
}
.top-truco__item:hover .truco-row__name {
  color: var(--accent);
}

.truco-row__meta {
  grid-area: descarga;
  color: #6c6670;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12px;
  gap: 6px;
}

.aside-img {
  grid-area: img;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--rose-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  object-fit: contain;
  padding: 8px;
  margin-left: auto;
}
.aside-ultima {
  margin: 12px 8px 0;
  padding: 10px 0 2px;
  border-top: 1px solid var(--rose-200);
  color: #6c6670;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  text-align: center;
}
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.social-list li {
  list-style: none;
}

.link-politica {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.link-politica:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.icon-social {
  width: 28px;
  height: 28px;
  display: block;
}

.link-politica--instagram {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #fa7e1e 35%,
    #d62976 60%,
    #962fbf 80%,
    #4f5bd5
  );
}
.link-politica--tiktok {
  background: #0b0b0e;
}
.link-politica--facebook {
  background: #1877f2;
}

.footer {
  background-color: #720650b1;
}
.footer-title {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 30px;
}
.footer-title {
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}

.nav-footer {
  padding-top: 50px;
  padding-bottom: 20px;
  justify-items: center;
  display: grid;
  gap: 1em;
  grid-auto-flow: row;
  height: 100%;
}

.footer-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 5px;
}

.nav-link-footer {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
}

.footer-inputs {
  margin-top: 10px;
  display: flex;
  overflow: hidden;
}

.footer-input {
  background-color: #fff;
  height: 50px;
  display: block;
  padding-left: 10px;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  border: none;
  margin-right: 16px;
}

.footer-submit {
  margin-left: auto;
  display: inline-block;
  height: 50px;
  padding: 0 20px;
  background-color: #ff6be4;
  border: none;
  font-size: 1rem;
  color: #fff;
  border-radius: 6px;
}

.footer-copy {
  --padding-container: 40px 0;
  text-align: center;
  color: #fff;
  margin-top: 15px;
  padding-bottom: 15px;
}

.footer-copy {
  padding-top: 10px;
  font-weight: 300;
}

.footer-icons {
  text-decoration: none;
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-img {
  width: 30px;
}

.main-politica {
  margin: 0px auto 72px;
  color: var(--pp-text);
  background: var(--pp-bg);
  line-height: 1.7;
  letter-spacing: 0.2px;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.075rem);
  overflow: hidden;
}

.container-politica {
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: clamp(18px, 2vw, 28px);
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.035);
}

.titulo-politica,
.container-politica > h2 {
  font-size: clamp(1.25rem, 0.8vw + 1.05rem, 1.6rem);
  font-weight: 750;
  color: #2d001fea;
  line-height: 1.25;
  margin: 0 0 0.75em;
  border-left: 4px solid var(--pp-accent);
  padding-left: 10px;
}

.text-politica,
.container-politica > p {
  margin: 0 0 0.9em;
  color: var(--pp-muted);
}

.container-politica p strong,
.container-politica li strong {
  color: var(--pp-text);
  font-weight: 750;
}

.container-politica ul {
  list-style: disc;
  margin: 0.4em 0 1em 1.2em;
  padding: 0;
}
.container-politica li {
  margin: 0.35em 0;
}

.container-politica a {
  color: #6a0f88;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.container-politica a:hover {
  color: #4d0963;
}

.time-politica {
  display: flex;
  justify-content: center;
  margin: 42px auto 0;
}

.time-politica time {
  display: inline-block;
  padding: 0.35em 0.7em;
  font-size: 0.95rem;
  color: #3b3b3b;
  border: 1px solid var(--pp-border);
  border-radius: 999px;
  background: rgba(237, 95, 225, 0.08);
}
.nav-links[aria-current="page"] {
  color: #ffdef2;
  font-weight: 700;
  position: relative;
}

.nav-links[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #ff73c7;
  border-radius: 2px;
}
.section-sobre {
  margin: 0px 0 30px;
  border-bottom: 1px solid #e9e2ea;
}

.e404 {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 0rem;
  padding-bottom: 3rem;
  text-align: center;
  color: #222;
}

.e404__icon {
  width: 88px;
  height: 88px;
  opacity: 0.9;
}
.e404__title {
  margin: 1rem 0 0.25rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}
.e404__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #555;
}
.e404__btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 0.6rem;
  text-decoration: none;
  background: #111;
  color: #fff;
  transition: transform 0.08s ease-in-out, opacity 0.2s;
}
.e404__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

@media (max-width: 600px) {
  .main-politica {
    width: 92%;
    margin: 0px auto 56px;
  }
  .container-politica {
    padding-top: 16px;
    border-radius: 10px;
  }
  .titulo-politica,
  .container-politica > h2 {
    border-left-width: 3px;
    padding-left: 8px;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    display: block;
  }
  .nav-link-menu {
    position: fixed;
    background-color: #000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: 0.7s opacity;
  }

  .nav-link--show {
    --show: block;
    opacity: 1;
    pointer-events: unset;
  }

  .nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    cursor: pointer;
  }

  .hero-title {
    font-size: 2rem;
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .hero-paragraph {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 2rem;
  }

  .hero::before {
    clip-path: polygon(
      50% 0%,
      100% 0,
      100% 35%,
      100% 70%,
      80% 90%,
      50% 90%,
      20% 90%,
      0% 70%,
      0% 35%,
      0 0
    );
  }
  .nav-footer {
    width: 100%;
    justify-content: center;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .aside {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
    overflow: hidden;
    padding: var(0);
    grid-column: 1 / -1;
    margin-top: 0px;
  }
}

@media (max-width: 590px) {
  .nav-link-footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
  }
  .nav-items {
    gap: 0.5rem;
  }
  .about-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1rem;
    justify-items: center;
  }

  .about-body {
    display: grid;
    grid-template-columns: 1fr;

    grid-template-areas:
      "meta"
      "image"
      "title";
    gap: 0.5rem;
    justify-items: center;
    text-align: center;
  }

  .about-span {
    text-align: center;
    grid-area: meta;
  }
  .about-icon {
    grid-area: image;
    grid-column: auto;
    justify-self: center;
    align-self: center;
    width: 70px;
    height: 70px;
    border-radius: 20%;
    object-fit: cover;
  }
  .about-title {
    grid-area: title;
    text-align: center;
  }

  .about-paragraph2 {
    font-size: 0.9rem;
  }

  .aside {
    padding: 12px;
    border-radius: 12px;
  }

  .top-truco__title {
    font-size: 2.2rem;
    padding: 8px 6px;
  }

  .top-truco__list {
    padding: 0 8px 8px;
  }
  .top-truco__item {
    padding: 8px;
  }

  .truco-row {
    grid-template-columns: 56px 1fr;
    column-gap: 10px;
  }

  .truco-row__rank {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .truco-row__body {
    grid-template-columns: 1fr 52px;
    gap: 4px 8px;
  }

  .truco-row__name {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .truco-row__meta {
    font-size: 0.78rem;
  }

  .aside-img {
    width: 44px;
    height: 44px;
    padding: 6px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .aside {
    padding: 10px;
    border-radius: 10px;
    font-size: 90%;
  }

  .top-truco__title {
    font-size: 1.8rem;
    padding: 6px 4px;
  }

  .top-truco__list {
    padding: 0 6px 6px;
  }
  .top-truco__item {
    padding: 6px;
  }

  .truco-row {
    grid-template-columns: 50px 1fr;
    column-gap: 8px;
  }

  .truco-row__rank {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .truco-row__body {
    grid-template-columns: 1fr 40px;
    gap: 2px 6px;
  }

  .truco-row__name {
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .truco-row__meta {
    font-size: 0.7rem;
  }

  .aside-img {
    width: 36px;
    height: 36px;
    padding: 4px;
    border-radius: 8px;
  }

  .truco-row__name,
  .truco-row__meta {
    min-width: 0;
  }
  .aside-ultima {
    font-size: 0.6rem;
  }
}
.is-hidden {
  display: none !important;
}
[hidden] {
  display: none !important;
}
