:root {
  --color-white: #ffffff;
  --color-text-soft: rgba(255, 255, 255, 0.82);
  --color-text-muted: rgba(255, 255, 255, 0.68);
  --color-border: rgba(255, 255, 255, 0.14);
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-strong: rgba(255, 255, 255, 0.12);
  --color-dark: #111111;
  --color-chip: #222;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 6px;
  --container: 1180px;
  
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'suse', Arial, sans-serif;
  background: #e9e9e9;
  color: var(--color-white);
}

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

button,
input,
select {
  font: inherit;
}

/* Header */

@media (max-width: 1024px) {
  .header {
    position: relative;
    z-index: 1003;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -26px;
    width: min(86vw, 360px);
    height: 100dvh;
    margin-top: 0;
    padding: 92px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: rgba(17, 17, 17, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    z-index: 1002;

    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1rem;
    transform: translateX(16px);
    opacity: 0;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      background 0.2s ease;
  }

  .nav.is-open .nav__link {
    transform: translateX(0);
    opacity: 1;
  }

  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.05s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.09s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.13s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.17s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 0.21s; }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 2;
  }

  .menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 1004;
  }

  .menu-btn span {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .menu-btn.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0f1115;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.25) 0%, rgba(18, 24, 31, 0.18) 40%, rgba(8, 12, 18, 0.28) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 30%, transparent 62%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    position: relative;
    z-index: 999;
    margin-bottom: -100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 98px;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  transition: 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.icon-btn img {
  width: 20px;
  fill: var(--color-white);
}

.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.menu-btn span {
  width: 16px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
}

.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px 0 70px;
}

.hero__text {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero__text h1 {
    font-family: SUSE;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    max-width: 800px;
}

.hero__text p {
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-text-soft);
    max-width: 500px;
}

.hero-form {
    width: min(100%, 550px);
    display: grid;
    grid-template-columns: 1fr 70px 130px;
    gap: 0;
    padding: 12px;
    border: none;
    border-radius: 18px;
    background: rgba(60, 66, 78, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.hero-form input,
.hero-form select {
  border: 0;
  outline: none;
  background: transparent;
  color: var(--color-white);
}

.hero-form input {
  padding: 0 14px;
  min-width: 0;
  font-size: 0.97rem;
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-white);
    background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%);
    background-position: calc(100% - 11px) 50%, calc(100% - 6px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    margin-right: 15px;
    padding-right: 5px;
}

.btn--generate {
    height: 42px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 700;
    border-radius: 12px;
    font-size: 14px;
    line-height: 16px;
}

.tags {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.tags__label {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.90);
}

.tags__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-chip);
  color: var(--color-white);
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.models{
    margin-top: 60px;
}

.models p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.90);
}

.models__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.model {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.model__icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

.hero-generator-form {
  width: min(100%, 480px);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr 78px 116px;
  align-items: center;
  gap: 0;
  padding: 8px;
  background: rgba(53, 61, 75, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-generator-form__input,
.hero-generator-form__select {
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  min-width: 0;
}

.hero-generator-form__input {
  padding: 0 14px;
  font-size: 0.97rem;
}

.hero-generator-form__input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.hero-generator-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 18px 0 10px;
  font-size: 0.95rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 12px) 52%, calc(100% - 7px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.hero-generator-form__button {
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #161616;
  font-weight: 700;
  cursor: pointer;
}

.hero-form-inner{
    display: none!important;
}

@media (max-width: 1024px) {
  .hero__inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .menu-btn {
    display: flex;
  }

  .hero__text h1 {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }
}

@media (max-width: 640px) {

  .hero-generator-form{
    display: none!important;
  }

  .hero-form-inner{
    display: inherit!important;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    width: min(calc(100% - 24px), 100%);
  }

  .header {
    padding: 16px 0 8px;
    max-width: 90%;
  }

  .logo {
    font-size: 1.8rem;
  }

  .hero__content {
    align-items: flex-start;
    padding: 115px 0 48px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__text h1 {
    max-width: 320px;
    font-size: clamp(2.7rem, 10vw, 4rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero__text p {
    max-width: 315px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-form {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr 70px;
    gap: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

    .hero-form-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

  .hero-form input {
    grid-column: 1 / -1;
    height: 44px;
    padding: 0 12px;
    width: 79%;
  }

  .hero-form select {
        height: 42px;
        text-align: left;
        padding-left: 12px;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.06);
        background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
        width: 16%;
        margin-right: 0;
  }

  .btn--generate {
    height: 50px;
    min-width: 0;
  }

  .tags {
    display: flex;
    flex-direction: column;
  }

  .tags__list{
    flex-wrap: nowrap;
  }

  .tags__label {
    margin-bottom: 12px;
  }

  .models{
    margin-top: 0px;
  }

  .models p {
    max-width: 290px;
    margin: 0 auto 18px;
    line-height: 1.55;
  }

  .models__logos {
    gap: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .model img{
    height: 30px!important;
  }

  .model {
    font-size: 1rem;
    gap: 8px;
  }

  .model__icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

/* Section destacados */

.featured-features {
  padding: 128px 20px 112px;
  background: white;
}

.featured-features__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-features__label {
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: var(--Mixed-Gradient, linear-gradient(70deg, #FF0F3A 2.47%, #3C34C1 98.44%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-features__title {
    color: var(--Text-Titles-Text, #1B1A1A);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: SUSE;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px; /* 125% */
}

.featured-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.feature-card {
  position: relative;
  display: flex;
  padding: 40px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;

  border-radius: 12px;
  z-index: 0;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* grosor del borde */
  border-radius: 12px;
  background: linear-gradient(180deg, #EAEAEA 0%, #FFF 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card h3 {
    color: var(--Text-Titles-Text, #1B1A1A);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: SUSE;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.feature-card p {
    color: var(--Text-Desc-Text-Color, #4B4B4B);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
}

.feature-card__icon-btn,
.feature-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.feature-card__icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  background: #1f1f1f;
}

.feature-card__icon-btn img {
  width: 13px;
  height: 10px;
  object-fit: contain;
}

.feature-card__cta {
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #ff1843;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.feature-card__cta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.feature-card__icon-btn:hover,
.feature-card__cta:hover {
  transform: translateY(-1px);
}

.featured-features__bottom-text {
    max-width: 760px;
    margin: 48px auto 0;
    color: var(--Text-Sub-Text-Color, #282828);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
}

.featured-features__bottom-text a {
  color: #ff1843;
  text-decoration: none;
}

@media (max-width: 991px) {
  .featured-features {
    padding: 88px 16px 88px;
  }

  .featured-features__title {
    font-size: 42px;
    line-height: 1.12;
  }

  .featured-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(2n) {
    border-right: none;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid #eaeaea;
  }
}

@media (max-width: 767px) {
  .featured-features {
    padding: 64px 20px 72px;
  }

  .featured-features__label {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .featured-features__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .featured-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    border: none;
    background: transparent;
    overflow: visible;
  }

  .feature-card {
    min-height: auto;
    padding: 28px 24px 36px;
    gap: 28px;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    background: #fff;
  }

  .feature-card,
  .feature-card:last-child,
  .feature-card:nth-child(2n) {
    border-right: 1px solid #eaeaea;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid #eaeaea;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .featured-features__bottom-text {
    margin-top: 36px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Seccion modelos de IA */

.models-section {
    background-color: white;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.models-section-background {
  background-color: #1B1A1A;
  padding: 100px 0;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

.models-stage {
  position: relative;
  max-width: 1200px;
  height: 680px;
  margin: 0 auto;
}

.models-showcase__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.models-showcase__eyebrow {
  color: #F9F9F9;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.models-showcase__title {
  color: #FFF;
  font-family: SUSE, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 50px;
}

.stack-card {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(
    142deg,
    rgba(254, 248, 255, 0.16) 1.8%,
    rgba(254, 248, 255, 0.04) 45%,
    rgba(254, 248, 255, 0.02) 99.75%
  );
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease,
    filter 0.75s ease,
    box-shadow 0.75s ease,
    height 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 48%, rgba(255,255,255,0.18), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(255,255,255,0.07), transparent 20%),
    linear-gradient(115deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 50%, rgba(255,255,255,0.025));
  pointer-events: none;
  z-index: 1;
}

.stack-card__detail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 420px 52px;
  gap: 56px;
  align-items: center;
  padding: 42px 56px;
  min-height: 228px;
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

.stack-card__num-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.stack-card__num {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.stack-card__text {
  max-width: 490px;
  min-width: 0;
}

.stack-card__title {
  color: #FFF;
  font-family: SUSE, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  margin: 0 0 20px;
}

.stack-card__text p {
  color: #F9F9F9;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 50px;
}

.stack-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  background: #fff;
  color: #181818;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.stack-card__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  justify-self: end;
  align-self: start;
}

.stack-card__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.stack-card__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.stack-card__media {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.stack-card__media img,
.stack-card__media video,
.stack-card__video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  background: #111;
}

/* ESTADOS */
.stack-card.is-active {
  z-index: 3;
  height: 520px;
  transform: translateY(220px) scale(1);
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.stack-card.is-active .stack-card__detail {
  opacity: 1;
  transform: translateY(0);
}

.stack-card.is-active .stack-card__icon span:last-child {
  opacity: 0;
}

.stack-card.is-active .stack-card__media {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.stack-card.is-next {
  z-index: 2;
  height: 228px;
  transform: translateY(110px) scale(1);
  opacity: 0.92;
  filter: blur(0.15px);
}

.stack-card.is-last {
  z-index: 1;
  height: 228px;
  transform: translateY(0) scale(1);
  opacity: 0.82;
  filter: blur(0.3px);
}

.stack-card.is-next .stack-card__text p,
.stack-card.is-next .stack-card__btn,
.stack-card.is-last .stack-card__text p,
.stack-card.is-last .stack-card__btn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.stack-card.is-next .stack-card__media,
.stack-card.is-last .stack-card__media {
  opacity: 0.42;
  transform: translateX(0) scale(0.98);
  filter: blur(0.4px);
}

.stack-card.is-next .stack-card__text p,
.stack-card.is-next .stack-card__btn,
.stack-card.is-last .stack-card__text p,
.stack-card.is-last .stack-card__btn,
.stack-card.is-next .stack-card__media,
.stack-card.is-last .stack-card__media {
  transition:
    opacity 0.35s ease,
    transform 0.45s ease,
    filter 0.35s ease;
}

.models-bottom-cta {
  position: relative;
  width: 100%;
  margin-top: -85px;
}

.models-bottom-cta svg {
  display: block;
  width: 100%;
  height: auto;
}

.models-bottom-cta__button {
    position: absolute;
    left: 50%;
    top: 94px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 0px 24px;
    border-radius: 12px;
    background: linear-gradient(70deg, #FF0F3A 2.47%, #3C34C1 98.44%);
    color: #fff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-top: 14px;
}

.svg-mobile{
    display: none;
}

@media (max-width: 767px) {

    .svg-mobile{
    display: visible;
    margin-top: -20px;
}

    .models-section {
    padding: 0 12px;
  }

  .models-section-background {
    padding: 48px 16px 0;
    border-radius: 24px 24px 0 0;
    overflow: visible;
  }

  .models-showcase__inner {
    max-width: 100%;
  }

  .models-showcase__eyebrow {
    font-size: 14px;
    line-height: 22px;
  }

  .models-showcase__title {
    font-size: 32px;
    line-height: 38px;
    margin: 14px 0 28px;
  }

  .models-stage {
    max-width: 100%;
    height: 650px;
    margin: 0 auto;
  }

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

  .stack-card {
    border-radius: 14px;
  }

  .stack-card__detail {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 32px;
    gap: 14px;
    align-items: start;
    padding: 20px 16px;
    min-height: 170px;
  }

  .stack-card__num-col {
    padding-top: 2px;
  }

  .stack-card__num {
    font-size: 30px;
    line-height: 1;
  }

  .stack-card__text {
    max-width: 100%;
    min-width: 0;
  }

  .stack-card__title {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
  }

  .stack-card__text p {
    font-size: 15px;
    line-height: 22px;
    margin: 12px 0 16px;
  }

  .stack-card__btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  .stack-card__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: none;
  }

  .stack-card__icon span {
    width: 10px;
  }

  .stack-card__media {
    grid-column: 2 / 4;
    width: 100%;
    max-width: 220px;
    margin-top: 10px;
    justify-self: end;
  }

  .stack-card__media img,
  .stack-card__media video,
  .stack-card__video {
    border-radius: 18px;
  }

  /* stack mobile manteniendo el efecto */
  .stack-card.is-last {
    height: 150px;
    transform: translateY(0) scale(1);
    opacity: 0.78;
    filter: blur(0.25px);
  }

  .stack-card.is-next {
    height: 150px;
    transform: translateY(74px) scale(1);
    opacity: 0.9;
    filter: blur(0.12px);
  }

  .stack-card.is-active {
    height: 485px;
    transform: translateY(148px) scale(1);
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
  }

  /* compactas: mantienen estructura pero esconden detalle */
  .stack-card.is-next .stack-card__text p,
  .stack-card.is-next .stack-card__btn,
  .stack-card.is-last .stack-card__text p,
  .stack-card.is-last .stack-card__btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .stack-card.is-next .stack-card__media,
  .stack-card.is-last .stack-card__media {
    opacity: 0.32;
    transform: translateX(0) scale(0.98);
    filter: blur(0.3px);
    max-width: 150px;
    margin-top: 0;
  }

  .stack-card.is-active .stack-card__media {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }

  .stack-card.is-active .stack-card__icon span:last-child {
    opacity: 0;
  }

  .models-bottom-cta {
    margin-top: -6px;
  }

  .models-bottom-cta__button {
    top: 54px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
    margin-top: 0;
    white-space: nowrap;
  }
}



/* Sección opiniones */

.reviews-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 120px 20px 140px;
}

.reviews-section__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.reviews-section__bg-word {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(234, 234, 234, 0.5);
  text-align: center;
  font-family: SUSE, sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 128px;
  pointer-events: none;
  user-select: none;
}

.reviews-section__eyebrow {
  max-width: 560px;
  margin: 0 auto 72px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  background: linear-gradient(70deg, #ff0f3a 2.47%, #3c34c1 98.44%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-section__title {
  max-width: 880px;
  margin: 0 auto 56px;
  color: #1b1a1a;
  text-align: center;
  font-family: SUSE, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}

.reviews-section__testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.reviews-section__avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.reviews-section__name {
  color: #1b1a1a;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.reviews-section__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.reviews-section__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #8f8f8f;
  cursor: pointer;
}

.reviews-section__dot.is-active {
  background: #ff0f3a;
}

@media (max-width: 991px) {
  .reviews-section {
    padding: 100px 20px 120px;
  }

  .reviews-section__bg-word {
    font-size: 88px;
    line-height: 88px;
    top: 58px;
  }

  .reviews-section__eyebrow {
    margin-bottom: 56px;
  }

  .reviews-section__title {
    max-width: 760px;
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 72px 16px 88px;
  }

  .reviews-section__bg-word {
    top: 34px;
    font-size: 52px;
    line-height: 52px;
  }

  .reviews-section__eyebrow {
    max-width: 320px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
  }

  .reviews-section__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
  }

  .reviews-section__avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .reviews-section__name {
    font-size: 15px;
    line-height: 22px;
  }
}

.reviews-section__slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.reviews-section__slides {
  position: relative;
  min-height: 212px!important;
}

.reviews-section__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.reviews-section__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reviews-section__quote {
    max-width: 880px;
    margin: 0 auto 56px;
    color: #1b1a1a;
    text-align: center;
    font-family: SUSE, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
}

.reviews-section__role {
  color: #6d6d6d;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .reviews-section__slides {
    min-height: 320px;
  }

  .reviews-section__quote {
    font-size: 18px;
    line-height: 30px;
    max-width: 340px;
  }
}

/* Sección inspiración */

.inspiration-section {
  background: #ffffff;
  padding: 0 10px 40px;
}

.inspiration-section__inner {
  margin: 0 auto;
  padding: 96px 56px 96px;
  border-radius: 32px;
  background: #1b1a1a;
}

.inspiration-section__heading {
    max-width: 1200px;
    margin: auto auto 56px auto;
  }

.inspiration-section__eyebrow {
  margin: 0 0 12px;
  color: #f9f9f9;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.inspiration-section__title {
  margin: 0;
  color: #fff;
  font-family: SUSE, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}

.inspiration-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: auto;
}

.inspiration-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
  aspect-ratio: 1 / 1;
}

.inspiration-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

.inspiration-card__tag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  padding: 14px 18px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #1b1a1a;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.inspiration-section__bottom {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
}

.inspiration-section__text {
  margin: 0 auto 22px;
  max-width: 620px;
  color: #f9f9f9;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.inspiration-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  background: linear-gradient(70deg, #ff0f3a 2.47%, #3c34c1 98.44%);
  color: #fff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .inspiration-section {
    padding: 0 16px 32px;
  }

  .inspiration-section__inner {
    padding: 72px 28px 72px;
    border-radius: 26px;
  }

  .inspiration-section__heading {
    max-width: 1200px;
    margin: auto auto 56px auto;
  }

  .inspiration-section__title {
    font-size: 42px;
    line-height: 50px;
  }

  .inspiration-grid {
    gap: 16px;
  }

  .inspiration-card__tag {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 16px;
  }

  .inspiration-section__text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .inspiration-section {
    padding: 0 12px 24px;
  }

  .inspiration-section__inner {
    padding: 42px 16px 56px;
    border-radius: 22px;
  }

  .inspiration-section__heading {
    max-width: 1200px;
    margin: auto auto 56px auto;
  }

  .inspiration-section__eyebrow {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .inspiration-section__title {
    font-size: 34px;
    line-height: 42px;
  }

  .inspiration-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .inspiration-card {
    border-radius: 12px;
  }

  .inspiration-card__tag {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .inspiration-section__bottom {
    margin-top: 24px;
  }

  .inspiration-section__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }

  .inspiration-section__button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }
}

/* Seccion preguntas frecuentes */

/* Sección FAQ */

.faq-section {
  background: #ffffff;
  padding: 96px 20px 120px;
}

.faq-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  /*border-top: 1px solid #eaeaea;*/
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.faq-section__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-section__title {
  margin: 0 0 28px;
  color: #1b1a1a;
  font-family: SUSE, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}

.faq-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: #1f1f1f;
  color: #fff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  color: #1b1a1a;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  background: #1f1f1f;
}

.faq-item__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-item__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon span:last-child {
  opacity: 0;
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item__content-inner {
  overflow: hidden;
}

.faq-item__content p {
  margin: 0;
  padding: 0 18px 18px;
  color: #5b5b5b;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  max-width: 780px;
}

/* Tablet */
@media (max-width: 991px) {
  .faq-section {
    padding: 72px 16px 96px;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section__title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .faq-section {
    padding: 56px 12px 72px;
  }

  .faq-section__inner {
    gap: 28px;
    padding-top: 20px;
  }

  .faq-section__title {
    font-size: 36px;
    line-height: 42px;
  }

  .faq-section__button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .faq-item__trigger {
    padding: 18px 16px;
  }

  .faq-item__question {
    font-size: 17px;
    line-height: 26px;
  }

  .faq-item__content p {
    padding: 0 16px 16px;
    font-size: 16px;
    line-height: 28px;
  }
}


/* Footer */

.site-footer {
  background: white;
  padding: 0 10px 10px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: auto;
}

.site-footer-background{
  position: relative;
  margin: 0 auto;
  padding: 72px 56px 48px;
  border-radius: 32px;
  background: #171616;
  color: #fff;
}

/* CTA superior */

.site-footer__cta {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  margin-bottom: 56px;
  background: #111;
}

.site-footer__cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.site-footer__cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.site-footer__cta-eyebrow {
    color: var(--Text-Desc-Text-Color-On-Dark-Sections, #F9F9F9);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 10px;
}

.site-footer__cta-title {
    color: var(--Colors-White, #FFF);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: SUSE;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 40px;
}

.site-footer__cta-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.site-footer__cta-input {
  width: 100%;
  max-width: 360px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #1b1a1a;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  outline: none;
}

.site-footer__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(70deg, #ff0f3a 2.47%, #3c34c1 98.44%);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.site-footer__cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Main footer */

.site-footer__main {
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.site-footer__logo {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: SUSE, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.site-footer__column h3 {
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 30px;
}

.site-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column li {
  margin-bottom: 12px;
}

.site-footer__column a {
    color: var(--Colors-White, #FFF);
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.site-footer__social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 30px;
}

.site-footer__social a {
  color: #fff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  line-height: 1;
}

/* Bottom */

.site-footer__bottom {
  text-align: center;
}

.site-footer__copyright {
    color: var(--Text-Desc-Text-Color-On-Dark-Sections, #F9F9F9);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer__legal a,
.site-footer__legal span {
    color: var(--Text-Secondary-Desc-Text-Color-On-Dark-Sections, #BBBABA);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/* botón subir */

.site-footer__backtotop {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(70deg, #ff0f3a 2.47%, #3c34c1 98.44%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

/* Tablet */

@media (max-width: 991px) {
  .site-footer {
    padding: 0 16px 24px;
  }

  .site-footer__inner {
    padding: 40px 24px 36px;
    border-radius: 24px;
  }

  .site-footer__cta {
    min-height: 320px;
    margin-bottom: 40px;
  }

  .site-footer__cta-title {
    font-size: 42px;
    line-height: 50px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .site-footer__backtotop {
    right: 24px;
    bottom: 24px;
  }
}

/* Mobile */

@media (max-width: 767px) {

  .site-footer-background{
    padding: 5px 5px 48px;
  }

  .site-footer {
    padding: 0 12px 20px;
  }

  .site-footer__inner {
    padding: 20px 16px 28px;
    border-radius: 22px;
  }

  .site-footer__cta {
    min-height: 380px;
    border-radius: 20px;
    margin-bottom: 32px;
  }

  .site-footer__cta-content {
    padding: 28px 16px;
  }

  .site-footer__cta-eyebrow {
    font-size: 15px;
    line-height: 24px;
  }

  .site-footer__cta-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 22px;
  }

  .site-footer__cta-form {
    gap: 10px;
  }

  .site-footer__cta-input,
  .site-footer__cta-button {
    max-width: 100%;
    width: 100%;
  }

  .site-footer__cta-features {
    gap: 8px!important;
    font-size: 14px;
    line-height: 22px;
  }

  .site-footer__logo {
    font-size: 38px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__column h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .site-footer__column a {
    font-size: 15px;
    line-height: 22px;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__bottom {
    text-align: left;
  }

  .site-footer__legal {
    justify-content: center;
  }

  .site-footer__backtotop {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
}

.site-footer__cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.site-footer__cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--Text-Desc-Text-Color-On-Dark-Sections, #F9F9F9);
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.site-footer__cta-feature img {
    width: 25px;
    height: 25px;
    display: block;
    flex: 0 0 18px;
    background: white;
    padding: 5px;
    border-radius: 50%;
}

/* Animaciones de entrada */

.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal--up {
  transform: translateY(36px);
  filter: blur(6px);
}

.reveal--fade {
  transform: translateY(0);
}

.reveal--zoom {
  transform: translateY(24px) scale(0.96);
  filter: blur(6px);
}

.reveal--left {
  transform: translateX(-40px);
  filter: blur(6px);
}

.reveal--right {
  transform: translateX(40px);
  filter: blur(6px);
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

/* Cascada automática por posición */
.stagger-item:nth-child(1) { transition-delay: 0.04s; }
.stagger-item:nth-child(2) { transition-delay: 0.10s; }
.stagger-item:nth-child(3) { transition-delay: 0.16s; }
.stagger-item:nth-child(4) { transition-delay: 0.22s; }
.stagger-item:nth-child(5) { transition-delay: 0.28s; }
.stagger-item:nth-child(6) { transition-delay: 0.34s; }

/* Respeto a usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}