body {
  background-color: #02141E;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  display: flex;
  /* 👈 nuevo */
  flex-direction: column;
}

/* styles.css */
:root {
  --green-1: #2bb673;
  --green-2: #1f6d4b;
  --red-1: #e53935;
  --ink: #0d1b1e;
  --text: #eaf4ee;
  --muted: #cfe3d8;
  --bg: #0b0f19;
  /* Upscayl dark blue */
  --card: #142a32;
  --stroke: #2f4752;
  --accent: #7ec653;
  --text: #e9fff2;
  --muted: #bfe7d2;
  --radius: 24px;
  /* More rounded */
}


* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px 56px;
  overflow: hidden;
}

/* Fondo con imagen */
.bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  /* Solid dark blue */
  z-index: -2;
}

/* Overlay con gradiente lineal */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #0E1A27, #132C45);
  opacity: 0.60;
  z-index: -1;
}

/* Etiqueta superior */
.tag {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: saturate(140%) blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .92rem;
  color: var(--muted);
}

.tag img {
  width: 22px;
  height: 22px;
  object-fit: contain
}

/* Contenedor */
.container {
  width: min(1080px, 92vw);
  text-align: center;
}

.header__logo-tag {
  position: relative;
  display: inline-block;
}

.header__logo {
  width: 600px;
  height: auto;
  display: block;
}

.header__tag {
  position: absolute;
  width: 100%;
  top: 145px;
  left: 55%;
  transform: translateX(-50%);
  font-size: 30px;
  font-weight: bold;
  color: #7ec653;
  margin: 0;
  text-align: center;
}


/* Títulos */
.title {
  margin: 22px 0 6px;
  line-height: 1.05;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw + .5rem, 5rem);
  letter-spacing: .2px;
}

.title strong {
  display: block;
  color: #70AD47;
  font-weight: 800;
}

.claim {
  margin: 2px 0 16px;
  font-weight: 700;
  color: #70AD47;
  letter-spacing: .4px;
  font-size: clamp(1.05rem, 1.4vw + .6rem, 1.6rem);
}

/* Texto principal */
.lead {
  margin: 0 auto 20px;
  max-width: 750px;
  /* Mucho más estable */
  width: 90%;
  /* Mejor en móviles */
  color: rgba(255, 255, 255, 0.9);
  /* Mejor contraste y estética */
  line-height: 1.65;
  /* Lectura cómoda */
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.35rem);
  padding: 0 18px;
  /* Buen espacio lateral */
  text-align: center;
  font-weight: 300;
  /* Apariencia más elegante */
  letter-spacing: 0.2px;
  /* Pequeño refinamiento */
}


/* Botones */
.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(115%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.btn:active {
  transform: translateY(0);
}

.btn-green {
  background: #70AD47;
}

.btn-blue {
  background: #02141E;
}

.btn-red {
  background: #AA202F;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.stat {
  padding: 26px 14px 18px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}

.stat img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}

.stat h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: .4px;
  color: #eafff3;
  font-weight: 800;
}

.stat p {
  margin: 4px 0 0;
  color: #d8efe4;
  font-size: .92rem;
}

/* Sección ¿Quiénes somos? */
.qs {
  background-color: #425d6e34;
  color: #ffffff;
  padding: 50px 20px;
}

.qs__wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.qs h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.qs__texto {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.atualizacion {
  font-size: 0.8rem;
  font-style: italic;
  padding-bottom: 15px;
}

.qs__texto strong {
  color: #ffffff;
  /* Verde */
}

.qs__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.qs__card {
  background-color: rgba(66, 93, 110, 0.3);
  /* Azul 30% */
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qs__icono {
  width: 36px;
  height: 36px;
  object-fit: contain;
}


.qs__card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.qs__card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;
}

.qs__icono-wrap {
  width: 70px;
  height: 70px;
  background-color: #244234;
  /* verde oscuro similar a la imagen */
  border: 2px solid #70AD47;
  /* verde claro */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* ===== Catálogo (header nuevo) ===== */
.catalogo {
  background: #02141E;
  color: #fff;
  padding: 38px 16px;
}

.catalogo__wrap {
  max-width: 1050px;
  margin: 0 auto;
}

.catalogo__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.catalogo__title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.catalogo__subtitle {
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 24px;
}

/* Botones tipo pestaña */
.catalogo__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 34px;
}

.catalogo__tab {
  border-radius: 15px;
  padding: 15px 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #E9F0F5;
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.catalogo__tab:hover {
  transform: translateY(-2px);
}


/* Botón verde "Ver catálogo completo" */
.catalogo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 34px;
  border-radius: 15px;
  background: #70AD47;
  color: #ffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.96rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.catalogo__cta:hover {
  color:#02141E;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.06);
}

.catalogo__cta-icon {
  margin-left: 8px;
  font-size: 1.1rem;
}




/* Sección Cómo funciona */
.funciona {
  background: #425d6e34;
  color: #fff;
  padding: 54px 20px;
}

.funciona__wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.funciona h2 {
  font-size: 2rem;
  margin: 0 0 6px;
}

.funciona__sub {
  opacity: .85;
  margin: 0 0 22px;
}

/* --- Carrusel con flechas --- */
.funciona__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
}

/* Pista horizontal: muestra 3 a la vez */
.funciona__grid {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding: 10px 6px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  /* Oculta barra en Firefox */
}

.funciona__grid::-webkit-scrollbar {
  display: none;
}

/* Oculta barra en WebKit */

.paso {
  flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
  /* 3 visibles */
  display: flex;
  justify-content: center;
  scroll-snap-align: start;
}

/* Flechas */
.nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 20, 30, .7);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
}

.nav::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-right: 2px solid #cfe3d8;
  border-bottom: 2px solid #cfe3d8;
  transform: rotate(-45deg);
}

.nav--prev::before {
  transform: rotate(135deg);
}

/* ← */
.nav:hover {
  transform: scale(1.05);
}

.nav:disabled {
  opacity: .35;
  pointer-events: none;
}

/* Círculos grandes con texto dentro */
.paso__circle {
  --size: clamp(180px, 22vw, 220px);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: linear-gradient(135deg, #70AD47, #02141E);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 10px;
  box-shadow: 0 0 0 4px rgba(66, 93, 110, .20);
}

.paso__circle .num {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1;
}

.paso__circle .txt {
  font-size: clamp(.9rem, .9vw + .6rem, 1rem);
  line-height: 1.25;
  max-width: 85%;
}

/* Sección video */
.sistema {
  background: #02141E;
  color: #fff;
  padding: 48px 16px;
}

.sistema__wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center
}

.sistema h2 {
  font-size: 2rem;
  margin: 0 0 6px
}

.sistema__sub {
  opacity: .9;
  margin: 0 0 20px
}

/* Caja del video: SOLO borde azul, sin fondo */
.videoBox {
  position: relative;
  border: 2px solid rgba(66, 93, 110, .55);
  border-radius: 16px;
  padding: 10px;
  background: transparent;
}

/* Etiqueta con icono de libro */
.videoTag {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #244234;
  /* verde oscuro */
  border: 2px solid #70AD47;
  /* borde verde */
  border-radius: 12px;
  z-index: 2;
}

.videoTag img {
  width: 30px;
  height: 30px;
  object-fit: contain
}

/* Contenedor responsivo */
.videoInner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  /* opcional, para fondo negro */
}

/* Video en modo responsivo */
.videoInner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* llena todo sin deformar, pero puede recortar */
  border: 0;
  display: block;
}


/* Ajuste fino en móviles */
@media (max-width:520px) {
  .videoTag {
    width: 46px;
    height: 46px;
  }

  .videoTag img {
    width: 26px;
    height: 26px;
  }
}

/* CTA final */
.cta-start {
  background: #70AD47;
  /* verde principal */
  color: #fff;
  text-align: center;
  padding: 38px 16px;
}

.cta-start__wrap {
  max-width: 1000px;
  margin: 0 auto
}

.cta-start h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin: 0 0 6px;
}

.cta-start p {
  margin: 0 0 16px;
  opacity: .95;
}

/* Botón con icono */
.cta-start__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #ffffff;
  /* botón blanco como en el diseño */
  color: #2f6e2e;
  /* texto verde oscuro para contraste */
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: transform .12s ease, box-shadow .2s ease;
}

.cta-start__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.cta-start__btn:active {
  transform: translateY(0)
}

.cta-start__btn:focus-visible {
  outline: 2px solid #2f6e2e;
  outline-offset: 3px;
}

.cta-start__btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ===== Novedades (scroll horizontal con flechas) ===== */
.news {
  background: #02141E;
  color: #fff;
  padding: 40px 16px 54px;
}

.news__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.news h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 6px;
}

.news__sub {
  text-align: center;
  opacity: .9;
  margin: 0 0 22px;
}

.news__title {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.news__panel {
  background: rgba(66, 93, 110, .30);
  /* #425D6E 30% */
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
}

.news__track {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding: 4px 6px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.news__track::-webkit-scrollbar {
  display: none;
}

.post {
  flex: 0 0 calc(((100% - (var(--gap) * 2)) / 3) * 0.75);
  display: block;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: #0e2430;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .16);
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  isolation: isolate;
}

/* overlay verde al 10% */
.post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(112, 173, 71, 0.40);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.post:hover::after,
.post:focus-visible::after {
  opacity: 1;
}

.post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flechas */
.news__nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 20, 30, .7);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
}

.news__nav::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-right: 2px solid #cfe3d8;
  border-bottom: 2px solid #cfe3d8;
  transform: rotate(315deg);
  /* → */
}

.news__nav--prev::before {
  transform: rotate(135deg);
}

/* ← */
.news__nav:hover {
  transform: scale(1.05);
}

.news__nav:disabled {
  opacity: .35;
  pointer-events: none;
}

/* ===== Profesores ===== */

/* --- Carrusel equipo --- */
.team {
  padding: 40px 16px 56px;
}

.team__title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
  font-weight: 800;
  margin: 0 0 28px;
}

/* Reservamos espacio lateral para las flechas */
.team__carousel {
  --side-gap: 56px;
  /* espacio para flechas */
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--side-gap);
}

.team__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.team__viewport::-webkit-scrollbar {
  display: none;
}

/* Sin padding lateral aquí para que no “corte” cards */
.team__track {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

/* Card */
.team-card {
  background: var(--card);
  border: 2px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px 18px 20px;
  width: clamp(260px, 28vw, 320px);
  min-width: clamp(260px, 28vw, 320px);
  color: var(--text);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  scroll-snap-align: center;
}

/* Contenedor de imagen con fondo verdoso y glow */
.team-card__img {
  position: relative;
  height: clamp(150px, 18vw, 190px);
  border-radius: calc(var(--radius) + 10px);
  border: 3px solid var(--accent);
  background-color: transparent;
  margin-bottom: 14px;
  overflow: hidden;
}

.team-card__name {
  display: inline-block;
  background: #20333a;
  color: #fff;
  border: 2px solid var(--stroke);
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: clamp(0.95rem, .5vw + .85rem, 1.05rem);
  margin: 0 0 12px;
}

.team-card__bio {
  color: #fff;
  margin: 0;
  line-height: 1.5;
  max-width: 28ch;
  margin-inline: auto;
}

/* Flechas: quedan dentro del side-gap, sin tapar las cards */
.team__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 44px;
  border: none;
  background: none;
  color: #a9c7b7;
  font-size: 40px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease;
  z-index: 2;
}

.team__nav:hover,
.team__nav:focus {
  transform: translateY(-50%) scale(1.05);
  outline: none;
}

.team__nav--prev {
  left: 8px;
}

/* dentro del padding lateral */
.team__nav--next {
  right: 8px;
}

/* Responsive: estrechamos el side-gap */
@media (max-width: 720px) {
  .team__carousel {
    --side-gap: 40px;
  }

  .team__nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}


/* ===== Footer ===== */
.site-footer {
  background: #425d6e34;
  color: #fff;
  padding: 28px 16px 22px;
}

.footer__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer__col {
  min-width: 0
}

.footer__desc {
  opacity: .95;
  line-height: 1.5;
  margin: 0
}

.footer__logo-tag {
  position: relative;
  display: inline-block;
  margin-bottom: 2px;
}

.footer__logo {
  width: 180px;
  height: auto;
  display: block;
}

.footer__tag {
  position: absolute;
  width: 200px;
  top: 40px;
  left: 24%;
  font-size: 14px;
  font-weight: bold;
  color: #7ec653;
  margin: 0;
  padding: 2px 6px;
}

/* Títulos y texto */
.footer__title {
  font-size: 1.2rem;
  margin: 0 0 10px
}

.footer__hint {
  opacity: .9;
  margin: 0 0 12px
}

/* Redes */
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  padding: 6px 0;
}

.social img {
  width: 20px;
  height: 20px;
  object-fit: contain
}

.social:hover {
  opacity: .9
}

/* CTA botón */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #70AD47;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  transition: transform .12s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18)
}

.cta-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain
}

/* Separador y legal */
.footer__line {
  max-width: 1100px;
  margin: 18px auto 12px;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.footer__legal {
  text-align: center;
  opacity: .85;
  font-size: .95rem;
}

/* -----------Enlace de políticas------------ */

.politicas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-top: 10px;
  font-weight: 700;
  color: #70AD47;
  border: 2px solid #70AD47;
  border-radius: 12px;
  background-color: rgba(36, 66, 52, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.politicas-btn:hover {
  background-color: #70ad477e;
  color: #70AD47;
  box-shadow: 0 0 10px rgba(112, 173, 71, 0.4);
}

.politicas-btn:active {
  background-color: #70ad4752;
  color: #fff;
}

.politicas-btn:visited {
  color: #70AD47;
}

.legal-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 40px auto 60px;
}

.legal-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  background-color: #7ec653;
  /* mismo verde del ejemplo */
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 0 #5ea53f;
  transition: transform 0.15s ease;
}

.legal-cta .cta-btn:hover {
  transform: translateY(-2px);
}

main {
  flex: 1 0 auto;
}

/* ===================== Detalle de compra ===================== */

.checkout {
  background-color: #02141E;
  /* mismo fondo general */
  color: var(--text);
  padding: 40px 16px 60px;
}

.checkout__wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.checkout__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #7ec653;
  /* verde título */
  margin: 0 0 18px;
}

/* “Tabla” */
.checkout__table {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .16);
  background: rgba(8, 27, 38, 0.8);
}

.checkout__row {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.checkout__row:last-child {
  border-bottom: none;
}

.checkout__row--head {
  background: rgba(20, 42, 50, 0.95);
}

.checkout__cell {
  padding: 14px 18px;
  font-size: 0.98rem;
  line-height: 1.4;
}

.checkout__row--head .checkout__cell {
  font-weight: 700;
  text-align: center;
}

.checkout__cell--price {
  text-align: right;
}

/* Parte inferior: total + botón pagar */
.checkout__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  gap: 18px;
}

/* Caja “Total:” (estilo pastilla verde vacía) */
.checkout__total-box {
  min-width: 220px;
  max-width: 320px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid #70AD47;
  background: rgba(36, 66, 52, 0.4);
  /* verde oscuro translúcido */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.checkout__total-label {
  color: #70AD47;
  font-weight: 800;
}

.checkout__total-amount {
  color: #70AD47;
  font-weight: 700;
}

/* Botón PAGAR, similar a tus CTAs verdes */
.checkout__pay-btn {
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: #7ec653;
  color: #ffffff;
  box-shadow: 0 4px 0 #5ea53f;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.18s ease;
}

.checkout__pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 12px rgba(0, 0, 0, .35);
  filter: brightness(1.03);
}

.checkout__pay-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}

/* ===================== Pago realizado ===================== */

.payment-success {
  background: #02141E;
  color: var(--text);
  padding: 60px 16px 48px;
}

.payment-success__wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* Header con icono y títulos */
.payment-success__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.payment-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #244234;
  border: 2px solid #7ec653;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-success__icon span {
  font-size: 1.9rem;
  font-weight: 800;
  color: #7ec653;
}

.payment-success__title {
  margin: 0 0 4px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #7ec653;
}

.payment-success__subtitle {
  margin: 0;
  opacity: .9;
  line-height: 1.5;
}

/* Tarjeta de detalles */
.payment-success__card {
  margin-top: 20px;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, .16);
  background: rgba(8, 27, 38, .9);
  padding: 18px 20px 20px;
}

.payment-success__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
}

.payment-success__row+.payment-success__row {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.payment-success__row--total {
  padding-top: 14px;
}

.payment-success__divider {
  margin: 8px 0 4px;
  height: 1px;
  background: rgba(255, 255, 255, .16);
}

/* Etiquetas y valores */
.payment-success__label {
  font-weight: 600;
  color: #d6fbe3;
}

.payment-success__value {
  text-align: right;
  opacity: .95;
}

.payment-success__value--ok {
  color: #7ec653;
  font-weight: 700;
}

.payment-success__total {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

/* Nota final */
.payment-success__note {
  margin: 22px 0 18px;
  font-size: .98rem;
  line-height: 1.6;
  opacity: .95;
}

/* Botones */
.payment-success__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.payment-success__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, filter .15s ease;
}

.payment-success__btn--primary {
  background: #7ec653;
  color: #ffffff;
  box-shadow: 0 4px 0 #5ea53f;
}

.payment-success__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 12px rgba(0, 0, 0, .35);
  filter: brightness(1.03);
}

.payment-success__btn--secondary {
  background: transparent;
  color: #7ec653;
  border-color: #7ec653;
}

.payment-success__btn--secondary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ===================== Libro de Reclamaciones ===================== */

.claims {
  background: #02141E;
  color: var(--text);
  padding: 40px 16px 60px;
}

.claims__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.claims__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(8, 27, 38, 0.96);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 24px;
}

/* Izquierda: logo + icono libro + textos */
.claims__header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.claims__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.claims__me-logo {
  width: 250px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* Bloque icono libro + título */
.claims__title-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.claims__book-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #244234;
  border: 3px solid #7ec653;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.claims__book-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.claims__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.claims__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #7ec653;
}


.claims__subtitle {
  margin: 0;
  font-size: 0.98rem;
  opacity: .9;
}

/* Datos del proveedor */
.claims__provider {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(8, 27, 38, .9);
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 460px;
}

.claims__provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.claims__provider-row+.claims__provider-row {
  margin-top: 4px;
}

.claims__provider-row--small {
  margin-top: 8px;
}

.claims__provider-label {
  font-weight: 700;
  color: #d6fbe3;
}

.claims__provider-value {
  opacity: .95;
}

/* Cards de secciones */
.claims__card {
  margin-top: 22px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: rgba(20, 42, 50, .9);
}

.claims__card--internal {
  border-style: dashed;
  opacity: .9;
}

.claims__section-title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.claims__required-note {
  font-size: .85rem;
  font-weight: 500;
  color: #ffb74d;
}

.claims__badge {
  font-size: .8rem;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  opacity: .8;
}

/* Grids */
.claims__grid {
  display: grid;
  gap: 14px;
  margin-bottom: 10px;
}

.claims__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.claims__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Campos */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field label {
  font-size: .9rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: #02141E;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(191, 231, 210, .8);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #7ec653;
  box-shadow: 0 0 0 1px rgba(126, 198, 83, .5);
}

/* Radios tipo "chip" */
.form-field__inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  font-size: .9rem;
}

.radio-chip input {
  accent-color: #7ec653;
}

.radio-chip span {
  line-height: 1;
}

/* Textos auxiliares */
.claims__hint {
  margin: 6px 0 0;
  font-size: .8rem;
  opacity: .8;
}

/* Firma / declaración */
.claims__firm {
  margin-top: 10px;
}

.claims__firm-text {
  margin: 0;
  font-size: .85rem;
  opacity: .85;
}

/* Notas legales + botón */
.claims__notes {
  margin-top: 22px;
  font-size: .9rem;
}

.claims__notes p {
  margin: 0 0 4px;
  opacity: .9;
}

.claims__submit-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  background: #7ec653;
  color: #fff;
  box-shadow: 0 4px 0 #5ea53f;
  letter-spacing: .03em;
  transition: transform .12s ease, box-shadow .12s ease, filter .15s ease;
}

.claims__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 12px rgba(0, 0, 0, .35);
  filter: brightness(1.03);
}

/*  CATÁLOGO */

.me-header{
  background:#02141E;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.me-header__wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.me-header__brand{
  display:flex;
  align-items:center;
  gap:100px;
  text-decoration:none;
  color:var(--text);
}

.me-header__logo{
  width:180px;
  height:80px;
  object-fit:contain;
}


.me-header__nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.me-header__nav-link{
  text-decoration:none;
  color:var(--muted);
  font-size:1.1rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid transparent;
}

.me-header__nav-link--icon{
  border-color:rgba(255,255,255,.14);
  background:rgba(8,27,38,.7);
}

/* CATÁLOGO */

.catalog-page{
  background:#02141E;
  color:var(--text);
  padding:32px 16px 60px;
}

.catalog-page__wrap{
  max-width:1100px;
  margin:0 auto;
}

/* Títulos */
.catalog-page__header{
  text-align:center;
  margin-bottom:22px;
}

.catalog-page__title{
  margin:0 0 6px;
  font-size:clamp(2rem, 3vw + .6rem, 2.8rem);
  font-weight:800;
  color:#7ec653;
}

.catalog-page__subtitle{
  margin:0;
  opacity:.9;
  max-width:650px;
  color:#fff;
  margin-inline:auto;
  font-size:.98rem;
}

/* Buscador */
.catalog-search{
  margin:22px 0 14px;
  position:relative;
  max-width:100%;
}

.catalog-search__icon{
  position:absolute;
  left:16px;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  border-radius:4px;
  border:2px solid #cfe3d8;
  border-right:none;
}

.catalog-search__icon::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-3px;
  width:8px;
  height:2px;
  border-radius:99px;
  background:#cfe3d8;
  transform:rotate(45deg);
}

.catalog-search__input{
  width:100%;
  padding:12px 14px 12px 42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background:#02141E;
  color:var(--text);
  font-family:inherit;
  font-size:.96rem;
}

.catalog-search__input::placeholder{
  color:rgba(191,231,210,.8);
}

.catalog-search__input:focus{
  outline:none;
  border-color:#7ec653;
  box-shadow:0 0 0 1px rgba(126,198,83,.5);
}

/* Filtros */
.catalog-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.filter-pill{
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(8,27,38,.85);
  color:var(--muted);
  font-size:.9rem;
  cursor:pointer;
}

.filter-pill--active{
  background:#7ec653;
  color:#02141E;
  border-color:#7ec653;
}

/* Grid de cursos */
.courses-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:50px;
}

/* Card de curso */
.course-card{
  background:hwb(204 26% 56% / 0.20);
  border:2px solid var(--stroke);
  border-radius:calc(var(--radius) + 4px);
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Header del card */
.course-card__header{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.course-card__title{
  margin:0 0 4px;
  font-size:1.08rem;
  font-weight:800;
}

.course-card__subtitle{
  margin:0;
  font-size:.9rem;
  color:var(--muted);
}

.course-card__badge{
  margin-left:auto;
  align-self:flex-start;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(112,173,71,.16);
  border:1px solid #7ec653;
  font-size:.78rem;
  font-weight:700;
  white-space:nowrap;
}

/* Cuerpo del card */
.course-card__body{
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.course-card__row{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.course-card__row--chips{
  margin-top:4px;
}

.course-card__label{
  font-size:.85rem;
  color:var(--muted);
}

.course-card__value{
  font-size:.95rem;
}

/* Chips de evaluaciones */
.chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:2px;
}

.chip{
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  font-size:.78rem;
  background:rgba(2,20,30,.9);
}

.chip--more{
  background:#02141E;
  border-color:#7ec653;
  color:#7ec653;
}

/* Footer del card */
.course-card__footer{
  margin-top:6px;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:8px;
}

.course-card__link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:var(--muted);
  font-size:.9rem;
}

.course-card__link span{
  transition:transform .12s ease;
}

.course-card__link:hover span{
  transform:translateX(2px);
}
.catalog-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .catalog-page-btn {
      min-width: 32px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .25);
      background: transparent;
      color: #ffffff;
      cursor: pointer;
      font-size: .9rem;
    }
    .catalog-page-btn--active {
      background: #7ec653;
      color: #02141E;
      border-color: #7ec653;
      font-weight: 700;
    }
/* ============ DETALLE ASESORIA ============ */


.me-header__name{
  font-weight:700;
  font-size:1rem;
}


/* ============ SECCIÓN DETALLE ============ */

.course-detail{
  background:#02141E;
  color:var(--text);
  padding:32px 16px 60px;
}

.course-detail__wrap{
  max-width:1100px;
  margin:0 auto;
}

/* Header del detalle: título a la izquierda, botón a la derecha */
.course-detail__header {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto; /* izquierda: textos, derecha: botón */
  row-gap: 6px;
  column-gap: 24px;
  align-items: center;
}

/* Todos los textos van en la columna izquierda */
.course-detail__badge,
.course-detail__title,
.course-detail__subtitle {
  grid-column: 1;
}

/* El botón ocupa la columna derecha y se centra verticalmente */
.course-detail__back {
  grid-column: 2;
  grid-row: 1 / span 3;   /* desde badge hasta subtítulo */
  justify-self: end;
}


.course-detail__badge{
  display:inline-block;
  max-width: 60px;
  text-align: center;
  padding:4px 10px;
  border-radius:999px;
  background:hsla(98, 50%, 55%, 0.15);
  border:1px solid #7ec653;
  color:#7ec653;
  font-size:.78rem;
  font-weight:700;
}

.course-detail__title{
  margin:10px 0 4px;
  font-size:clamp(2.3rem, 3vw + 1rem, 3rem);
  font-weight:800;
}

.course-detail__subtitle{
  margin:0;
  font-size:1rem;
  color:var(--muted);
}

/* Layout: izquierda descripción, derecha sidebar */
.course-detail__layout{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap:20px;
}

/* Panel principal */
.course-panel{
  background:#072029;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  padding:24px 24px 22px;
}

.course-panel__title{
  margin:0 0 12px;
  font-size:1.4rem;
  font-weight:800;
}

.course-panel__text{
  margin:0 0 20px;
  line-height:1.6;
  opacity:.96;
}

.course-panel__subtitle{
  margin:0 0 12px;
  font-size:1.15rem;
  font-weight:800;
}

/* Lista de temas clave */
.topics-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.topics-list__item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1rem;
}

.topics-list__icon{
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid #7ec653;
  color:#7ec653;
  font-size:.9rem;
  display:grid;
  place-items:center;
}

/* Sidebar derecha */
.course-detail__sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Card profesor */
.prof-card{
  background:#072029;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  padding:18px 20px 20px;
}

.prof-card__header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:10px;
}

.prof-card__avatar{
  width:100px;
  height:60px;
  border-radius:50%;
  border:3px solid #7ec653;
  background:#02141E;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.prof-card__avatar-inner{
  width:auto;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:1.1rem;
  color:#7ec653;
}

.prof-card__name{
  margin:0 0 2px;
  font-size:1.2rem;
  font-weight:800;
}

.prof-card__role{
  margin:0;
  font-size:.95rem;
  color:#7ec653;
}

.prof-card__bio{
  margin:8px 0 16px;
  font-size:.95rem;
  line-height:1.5;
  opacity:.95;
}

/* Botón "Quiero asesoría" */
.prof-card__cta{
  width:100%;
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 18px;
  background:#7ec653;
  color:#02141E;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 4px 0 #5ea53f;
  transition:transform .12s ease, box-shadow .12s ease, filter .15s ease;
}

.prof-card__cta-icon{
  font-size:1rem;
}

.prof-card__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 7px 12px rgba(0,0,0,.35);
  filter:brightness(1.03);
}

.prof-card__cta:active{
  transform:translateY(0);
  box-shadow:0 3px 6px rgba(0,0,0,.45);
}

/* Card evaluaciones */
.eval-card{
  background:#072029;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  padding:18px 20px 20px;
}

.eval-card__title{
  margin:0 0 14px;
  font-size:1.3rem;
  font-weight:800;
}

.eval-block{
  margin-bottom:12px;
}

.eval-block__title{
  margin:0 0 6px;
  font-size:1rem;
  font-weight:700;
}

.eval-block__chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

/* Reaprovechamos estilo chip pero más compacto */
.chip--eval{
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:#02141E;
  font-size:.78rem;
}

/* Nota inferior */
.eval-card__note{
  margin:8px 0 0;
  font-size:.85rem;
  opacity:.8;
}



.course-detail__back {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #70AD47;      /* verde marca */
  background: rgba(112, 173, 71, .12);
  color: #70AD47;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.course-detail__back-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.course-detail__back:hover {
  background: #70AD47;
  color: #02141E;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}

.course-detail__back:active {
  transform: translateY(0);
  box-shadow: none;
}


/* ============ RESPONSIVE ============ */

@media (max-width:880px){
  .course-detail__layout{
    grid-template-columns:1fr;
  }

  .course-detail__sidebar{
    flex-direction:column;
  }
}

@media (max-width:600px){
  .course-panel{
    padding:18px 16px;
  }

  .prof-card,
  .eval-card{
    padding:16px 16px 18px;
  }
  
}


/* =====================
   RESPONSIVE
   ===================== */

@media (max-width:720px){
  .catalog-page{
    padding-top:24px;
  }

  .catalog-page__header{
    text-align:left;
  }

  .catalog-page__title{
    text-align:left;
  }

  .catalog-page__subtitle{
    margin-inline:0;
  }
}


/* Responsive */
@media (max-width: 880px) {
  .claims__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .claims__provider {
    max-width: none;
  }
  .prof-card__avatar{
    width:80px;
    height:70px;
  }
}

@media (max-width: 520px) {
  .claims__me-logo {
    width: 56px;
  }

  .claims__book-icon {
    width: 56px;
    height: 56px;
  }

  .claims__title {
    font-size: 1.5rem;
  }
}

/* Responsive */
@media (max-width:780px) {
  .claims__grid--3 {
    grid-template-columns: 1fr;
  }

  .claims__grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width:540px) {
  .claims__brand {
    flex-direction: row;
    align-items: flex-start;
  }

  .claims__title {
    font-size: 1.6rem;
  }
}

/* Responsive */
@media (max-width:640px) {
  .payment-success__header {
    flex-direction: row;
    align-items: flex-start;
  }

  .payment-success__wrap {
    padding-inline: 4px;
  }

  .payment-success__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-success__value {
    text-align: left;
  }

  .payment-success__actions {
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .checkout__row {
    grid-template-columns: 1.6fr 1.2fr 1fr;
  }

  .checkout__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout__pay-btn {
    align-self: flex-end;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .footer__wrap {
    grid-template-columns: 1fr 1fr;
  }

  .footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__wrap {
    grid-template-columns: 1fr;
  }

  .footer__logo {
    width: 160px;
  }
}


/* Responsive */
@media (max-width: 720px) {
  .promo {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 460px) {
  .promo {
    flex-basis: 100%;
  }
}


@media (max-width: 720px) {
  .post {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 460px) {
  .post {
    flex-basis: 100%;
  }
}


@media (max-width: 700px) {
  .paso {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 460px) {
  .paso {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .catalogo__tab {
    flex: 1 1 100%;
    text-align: center;
  }
}


@media (max-width: 720px) {
  .lead {
    width: 100%
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .tag {
    font-size: .85rem;
  }
}