/* ==========================================================================
   1) Design Tokens (colores, tipografía y medidas globales)
   ========================================================================== */
:root {
  --color-primary-700: #00205c;
  --color-primary-500: #0239a6;
  --color-accent-500: #64a6ff;
  --color-bg-hero: #d4e6fe;
  --color-warning-500: #ffb627;
  --font-family-base: "Manrope", sans-serif;
  --color-surface: #fff;
  --color-input: #e9e9e9;
  --color-text: #262626;
  --color-muted: #6f6f6f;
  --color-border: #d5d5d5;
  --header-height: 60px;
}

/* ==========================================================================
   2) Reset Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-family-base);
}

body {
  font-family: inherit;
  background-color: var(--color-surface);
  color: var(--color-text);
}

/* ==========================================================================
   3) Utilidades de grilla (layout hero)
   ========================================================================== */
.col-12 {
  grid-column: span 12;
}
.col-6 {
  grid-column: span 6;
}
.col-4 {
  grid-column: span 4;
}
.col-3 {
  grid-column: span 3;
}
.col-1 {
  grid-column: span 1;
}

/* ==========================================================================
   4) Header
   ========================================================================== */
.site-header {
  background-color: var(--color-primary-700);
  width: 100%;
  min-height: 3rem;
  padding: 0;
}

.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  line-height: 1;
}

.logo-header {
  width: 10rem;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Header responsive */
@media (max-width: 768px) {
  .site-header {
    min-height: 1.5rem;
    padding: 0;
  }

  .logo-header {
    width: 9rem;
    height: auto;
  }
}

/* ==========================================================================
   5) Hero
   ========================================================================== */
.site-hero {
  background-color: var(--color-bg-hero);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  margin: 0 auto;
  gap: 10px;
  padding: 2rem 0;
}
.site-hero .hero-img {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  gap: 2rem;
}
.right {
  align-items: end;
  justify-content: center;
}
.right img {
  border-radius: 0.5rem 0 0 0.5rem;
}
.left img {
  border-radius: 0 0.5rem 0.5rem 0;
}
.left {
  align-items: start;
  justify-content: center;
}
.site-hero .hero-img img {
  width: 80%;
  min-height: 0;
  flex: 1 1 0;
  display: block;
  object-fit: cover;
}

.hero-mobile-carousel {
  display: none;
}

.hero-mobile-carousel__img {
  display: none;
}
.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content container {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
.hero-text1 {
  color: var(--color-primary-500);
  margin-bottom: 2rem;
}
.hero-content .copy-1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-content .copy-2 {
  font-size: 1.5rem;
  font-weight: 400;
}
.hero-text2 {
  color: var(--color-primary-700);
  font-size: 1.5rem;
}

/* Hero responsive */
@media (max-width: 900px) {
  :root {
    --header-height: 96px;
  }

  .site-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .col-3,
  .col-6 {
    grid-column: auto;
  }

  .site-hero .hero-img {
    display: none;
  }

  .site-hero .hero-img.left,
  .site-hero .hero-img.right {
    display: none;
  }

  .hero-mobile-carousel {
    display: flex;
    order: 1;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 230px;
    border-radius: 1rem;
    overflow: hidden;
  }

  .hero-mobile-carousel__img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .hero-mobile-carousel__img.is-active {
    opacity: 1;
  }

  .hero-content {
    order: 2;
  }
  .hero-content container {
    width: 90%;
    gap: 1rem;
  }
  .hero-content .copy-1 {
    font-size: 2rem;
    font-weight: 700;
  }
  .hero-content .copy-2 {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .hero-text2 {
    color: var(--color-primary-700);
    font-size: 1rem;
  }
}

/* ==========================================================================
   6) Banner Secundario + Marquee de Logos
   ========================================================================== */
.banner-map {
  width: 100%;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.banner-map__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.banner-map__media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-map__media img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 32, 92, 0.12);
}
.banner-map__media-mobile {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.banner-map__media-mobile img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 32, 92, 0.12);
}

.marquee-logo {
  width: 100%;
  max-width: 1180px;
  overflow: hidden;
  padding: 0 1.5rem;
}

.marquee-logo__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.marquee-logo__item[aria-hidden="true"] {
  display: none;
}

.marquee-logo__item {
  min-height: 92px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(2, 57, 166, 0.08);
  border-radius: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 32, 92, 0.08);
}

.marquee-logo__item img {
  max-width: 100%;
  max-height: 42px;
  display: block;
  object-fit: contain;
}

/* Banner + marquee responsive */
@media (max-width: 768px) {
  .banner-map {
    padding: 2rem 0;
  }

  .banner-map__container {
    gap: 1.25rem;
  }

  .banner-map__media {
    overflow: hidden;
  }

  .banner-map__media {
    display: none;
  }

  .banner-map__media-mobile {
    display: flex;
  }

  .marquee-logo {
    padding: 0;
  }

  .marquee-logo__track {
    width: max-content;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    animation: marquee-left 16s linear infinite;
    padding: 0 1rem;
    margin-bottom: 0;
  }

  .marquee-logo__item[aria-hidden="true"] {
    display: flex;
  }

  .marquee-logo__item {
    width: 132px;
    min-height: 76px;
    padding: 0.85rem 1rem;
    flex: 0 0 auto;
  }

  .marquee-logo__item img {
    max-height: 32px;
  }
}

/* Animación de carrusel horizontal de logos (mobile) */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

/* ==========================================================================
   7) Footer + Formulario
   ========================================================================== */
.site-footer {
  width: 100%;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-title,
.title-tdconsentido {
  color: var(--color-primary-700);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.footer-copy,
.copy-tdconsentido {
  max-width: 32rem;
  font-size: 1.25rem;
  line-height: 1.35;
  /* margin-bottom: 2.25rem; */
}

.form-footer {
  width: 100%;
  max-width: 29rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 2rem;
}

.form-footer input,
.form-footer select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.85rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid transparent;
  background-color: var(--color-input);
  color: var(--color-text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.form-footer input::placeholder,
.form-footer select {
  color: var(--color-muted);
}

.form-footer select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
    linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.form-footer input:focus,
.form-footer select:focus {
  border-color: var(--color-accent-500);
  background-color: #f0f6ff;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.25rem;
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4c4c4c;
}

.form-check input {
  width: 0.9rem;
  min-height: auto;
  margin-top: 0.1rem;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--color-primary-500);
}

/* MailerLite form */
.ml-form-embedContainer {
  width: 100%;
  max-width: 29rem;
  margin: 2rem auto;
}

.ml-form-embedContainer .ml-block-form {
  width: 100%;
}

.ml-form-embedContainer .ml-form-formContent {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ml-form-embedContainer .ml-form-fieldRow {
  width: 100%;
}

.ml-form-embedContainer .form-control {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.85rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid transparent;
  background-color: var(--color-input);
  color: var(--color-text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.ml-form-embedContainer .form-control::placeholder {
  color: var(--color-muted);
}

.ml-form-embedContainer .form-control:focus {
  border-color: var(--color-accent-500);
  background-color: #f0f6ff;
}

.ml-form-embedPermissions {
  margin-top: 0.5rem;
}

.ml-form-embedPermissionsContent {
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4c4c4c;
}

.ml-form-embedPermissionsContent p {
  margin: 0;
}

.ml-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4c4c4c;
  cursor: pointer;
}

.ml-terms-check input {
  width: 0.9rem;
  min-height: auto;
  margin-top: 0.12rem;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--color-primary-500);
}

.ml-terms-error {
  min-height: 1rem;
  margin-top: 0.35rem;
  color: #c53131;
  font-size: 0.7rem;
}

.ml-form-embedSubmit {
  margin-top: 0.5rem;
}

.ml-form-embedSubmit .primary {
  width: 100%;
  min-height: 3rem;
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: 0.38rem;
  background-color: var(--color-primary-700);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.ml-form-embedSubmit .primary:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.ml-form-embedSubmit .primary:hover,
.ml-form-embedSubmit .primary:focus-visible {
  background-color: var(--color-primary-500);
  transform: translateY(-1px);
}

.ml-form-embedSubmit .loading {
  display: none;
}

.ml-form-successContent h4 {
  margin: 0 0 0.5rem;
  color: var(--color-primary-700);
  font-size: 1.2rem;
}

.ml-form-successContent p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-submit {
  margin: 0.7rem auto 0;
  min-height: 3rem;
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: 0.38rem;
  background-color: var(--color-primary-700);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

a.form-submit {
  display: inline-block;
  text-decoration: none;
}

.form-submit:hover,
.form-submit:focus-visible {
  background-color: var(--color-primary-500);
  transform: translateY(-1px);
}

/* Footer responsive */
@media (max-width: 640px) {
  .site-footer .container {
    padding: 2.5rem 1rem 3rem;
  }

  .footer-copy {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .form-submit {
    width: 60%;
    text-align: center;
  }

  .ml-form-embedSubmit .primary {
    width: 100%;
    text-align: center;
  }
}
.footer-logo {
  margin-top: 2rem;
}
.logo-tdconsentido {
  width: 10rem;
}
.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}
.footer-phone-title {
  color: var(--color-warning-500);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  text-align: center;
}
.footer-phone-copy {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 640px) {
  .footer-phone {
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .footer-phone-title {
    font-size: 1.5rem;
  }

  .footer-phone-copy {
    font-size: 1rem;
  }
}

/* ==========================================================================
   8) Carrusel de Promociones
   ========================================================================== */
.cards-carousel {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(2, 57, 166, 0.28) transparent;
}

.cards-carousel::-webkit-scrollbar {
  height: 7px;
}

.cards-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.cards-carousel::-webkit-scrollbar-thumb {
  background-color: rgba(2, 57, 166, 0.25);
  border-radius: 999px;
}

.cards-carousel::-webkit-scrollbar-thumb:hover {
  background-color: rgba(2, 57, 166, 0.42);
}

.cards-carousel__track {
  width: max-content;
  min-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
}

.cards-carousel .promo-card,
.cards-grid .promo-card {
  width: 260px;
  flex: 0 0 auto;
}

.cards-carousel .promo-card__media,
.cards-grid .promo-card__media {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ececec;
}

.cards-carousel .promo-card__img,
.cards-grid .promo-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.cards-carousel .promo-card__img--base,
.cards-grid .promo-card__img--base {
  opacity: 1;
}

.cards-carousel .promo-card__img--hover,
.cards-grid .promo-card__img--hover {
  opacity: 0;
}

.cards-carousel .promo-card:hover .promo-card__img--base,
.cards-carousel .promo-card:focus-within .promo-card__img--base,
.cards-grid .promo-card:hover .promo-card__img--base,
.cards-grid .promo-card:focus-within .promo-card__img--base {
  opacity: 0;
}

.cards-carousel .promo-card:hover .promo-card__img--hover,
.cards-carousel .promo-card:focus-within .promo-card__img--hover,
.cards-grid .promo-card:hover .promo-card__img--hover,
.cards-grid .promo-card:focus-within .promo-card__img--hover {
  opacity: 1;
}

.cards-carousel .promo-card__benefit,
.cards-grid .promo-card__benefit {
  margin-top: 0.7rem;
  color: #5b90eb;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.cards-carousel .promo-card__title,
.cards-grid .promo-card__title {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #171717;
  line-height: 1.05;
}

.cards-carousel .promo-card__category,
.cards-grid .promo-card__category {
  margin-top: 0.3rem;
  color: #1f1f1f;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Carrusel: usar mismo tamaño visual en desktop y mobile */
.cards-carousel .promo-card__media {
  height: auto;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.cards-carousel .promo-card__img {
  object-fit: contain;
  object-position: center;
}

.cards-carousel .promo-card__benefit {
  font-size: 1.5rem;
}

.cards-carousel .promo-card__title {
  font-size: 1.5rem;
}

.cards-carousel .promo-card__category {
  font-size: 1rem;
}

.cards-carousel .promo-card__benefit,
.cards-carousel .promo-card__title,
.cards-carousel .promo-card__category {
  text-decoration: none;
}

.cards-carousel .promo-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Carrusel responsive */
@media (max-width: 768px) {
  .cards-carousel {
    padding: 1.5rem 1rem 2rem;
  }

  .cards-carousel__track {
    justify-content: flex-start;
  }

  .cards-carousel .promo-card {
    width: 260px;
    flex: 0 0 auto;
  }

  .cards-carousel .promo-card__benefit {
    font-size: 1rem;
  }

  .cards-carousel .promo-card__title {
    font-size: 0.9rem;
  }

  .cards-carousel .promo-card__category {
    font-size: 0.7rem;
  }

  .cards-carousel .promo-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
    background: #fff;
  }

  .cards-carousel .promo-card__img {
    object-fit: contain;
    object-position: center;
  }
}
.buton-redirect {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

/* ==========================================================================
   9) Grid de Cupones
   ========================================================================== */
.cards-grid {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.cards-grid__header {
  text-align: center;
  margin-bottom: 2rem;
}

.cards-grid__logo {
  width: 200px;
  display: block;
  margin: 0 auto 0.8rem;
}

.cards-grid__title {
  font-size: 2.15rem;
  color: var(--color-primary-700);
  line-height: 1.1;
}

.cards-grid__copy {
  margin-top: 0.5rem;
  color: #1f1f1f;
  font-size: 1.15rem;
}

.cards-grid__track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1rem;
}

.cards-grid__track .promo-card {
  width: 100%;
  max-width: none;
}

.cards-grid .promo-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Grid responsive */
@media (max-width: 900px) {
  .cards-grid__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards-grid {
    padding: 1.5rem 1rem 2rem;
  }

  .cards-grid__title {
    font-size: 1.75rem;
  }

  .cards-grid__copy {
    font-size: 1rem;
  }

  .cards-grid__track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cards-grid .promo-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
    background: #fff;
  }

  .cards-grid .promo-card__img {
    object-fit: contain;
    object-position: center;
  }
}

/* ==========================================================================
   10) Detalle de Cupón
   ========================================================================== */
.coupon-detail {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
}

.coupon-detail__media {
  width: min(100%, 560px);
  flex: 0 0 min(100%, 560px);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 32, 92, 0.08);
}

.coupon-detail__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.coupon-detail__content {
  flex: 1 1 auto;
  padding-top: 0.5rem;
}

.coupon-detail__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.coupon-detail__heading-text {
  min-width: 0;
}

.coupon-detail__category-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-detail__category-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coupon-detail__benefit {
  margin-top: 0;
  color: #5d97f3;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1.05;
}

.coupon-detail__title {
  margin-top: 0.45rem;
  font-size: clamp(1.8rem, 2.8vw, 2.9rem);
  line-height: 1.05;
  color: #141414;
}

.coupon-detail__category {
  margin-top: 0.55rem;
  color: #2b2b2b;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.coupon-detail__terms-head {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.coupon-detail__terms-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #5d97f3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.coupon-detail__subtitle {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--color-primary-700);
  font-weight: 800;
  line-height: 1.1;
}

.coupon-detail__terms-link {
  margin: 0.2rem 0 0;
  color: #787878;
  font-size: 0.95rem;
}

.coupon-detail__terms-plus {
  margin-left: auto;
  color: var(--color-primary-700);
  font-size: 3rem;
  line-height: 1;
}

.coupon-detail__terms {
  margin-top: 1.1rem;
  line-height: 1.55;
  color: #3d3d3d;
  font-size: 0.95rem;
}

.coupon-detail__cta {
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 300px;
  border-radius: 0.45rem;
  background: var(--color-primary-700);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
}

.coupon-detail__cta:hover,
.coupon-detail__cta:focus-visible {
  background: var(--color-primary-500);
}

.coupon-detail--not-found {
  display: block;
}

/* Detalle responsive */
@media (max-width: 900px) {
  .coupon-detail {
    flex-direction: column;
    gap: 1.15rem;
    padding: 1rem 0.9rem 2rem;
  }

  .coupon-detail__media {
    width: 100%;
    flex-basis: auto;
    box-shadow: none;
  }

  .coupon-detail__content {
    width: 100%;
    padding-top: 0.1rem;
  }

  .coupon-detail__heading {
    align-items: center;
    gap: 0.85rem;
  }

  .coupon-detail__category-icon-wrap {
    width: 56px;
    height: 56px;
    /* flex: 0 0 56px; */
  }

  .coupon-detail__category-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .coupon-detail__category {
    font-size: 0.95rem;
  }

  .coupon-detail__subtitle {
    font-size: 1.25rem;
  }

  .coupon-detail__terms-head {
    margin-top: 1.35rem;
    gap: 0.7rem;
  }

  .coupon-detail__terms {
    font-size: 0.92rem;
    margin-top: 0.8rem;
  }

  .coupon-detail__cta {
    width: 100%;
    margin-top: 1.2rem;
  }
}

.container-tdconsentido {
  width: 75%;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .title-tdconsentido {
    font-size: 1.5rem;
  }
  .copy-tdconsentido {
    font-size: 1rem;
  }
}

/* ==========================================================================
   11) Steps (Cómo funciona)
   ========================================================================== */
.steps {
  width: 100%;
  padding: 2rem 1rem 3.5rem;
}

.steps__container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.steps__title {
  color: #5d97f3;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
}

.steps__subtitle {
  margin-top: 3.25rem;
  color: var(--color-primary-700);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
}

.steps__intro {
  margin-top: 1.25rem;
  font-size: 2rem;
  color: #1e1e1e;
}

.steps__list {
  list-style: none;
  margin: 3rem 2rem;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.steps__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.steps__number {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  flex: 0 0 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: #5d97f3;
}

.steps__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #1e1e1e;
}

/* .steps__cta {
  margin-top: 2.5rem;
  min-width: 340px;
  min-height: 56px;
  font-size: 1.7rem;
} */

@media (max-width: 768px) {
  .steps__title {
    font-size: 2.3rem;
  }
  .steps {
    padding: 1.5rem 1rem 2.5rem;
  }

  .steps__subtitle {
    font-size: 1.8rem;
    margin-top: 1.75rem;
  }

  .steps__intro {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }

  .steps__list {
    margin-top: 2rem;
    gap: 1rem;
  }

  .steps__number {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 1.6rem;
  }

  .steps__text {
    font-size: 1.05rem;
  }

  /* .steps__cta {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    font-size: 1.15rem;
    min-height: 50px;
  } */
}
