/* ==========================================================================
   HOME — ZEEZTON STORE
   Orden: base/escritorio → notebook → tablet → móvil
   ========================================================================== */

:root {
  --home-cyan: #0fcfd9;
  --home-blue: #2457ff;
  --home-glow: rgba(15, 207, 217, 0.25);
}

/* ==========================================================================
   HERO Y CARRUSEL
   ========================================================================== */

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.home-carousel,
.home-carousel .carousel-inner,
.home-carousel .carousel-item {
  height: 100vh;
  height: 100svh;
}

.home-carousel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-carousel-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-carousel-picture .home-carousel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   CONTENIDO DEL HERO
   ========================================================================== */

.home-hero-content {
  position: absolute;
  z-index: 4;

  top: 50%;
  left: 50%;

  width: min(920px, calc(100% - 120px));
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  transform: translate(-50%, -50%);
}

.home-kicker {
  display: block;

  margin: 0 0 18px;
  padding: 0;

  color: var(--home-cyan);

  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 0 12px var(--home-glow);
}

.home-title {
  width: 100%;
  margin: 0 !important;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;

  text-align: center;
}

.home-title-main,
.home-title-sub {
  display: block;
  width: 100%;

  margin: 0;
  padding: 0;

  text-align: center;
  text-transform: uppercase;
}

.home-title-main {
  color: #fff;

  font-family: "Michroma", sans-serif;
  font-size: clamp(2.35rem, 4.9vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.04em;

  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.12),
    0 0 40px rgba(15, 207, 217, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.7);
}

.home-title-sub {
  margin-top: 12px;

  color: var(--home-cyan);

  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.92rem, 1.65vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.23em;

  text-shadow: 0 0 15px rgba(15, 207, 217, 0.35);
}

.home-description {
  width: 100%;
  max-width: 650px;

  margin: 24px auto 0;

  color: rgba(240, 244, 248, 0.74);

  font-family: "Orbitron", sans-serif;
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.75;
  text-align: center;

  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

/*
  Se animan los elementos internos y no el contenedor, para conservar
  correctamente su posicionamiento en escritorio, tablet y móvil.
*/
/*
  Los títulos, botones y beneficios mantienen el efecto
  de desenfoque durante la entrada.
*/
.home-kicker,
.home-title-main,
.home-title-sub,
.home-actions,
.home-benefits {
  opacity: 0;
  animation: homeFadeUp 0.8s ease-out both;
}


/*
  La descripción utiliza una animación independiente
  sin filter: blur(), para evitar que quede difuminada
  permanentemente en navegadores móviles.
*/
.home-description {
  opacity: 0;
  animation:
    homeDescriptionFadeUp
    0.8s
    ease-out
    0.62s
    both;
}


/* DELAYS DEL HERO */

.home-kicker {
  animation-delay: 0.2s;
}

.home-title-main {
  animation-delay: 0.34s;
}

.home-title-sub {
  animation-delay: 0.48s;
}

.home-actions {
  animation-delay: 0.76s;
}

.home-benefits {
  animation-delay: 0.9s;
}


/* PALABRAS DEL TÍTULO */

.slot-word,
.slot-word-sub {
  display: inline-block;
  overflow: visible;
  padding: 0;
}

.slot-word span,
.slot-word-sub span {
  opacity: 1;
  transform: none;
  animation: none;
}


/* ANIMACIÓN GENERAL DEL HERO */

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}


/* ANIMACIÓN SEGURA PARA LA DESCRIPCIÓN */

@keyframes homeDescriptionFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   ACCIONES DEL HERO
   ========================================================================== */

.home-actions {
  position: static;
  z-index: auto;
  width: auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  transform: none;
}

.home-btn-primary,
.home-btn-secondary {
  position: relative;
  min-height: 50px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.home-btn-primary {
  border: 1px solid var(--home-cyan);
  background: linear-gradient(135deg, #10e4ee, #08aebc);
  box-shadow: 0 14px 34px rgba(15, 207, 217, 0.23);
  color: #031014;
}

.home-btn-primary:hover {
  color: #031014;
  box-shadow: 0 18px 42px rgba(15, 207, 217, 0.38);
  transform: translateY(-3px);
}

.home-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 8, 15, 0.48);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-btn-secondary:hover {
  border-color: var(--home-cyan);
  background: rgba(15, 207, 217, 0.09);
  color: var(--home-cyan);
  box-shadow: 0 14px 34px rgba(15, 207, 217, 0.12);
  transform: translateY(-3px);
}

.home-btn-primary .shine,
.home-btn-secondary .shine {
  position: absolute;
  top: -40%;
  left: -35%;
  width: 28%;
  height: 180%;
  display: block;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: rotate(18deg) translateX(-220%);
  transition: transform 0.7s ease;
}

.home-btn-primary:hover .shine,
.home-btn-secondary:hover .shine {
  transform: rotate(18deg) translateX(620%);
}

/* ==========================================================================
   BENEFICIOS DEL HERO
   ========================================================================== */

.home-benefits {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.home-benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-benefit i {
  color: var(--home-cyan);
  font-size: 0.82rem;
  text-shadow: 0 0 12px rgba(15, 207, 217, 0.35);
}

/* ==========================================================================
   INDICADORES DEL CARRUSEL
   ========================================================================== */

.home-carousel .carousel-indicators {
  bottom: 22px;
  gap: 12px;
  margin-bottom: 0;
}

.home-carousel .carousel-indicators button {
  width: 30px !important;
  height: 5px !important;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25) !important;
  opacity: 1 !important;
  transition: all 0.35s ease;
}

.home-carousel .carousel-indicators .active {
  width: 49px !important;
  background: linear-gradient(90deg, #0bd1ea, var(--home-blue)) !important;
  box-shadow: 0 0 12px rgba(11, 209, 234, 0.5);
}

.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next {
  display: none;
}

/* ==========================================================================
   SECCIÓN BMW M3
   ========================================================================== */

.home-m3 {
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 140px auto;
  padding: 41px 42px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 0 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 45%, rgba(11, 209, 234, 0.18), transparent 35%),
    linear-gradient(135deg, #050505, #101827);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.m3-content {
  min-width: 0;
}

.m3-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #0bd1ea;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.m3-content h2 {
  margin: 0 0 25px;

  color: #fff;

  font-family: "Michroma", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.m3-content p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Orbitron';
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 50px;
}

.m3-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
}



.m3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0bd1ea, #00a2ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.m3-btn:hover {
  color: #fff;
  box-shadow: 0 15px 35px rgba(11, 209, 234, 0.25);
  transform: translateY(-4px);
}

.m3-more-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0bd1ea;
  font-family: "Michroma", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.m3-more-btn:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(11, 209, 234, 0.7);
}

.m3-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.m3-track {
  display: flex;
  width: 100%;
  animation: m3Slide 18s infinite ease-in-out;
}

.m3-track img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

@keyframes m3Slide {
  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ==========================================================================
   PANEL DESPLEGABLE M3
   ========================================================================== */

.m3-extra {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.7s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

.m3-extra.active {
  max-height: 1400px;
  margin-top: 40px;
  opacity: 1;
}

.m3-extra-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.m3-extra-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease;
}

.m3-extra-gallery img:hover {
  transform: translateY(-6px);
}

.m3-specs {
  margin-top: 30px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 15, 28, 0.86);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.m3-article-tag {
  display: block;
  margin-bottom: 14px;
  color: #0bd1ea !important;
  font-family: "Michroma", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.m3-specs h3 {
  margin: 0 0 18px;
  color: #fff !important;
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.1rem, 3.8vw, 1.7rem);
  line-height: 1.25;
}

.m3-specs p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: 'Orbitron';
  font-size: 0.95rem;
  line-height: 1.8;
}

.m3-specs p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   CONTROLES DE LA NOTICIA
   ========================================================================== */

.m3-more-wrap,
.m3-less-wrap {
  grid-column: 1 / -1;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.m3-more-wrap {
  margin-top: 50px;
}

.m3-less-wrap {
  margin-top: 32px;
}

.m3-more-wrap[hidden],
.m3-less-wrap[hidden] {
  display: none !important;
}
/* ==========================================================================
   NOTEBOOK — 1025px A 1366px
   ========================================================================== */

@media (min-width: 1025px) and (max-width: 1366px) {
  .home-hero {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    max-height: 710px;
  }

  .home-carousel,
  .home-carousel .carousel-inner,
  .home-carousel .carousel-item {
    height: 100%;
  }

  .home-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.08) 75%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
  }

  .home-hero-content {
    top: 48%;
    left: 50%;

    width: min(760px, calc(100% - 80px));

    align-items: center;
    text-align: center;

    transform: translate(-50%, -50%);
  }

  .home-kicker {
    margin-bottom: 14px;

    font-size: 0.64rem;
    letter-spacing: 0.27em;
    text-align: center;
  }

  .home-title {
    width: 100%;

    align-items: center;
    text-align: center;
  }

  .home-title-main {
    width: 100%;

    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.05;
    text-align: center;
  }

  .home-title-sub {
    width: 100%;

    margin-top: 10px;

    font-size: clamp(0.82rem, 1.45vw, 1.08rem);
    letter-spacing: 0.2em;
    text-align: center;
  }

  .home-description {
    width: 100%;
    max-width: 590px;

    margin: 20px auto 0;

    font-size: 0.88rem;
    line-height: 1.65;
    text-align: center;
  }

  .home-actions {
    width: 100%;
    margin-top: 24px;

    justify-content: center;
    gap: 12px;
  }

  .home-btn-primary,
  .home-btn-secondary {
    min-height: 46px;
    padding: 0 21px;

    font-size: 0.61rem;
  }

  .home-benefits {
    width: 100%;
    margin-top: 24px;

    justify-content: center;
    gap: 12px 17px;
  }

  .home-benefit {
    font-size: 0.52rem;
  }
  .home-carousel .carousel-indicators {
    bottom: 18px;
  }

  .home-carousel .carousel-indicators button {
    width: 28px !important;
  }

  .home-carousel .carousel-indicators .active {
    width: 46px !important;
  }

  .home-m3 {
    width: calc(100% - 64px);
    max-width: 1240px;
    margin: 90px auto;
    padding: 58px 34px;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0 72px;
    border-radius: 30px;
  }

  .m3-badge {
    margin-bottom: 16px;
    padding: 7px 14px;
    font-size: 0.66rem;
    letter-spacing: 1.8px;
  }

  .m3-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.05;
  }

  .m3-content p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .m3-slider {
    border-radius: 24px;
  }

  .m3-track img {
    height: 470px;
  }

  .m3-actions {
    gap: 32px;
    margin-top: 28px;
  }

  .m3-btn {
    padding: 13px 26px;
    font-size: 0.85rem;
  }

  .m3-more-btn {
    font-size: 0.66rem;
    letter-spacing: 2.5px;
  }

  .m3-extra.active {
    margin-top: 32px;
  }

  .m3-extra-gallery {
    gap: 16px;
  }

  .m3-extra-gallery img {
    height: 220px;
    border-radius: 18px;
  }

  .m3-specs {
    margin-top: 24px;
    padding: 24px;
  }

  .m3-specs h3 {
    font-size: 1.35rem;
  }

  .m3-specs p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ==========================================================================
   TABLET — HASTA 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  .home-hero-content {
    top: 47%;
    left: 50%;
    width: min(90%, 720px);
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
  }
  


  .home-title {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .home-description {
    max-width: 610px;
    margin-right: auto;
    margin-left: auto;
  }

  .home-actions {
    justify-content: center;
  }

  .home-benefits {
    justify-content: center;
  }

  .home-m3 {
    width: calc(100% - 50px);
    margin: 90px auto;
    padding: 60px 30px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .m3-content {
    text-align: center;
  }

  .m3-content p {
    margin-right: auto;
    margin-left: auto;
  }

  .m3-actions {
    justify-content: center;
  }

  .m3-track img {
    height: 480px;
  }

  .m3-more-wrap {
  grid-column: 1;
  order: 3;

  width: 100%;
  margin-top: -22px;

  display: flex;
  justify-content: center;
}
}

@media (max-width: 1024px) {

  .home-carousel .carousel-indicators,
  .home-carousel .carousel-control-prev,
  .home-carousel .carousel-control-next {
    display: none !important;
  }

}

/* ==========================================================================
   TABLET PEQUEÑA Y MÓVIL — HASTA 768px
   ========================================================================== */

@media (max-width: 768px) {
  .home-hero,
  .home-carousel,
  .home-carousel .carousel-inner,
  .home-carousel .carousel-item {
    min-height: 720px;
    height: max(100svh, 720px);
  }

  .home-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.46) 42%,
        rgba(0, 0, 0, 0.9) 100%
      );
  }

  .home-hero-content {
    top: 49%;
    left: 50%;
    width: calc(100% - 36px);
    max-width: 620px;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .home-kicker {
    margin-bottom: 12px;
    font-size: 0.56rem;
    line-height: 1.6;
    letter-spacing: 0.22em;
  }

  .home-title {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  

  .home-title-main {
    width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: center;
    white-space: normal;
  }

  .home-title-sub {
    margin-top: 10px;
    padding: 0;
    font-size: clamp(0.7rem, 3vw, 0.92rem);
    line-height: 1.45;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .home-description {
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .home-actions {
    width: 100%;
    margin-top: 22px;
    justify-content: center;
    gap: 10px;
  }

  .home-btn-primary,
  .home-btn-secondary {
    min-height: 46px;
    padding: 0 19px;
    font-size: 0.58rem;
    letter-spacing: 0.09em;
  }

  .home-benefits {
    margin-top: 22px;
    justify-content: center;
    gap: 10px 15px;
  }

  .home-benefit {
    font-size: 0.49rem;
  }

  .home-benefit i {
    font-size: 0.72rem;
  }

  .home-carousel .carousel-indicators {
    bottom: 18px;
  }

  .home-carousel .carousel-indicators button {
    width: 28px !important;
    height: 5px !important;
  }

  .home-carousel .carousel-indicators .active {
    width: 44px !important;
  }

  .home-m3 {
    width: calc(100% - 24px);
    margin: 30px auto 30px;
    padding: 42px 20px;
    gap: 32px;
    border-radius: 28px;
  }

  .m3-badge {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }

  .m3-content h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.05;
  }

  .m3-content p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .m3-actions {
    flex-direction: column;
    gap: 15px;
  }

  .m3-btn {
    padding: 13px 24px;
    font-size: 0.85rem;
  }

  .m3-slider {
    border-radius: 22px;
  }

  .m3-track img {
    height: 360px;
  }

  .m3-extra.active {
    max-height: 2400px;
    margin-top: 0px;
  }

  .m3-extra-gallery {
    grid-template-columns: 1fr;
  }

  .m3-extra-gallery img {
    height: 360px;
  }

  .m3-specs {
    padding: 22px;
  }
}

/* ==========================================================================
   MÓVIL PEQUEÑO — HASTA 480px
   ========================================================================== */

@media (max-width: 480px) {
  .home-hero,
  .home-carousel,
  .home-carousel .carousel-inner,
  .home-carousel .carousel-item {
    min-height: 700px;
    height: max(100svh, 700px);
  }

  .home-hero-content {
    top: 49%;
    width: calc(100% - 24px);
  }

  .home-kicker {
    margin-bottom: 10px;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .home-title-main {
    font-size: clamp(1.65rem, 8.8vw, 2.15rem);
    line-height: 1.1;
  }

  .home-title-sub {
    margin-top: 9px;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

.home-description {
  margin-top: 15px;

  color: rgba(245, 248, 250, 0.84);

  font-size: 0.76rem;
  line-height: 1.55;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.82);

  filter: none;
  -webkit-font-smoothing: antialiased;
}

  .home-actions {
    width: min(100%, 330px);
    margin-top: 19px;
    flex-direction: column;
    gap: 9px;
  }

  .home-btn-primary,
  .home-btn-secondary {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.54rem;
  }

  .home-benefits {
    max-width: 330px;
    margin-top: 18px;
    gap: 9px 13px;
  }

  .home-benefit {
    font-size: 0.44rem;
  }

  .home-carousel .carousel-indicators {
    bottom: 16px;
  }

  .home-carousel .carousel-indicators button {
    width: 24px !important;
    height: 4px !important;
  }

  .home-carousel .carousel-indicators .active {
    width: 38px !important;
  }

  .home-m3 {
    width: calc(100% - 20px);
    margin: 55px auto;
    padding: 34px 16px;
    gap: 26px;
    border-radius: 22px;
  }

  .m3-content h2 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .m3-content p {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .m3-track img {
    height: 300px;
  }

  .m3-extra-gallery img {
    height: 220px;
  }

  .m3-specs {
    padding: 18px;
  }
}

/* ==========================================================================
   ACCESIBILIDAD: REDUCIR MOVIMIENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .home-kicker,
  .home-title-main,
  .home-title-sub,
  .home-description,
  .home-actions,
  .home-benefits,
  .m3-track {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}


