/* ===== RESET Y BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
body {
  text-align: center;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ul li {
  list-style: none;
  text-decoration: none;
}
a {
  text-decoration: none;
}

:root {
  --purple-color: rgb(120, 77, 252);
  --pink-color: rgb(235, 58, 166);
  --red-color: rgb(233, 4, 22);
  --primary-color: rgb(115, 9, 13);

  --halo-color1: #fcf59c;
  --halo-color2: #cd900f;
  --halo-color3: #e0b42c;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== UTILIDADES REUSABLES ===== */
.heading-wrapper,
.problems-heading,
.solutions-heading,
.why-us-heading,
.carousel-heading {
  text-align: center;
  background-color: #000;
  width: 100%;
  overflow: hidden;
}
.text-grad {
  font-size: 2.5rem;
  font-weight: 700;
  background: radial-gradient(
    circle at 45% center,
    #ffffff 50%,
    #dddddd 30%,
    #777777 90%,
    #000000 100%
  );
  -webkit-background-clip: text;
}

/* ===== NAVBAR ===== */
.mobile-countdown {
  display: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
  background: linear-gradient(
    108deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(13, 13, 13, 1) 9%,
    rgba(252, 245, 156, 0.8) 24%,
    rgba(205, 144, 15, 0.8) 49%,
    rgba(224, 180, 44, 0.8) 68%,
    rgba(28, 17, 4, 1) 100%,
    rgba(3, 2, 1, 1) 90%
  );
  backdrop-filter: blur(5px);
  border-image: linear-gradient(
      108deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(205, 144, 15, 0.8) 24%,
      rgb(206, 204, 185) 49%,
      rgba(224, 180, 44, 0.8) 68%,
      rgba(28, 17, 4, 1) 100%
    )
    1;
  border-bottom: 5px solid transparent;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.25rem 1rem;
  background: rgba(0, 0, 0, 0.7);
}
.navbar .logo img {
  max-height: 110px;
  object-fit: contain;
  margin-left: 20px;
  transition: all 0.3s ease;
}
.navbar.scrolled .logo img {
  max-height: 60px;
}
.logo img {
  max-height: 100px;
  object-fit: contain;
  margin-left: 20px;
}
.navbar .countdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.navbar.scrolled .countdown h4 {
  font-size: 0.8rem;
}
.navbar.scrolled .time-box span {
  font-size: 12px;
}
.navbar.scrolled .time-box small {
  font-size: 8px;
}

.navbar .btn-wrapper .primary-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled .btn-wrapper .primary-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
}
.countdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  justify-items: center;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-box span {
  font-size: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.time-box span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.btn-wrapper .primary-btn {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  padding: 1rem 2rem;
  margin-right: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-wrapper .primary-btn:hover {
  transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 2rem 1rem;
  padding-top: 0;
  background-color: #000;
  overflow: hidden;
  width: 100%;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.bg-wrapper .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-particles-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 6;
  margin: 0 auto;
  border: 10px solid #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.7); /* Empieza más pequeño */
  transform-origin: center;
  transition: transform 0.8s ease, box-shadow 0.6s ease;
  will-change: transform;
  opacity: 0.85;
}
.vsl-wrapper.in-view {
  /* CAMBIO: Solo crece a tamaño normal */
  transform: scale(1); /* Tamaño final normal */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.video-down {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 150px;
    background: radial-gradient(
      ellipse 70% 100% at top center,
      rgba(224, 180, 44, 0.5) 0%,
      rgba(245, 238, 139, 0.2) 25%,
      rgba(252, 245, 156, 0.1) 45%,
      rgba(0, 0, 0, 0) 70%
    );
    border-radius: 0 0 50% 50%;
  }
}
.video-top {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;

  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: radial-gradient(
      ellipse 70% 80% at bottom center,
      /* Ajuste de forma */ rgba(224, 180, 44, 0.6) 0%,
      rgba(245, 238, 139, 0.3) 20%,
      rgba(252, 245, 156, 0.1) 40%,
      rgba(0, 0, 0, 0) 65%
    );
    border-radius: 50% 50% 0 0;
  }
}

.vsl-wrapper.in-view {
  transform: scale(1) rotate(0deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.vsl-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.bg-vsl-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #121212;
}

.heading-wrapper {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
  font-family: 'Inter', sans-serif;
}

.heading-wrapper .offer {
  display: inline-block;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  background-color: #000;
  border: 1px solid #666;
  border-radius: 20px;
  font-weight: 600;
  font-size: larger;
  justify-content: center;
  align-items: center;
}

.subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  -webkit-mask-image: linear-gradient(
    75deg,
    rgba(255, 255, 255, 0.2) 30%,
    #fff 50%,
    rgba(255, 255, 255, 0.2) 70%
  );
  -webkit-mask-size: 200%;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
.subtitle-2 {
  display: inline-block;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 30%,
    #fff 60%,
    rgba(255, 255, 255, 0.2) 90%
  );
  -webkit-mask-size: 180%;
  animation: shine-2 4s linear infinite;
}

@keyframes shine-2 {
  from {
    -webkit-mask-position: 120%;
  }
  to {
    -webkit-mask-position: -100%;
  }
}
.subtitle-gold {
  display: inline-block;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(
    75deg,
    rgba(255, 255, 255, 0) 30%,
    #e0b42c 50%,
    rgba(255, 255, 255, 0) 70%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  animation: shine-gold 2s linear infinite;
}

@keyframes shine-gold {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.subtitle-silver {
  background: linear-gradient(
    75deg,
    transparent 30%,
    #fffb00 50%,
    transparent 70%
  );
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: #fff;
  animation: shine-silver 4s linear infinite;
}

@keyframes shine-silver {
  from {
    background-position: 150%;
  }
  to {
    background-position: -50%;
  }
}

.offer {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.offer p {
  font-size: 1.3rem;
}
.offer-down .subtitle-silver {
  font-size: 1.7rem;
}
.heading-wrapper h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 100;
}

.heading-wrapper h1 i {
  font-style: italic;
}

.heading-wrapper .description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.offer-down p,
.offer-down h1 {
  padding: 1.3rem;
}

/* ===== CTA SECTION ===== */
.cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cta-section {
  margin: 4rem 0;
  position: relative;
  text-align: center;
}
.cta-wrapper a {
  background: rgb(51, 51, 51);
}
.cta-background {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  background-color: rgba(63, 62, 62, 0.5);
  padding: 2rem 1.5rem;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    50% 50% at 15% 0%,
    #fff 0%,
    rgb(218, 44, 45) 33%,
    rgba(218, 44, 45, 0) 100%
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.cta-inner-box {
  position: relative;
  z-index: 1;
}

.cta-text p {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: radial-gradient(circle, #fff 33%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-text .cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  position: relative;
  padding: 0px 0.8rem;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #09090a;
  overflow: hidden;
  width: 100%;
}

.solutions-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.solutions-heading .subtitle {
  margin-top: 1rem;
}

.solutions-heading .title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.solutions-section h2 {
  margin: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.solutions-heading .title .highlight {
  font-style: italic;
  background: radial-gradient(circle, #fff 33%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-heading .description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  max-width: 80%;
  margin: 0 auto;
}

.solutions-content {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 0.8s ease;
}

.solutions-content.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.timeline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  position: relative;
  margin-bottom: 100px;
}

.timeline-number {
  font-size: 5rem;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: linear-gradient(0deg, #000 13%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10rem;
  position: relative;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.timeline-line {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 4px;
  height: 550%;
  transform: translateX(-50%);
  background: #444;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(var(--halo-color1), var(--halo-color2));
  border-radius: 2px;
  z-index: 1;
  transition: none;
}

.timeline-number {
  position: relative;
  z-index: 10;
}
.timeline-line-fill::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff 0%,
    var(--halo-color2) 40%,
    transparent 70%
  );
  box-shadow: 0 0 15px var(--halo-color1), 0 0 30px var(--halo-color2);
}
.timeline-row.visible .timeline-line::after {
  top: 0;
}

.timeline-content {
  flex: 1;
  text-align: left;
  max-height: 100%;
  border: 1px solid #666;
  padding: 3rem;
  border-radius: 20px;
  max-width: 100%;
  word-wrap: break-word;
}
.timeline-content h3 {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #666;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.timeline-content h4 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  background: radial-gradient(
    circle at 45% center,
    #ffffff 50%,
    #dddddd 30%,
    #777777 90%,
    #000000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}
.timeline-row-text {
  margin: 0 2rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  background: radial-gradient(
    circle at 45% center,
    #ffffff 50%,
    #dddddd 30%,
    #777777 90%,
    #000000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.timeline-video,
.timeline-image {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
}

.timeline-image {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  aspect-ratio: 16/9; /* Proporción estándar widescreen */
}

.timeline-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}
.carousel-heading h2 {
  margin: 2rem auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  gap: 1rem;
  list-style: none;
  width: max-content;
}

.carousel li {
  flex: 0 0 auto;
}

.carousel img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.why-us-heading {
  display: inline-block;
  margin: 2rem auto;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  background: radial-gradient(
    circle at 45% center,
    #ffffff 50%,
    #dddddd 30%,
    #777777 90%,
    #000000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us-wrapper {
  position: relative;
  border: 1px solid #666;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(
    to bottom,
    #000 40%,
    rgba(224, 180, 44, 0.08) 60%,
    rgba(224, 180, 44, 0.15) 70%,
    #000 100%
  );
  background-size: 100% 200%;
  animation: breathe-bg 3s ease-in-out infinite;
  max-width: 100%;
}

@keyframes breathe-bg {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
}

.why-us-content {
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
}
.why-us-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.why-us-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  text-align: left;
  padding: 0.5rem;
  max-width: 100%;
}

.why-us-content i {
  color: var(--halo-color2);
  font-size: 1.5rem;
}
.why-us-content p {
  font-weight: bold;
}

.why-us-content ul li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.why-us-content ul li.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TESTIMONY SECTION ===== */
.testimony-heading {
  padding: 3rem;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  max-width: 70%;
  color: #fff;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 66%,
    rgba(128, 125, 122, 0.2) 100%
  );
}
.testimony-end {
  background: #000000;
  background: linear-gradient(
    1800deg,
    rgba(0, 0, 0, 1) 66%,
    rgba(128, 125, 122, 0.2) 100%
  );
  border: none;
  border-top: 1px solid #fff;
}
.testimony-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.vertical-carousel {
  width: 400px;
  height: 500px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.vertical-carousel ul {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 80s linear infinite;
}

.vertical-carousel.reverse ul {
  animation: scrollVerticalReverse 40s linear infinite;
}

.vertical-carousel li {
  flex: 0 0 auto;
  margin-bottom: 1rem;
}

.vertical-carousel img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollVerticalReverse {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
  background: #000;
  padding: 80px 2rem;
  padding-bottom: 30px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.payment-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.payment-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: radial-gradient(circle at center, #fff 40%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 1rem;
  margin-top: 2rem;
  max-width: 100%;
}

.payment-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--halo-color1);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 20px;
}
.fa-whatsapp {
  color: #25d366;
}
.payment-option img {
  max-width: 50px;
}

.payment-option h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.payment-option p {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
}

.payment-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.payment-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.calculator-btn {
  background: var(--halo-color2);
  color: white;
}

.stripe-btn {
  background: #635bff;
  color: white;
  width: 100%;
  margin-top: 2rem;
}

/* ===== MODAL COTIZADOR ===== */
.calculator-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calculator-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #000;
  border: 1px solid #666;
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.calculator-steps {
  margin-bottom: 2rem;
}

.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
}

.calculator-step h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.option-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #666;
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
}

.step-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--halo-color2);
}

.step-option.selected {
  background: rgba(224, 180, 44, 0.2);
  border-color: var(--halo-color2);
}

.final-price {
  text-align: center;
  margin: 2rem 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: radial-gradient(circle at center, #fff 40%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.price-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}

.calculator-progress {
  margin-top: 2rem;
}

.progress-bar {
  height: 4px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--halo-color2);
  width: var(--progress-width, 33%);
  transition: width 0.3s ease;
}
/* ===== CALCULATOR MODAL ENHANCEMENTS ===== */
.calculator-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.calculator-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--halo-color2), var(--halo-color1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-indicator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.calculator-steps {
  margin-bottom: 2rem;
  min-height: 400px;
}

.calculator-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.calculator-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.option-title {
  font-weight: 600;
}

.option-price {
  background: var(--halo-color2);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Instrumentos Grid */
.instrumentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid #333;
  max-width: 100%;
}

.instrumento-option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
}

.instrumento-option:hover {
  border-color: var(--halo-color2);
}

.instrumento-option.selected {
  background: rgba(224, 180, 44, 0.1);
  border-color: var(--halo-color2);
}

.instrumento-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.instrumento-price {
  color: var(--halo-color2);
  font-size: 0.9rem;
}

/* Songs Selector */
.songs-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  max-width: 100%;
}

.song-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  max-width: 100%;
}

.song-btn:hover,
.song-btn.selected {
  background: rgba(224, 180, 44, 0.1);
  border-color: var(--halo-color2);
}

.custom-songs {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  max-width: 100%;
}

.custom-songs input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  width: 120px;
  text-align: center;
  max-width: 100%;
}

.custom-songs input:focus {
  outline: none;
  border-color: var(--halo-color2);
}

/* Summary Styles */
.summary-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #333;
  max-width: 100%;
}

.summary-items {
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #333;
  max-width: 100%;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .name {
  font-weight: 600;
}

.summary-item .price {
  color: var(--halo-color2);
  font-weight: 600;
}

.summary-totals {
  border-top: 2px solid #333;
  padding-top: 1rem;
  max-width: 100%;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  max-width: 100%;
}

.total-line.final {
  font-size: 1.3rem;
  font-weight: 700;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
  color: var(--halo-color2);
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

.add-more-btn {
  background: transparent;
  border: 2px solid var(--halo-color2);
  color: var(--halo-color2);
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  max-width: 100%;
}

.add-more-btn:hover {
  background: rgba(224, 180, 44, 0.1);
}

/* Navigation */
.calculator-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  max-width: 100%;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

.nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--halo-color2);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
  max-width: 100%;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--halo-color1), var(--halo-color2));
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    width: 95%;
  }

  .instrumentos-grid {
    grid-template-columns: 1fr;
  }

  .calculator-navigation {
    flex-direction: column;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  margin: 10px auto;
  margin-bottom: 0;
  padding: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  width: 100%;
  overflow: hidden;
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  background: radial-gradient(circle at center, #fff 40%, #000 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.faq-item {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgb(29, 29, 32);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  padding: 1rem;
  /* Desktop */
  max-width: 60%;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  color: #fff;
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  max-width: 100%;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  text-align: left;
  margin: 0.3rem;
  max-width: 100%;
}

.faq-item.active .faq-answer {
}

/* ===== FOOTER ===== */
.footer {
  background: #e0b42c;
  background: linear-gradient(
    1800deg,
    rgba(224, 180, 44, 0.5) 9%,
    rgba(252, 245, 156, 0.2) 27%,
    rgba(0, 0, 0, 1) 52%
  );
  width: 100%;
  overflow: hidden;
}
.footer a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.footer ul li {
  padding: 0.5rem 3rem;
}
.footer h4 {
  margin: 1rem 3rem;
  font-size: 1.5rem;
}
.footer-logo {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* FOOTER TOP - DESKTOP */
.footer-top {
  display: grid;
  grid-template-columns: 25% 25% 50%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  max-width: 100%;
}

.footer-nav,
.footer-contact {
  text-align: left;
  max-width: 100%;
}

.footer-down {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #fff;
  margin-top: 1rem;
  max-width: 100%;
}

/* ===== HALO EFFECT ===== */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.halo {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.halo::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    transparent 80%,
    var(--halo-color3),
    var(--halo-color1),
    #fff,
    var(--halo-color2)
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: -1;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}
.halo-2 {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.halo-2::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    transparent 80%,
    var(--halo-color3),
    var(--halo-color1),
    var(--halo-color2)
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: -1;
  animation: spin2 4s linear infinite;
}

@keyframes spin2 {
  from {
    --angle: 360deg;
  }
  to {
    --angle: 0deg;
  }
}
.halo-neon {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.halo-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    #000,
    var(--halo-color3),
    var(--halo-color2),
    #000,
    #000
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  z-index: -1;
  animation: spin 4s linear infinite; /* SUPER RÁPIDO */
  filter: brightness(1.2); /* MÁS BRILLO */
}
/* ===== RESPONSIVE DESIGN ===== */

/* === Desktop (más de 1024px) === */
@media (min-width: 1025px) {
  .problems-inner {
    flex-direction: row;
  }

  .problems-right {
    position: sticky;
    top: 120px;
  }
}

/* === Tablet (768px a 1024px) === */
@media (max-width: 1024px) and (min-width: 769px) {
  .logo img {
    max-height: 90px;
    margin-left: 10px;
  }

  .heading-wrapper h1 {
    font-size: 2.5rem;
  }
  .heading-wrapper .subtitle {
    font-size: 2rem;
  }

  .vsl-wrapper {
    max-width: 90%;
    max-height: 600px;
    transform: scale(0.7) rotate(-3deg);
  }

  .timeline-row {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  .timeline-number {
    font-size: 4rem;
    margin-right: 0;
  }
  .timeline-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  /* Problems Section - TABLET: sticky se mantiene */
  .problems-inner {
    flex-direction: row;
  }

  .problems-right {
    position: sticky;
    top: 120px;
  }

  .cta-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .testimony-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .vertical-carousel {
    width: 300px; /* Un poco más pequeño en tablet */
    height: 450px;
  }
}

/* === Mobile (menos de 768px) === */
@media (max-width: 768px) {
  .solutions-heading .title {
    font-size: 2rem;
    padding: 1rem 0;
  }
  .solutions-heading .description {
    font-size: 1.5rem;
    text-align: left;
  }

  /* Navbar mobile */
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .navbar .countdown {
    display: none;
  }
  .timeline-row-text {
    font-size: 1.5rem;
  }
  .navbar .logo img {
    max-height: 70px;
    margin-left: 0;
  }

  .navbar .btn-wrapper .primary-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    margin-right: 0;
  }

  /* Countdown móvil */
  .mobile-countdown {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    width: 100%;
  }

  .mobile-countdown .countdown h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  .mobile-countdown .timer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
  }

  .mobile-countdown .time-box span {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 6px;
  }

  .mobile-countdown .time-box small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
  }

  body {
    padding-top: 80px;
  }

  /* Hero */
  .heading-wrapper h1 {
    font-size: 2rem;
  }
  .heading-wrapper .subtitle {
    font-size: 1.5rem;
  }
  .video-down {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    z-index: 2;
    pointer-events: none;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 50px;
      background: radial-gradient(
        ellipse 70% 100% at top center,
        rgba(224, 180, 44, 0.5) 0%,
        rgba(245, 238, 139, 0.2) 25%,
        rgba(252, 245, 156, 0.1) 45%,
        rgba(0, 0, 0, 0) 70%
      );
      border-radius: 0 0 50% 50%;
    }
  }

  /* Timeline */
  .timeline-row {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    max-width: 95%; /* Aumentar el ancho máximo */
  }
  .timeline-number {
    font-size: 3rem;
    margin-right: 0;
  }
  .timeline-content {
    max-width: 100%;
    padding: 1.5rem;
    width: 100%; /* Asegurar ancho completo */
  }
  .timeline-content h4 {
    font-size: 1.8rem;
  }
  .timeline-line {
    display: none;
  }
  .timeline-video,
  .timeline-image {
    flex: none;
    min-width: 100px;
    width: 100%;
    order: -1;
  }
  /* Why Us */
  .why-us-section {
    padding: 0 2rem;
  }
  .why-us-heading {
    font-size: 1.5rem;
  }
  .why-us-content {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Carousel */
  .carousel-heading h2 {
    padding: 0 1rem;
  }

  .carousel,
  .vertical-carousel ul {
    margin: 0 5%;
  }
  .vertical-carousel {
    width: 100%;
    height: 600px;
  } /* Testimony Carousel - MOBILE: solo 1 carrusel */
  .testimony-carousel {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    padding: 1rem 0;
    max-width: 100%;
    height: auto;
  }

  .testimony-carousel .vertical-carousel:nth-child(2),
  .testimony-carousel .vertical-carousel:nth-child(3) {
    display: none;
  }

  .testimony-carousel .vertical-carousel:first-child {
    width: 100%;
    max-width: 320px;
    height: 500px;
    overflow: hidden;
    position: relative;
  }

  /* Ajusta la animación para más imágenes */
  .testimony-carousel .vertical-carousel:first-child ul {
    display: flex;
    flex-direction: column;
    animation: scrollSmoothMobile 40s linear infinite;
    gap: 1rem;
    padding: 0.5rem 0;
    will-change: transform;
  }

  /* Limitar a 3 imágenes visibles a la vez */
  .vertical-carousel:first-child {
    height: 400px; /* Altura para 3 imágenes */
  }

  .vertical-carousel:first-child ul {
    display: flex;
    flex-direction: column;
    animation: scrollSmoothMobile 50s linear infinite;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .vertical-carousel:first-child img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  @keyframes scrollSmoothMobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100% - 1rem));
    }
  }

  /* Testimonies */
  .testimony-heading .title {
    box-sizing: content-box;
    font-size: 1.6rem;
  }
  /* Solutions */
  .solutions-content {
    margin-top: 2rem;
  }
  .payment-heading {
    font-size: 2.5rem;
    padding-top: 0px;
  }
  /* Payment */
  .payment-section {
    padding-top: 0;
  }
  .payment-option {
    padding: 2rem 2rem;
  }
  .payment-option a,
  .payment-option button {
    font-size: 1.3rem;
  }
  .payment-option h3 {
    display: none;
  }
  /* FAQ */
  .faq-section {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* Footer */
  .footer-top {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 2rem;
  }

  .footer-contact {
    order: -1;
  }

  .footer-nav,
  .footer-contact {
    text-align: left;
    width: 100%;
  }

  .footer-nav h4,
  .footer-contact h4 {
    text-align: left;
    margin: 1rem 0;
  }

  .footer ul li {
    padding: 0.5rem 0;
  }

  .footer-contact p,
  .footer-contact a {
    margin: 0;
    text-align: left;
    display: block;
    width: 100%;
  }
  .footer-down {
    padding-bottom: 1rem;
  }

  /* Payment */
  .payment-options {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .option-buttons {
    gap: 0.8rem;
  }

  .step-option {
    padding: 1.2rem;
    font-size: 1rem;
  }
}

/* Countdown móvil se oculta en desktop */
@media (min-width: 769px) {
  .mobile-countdown {
    display: none !important;
  }
}
/* ELIMINAR DELAY EN MÓVIL */
.step-option,
.song-btn,
.instrumento-option,
.nav-btn {
  touch-action: manipulation;
}

/* MEJORAR HOVER PARA MÓVIL */
@media (hover: none) and (pointer: coarse) {
  .step-option:hover,
  .song-btn:hover,
  .instrumento-option:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #666 !important;
  }

  .step-option.selected,
  .song-btn.selected,
  .instrumento-option.selected {
    background: rgba(224, 180, 44, 0.2) !important;
    border-color: var(--halo-color2) !important;
  }
}

/* TRANSICIONES MÁS RÁPIDAS PARA BOTONES */
.step-option,
.song-btn,
.instrumento-option {
  transition: background-color 0.1s ease, border-color 0.1s ease;
}
/* ===== CORRECCIONES PARA EL COTIZADOR ===== */

/* ELIMINAR DELAY EN MÓVIL */
.step-option,
.song-btn,
.instrumento-option,
.nav-btn {
  touch-action: manipulation;
}

/* TRANSICIONES MÁS RÁPIDAS PARA BOTONES */
.step-option,
.song-btn,
.instrumento-option {
  transition: background-color 0.1s ease, border-color 0.1s ease;
}

/* MEJORAR HOVER PARA MÓVIL */
@media (hover: none) and (pointer: coarse) {
  .step-option:hover,
  .song-btn:hover,
  .instrumento-option:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #666 !important;
  }

  .step-option.selected,
  .song-btn.selected,
  .instrumento-option.selected {
    background: rgba(224, 180, 44, 0.2) !important;
    border-color: var(--halo-color2) !important;
  }
}

/* PREVENIR SELECTION EN MÓVIL */
.step-option,
.song-btn,
.instrumento-option {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* ===== EFECTO DE PARTÍCULAS FLOTANTES - INICIO INMEDIATO ===== */
.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(252, 245, 156, 0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

/* PRIMERAS 10 PARTÍCULAS - Comienzan inmediatamente en pantalla */
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  top: 80%;
  animation-duration: 15s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  top: 60%;
  animation-duration: 18s;
  animation-delay: 1s;
  background: rgba(224, 180, 44, 0.5);
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 40%;
  top: 70%;
  animation-duration: 12s;
  animation-delay: 0.5s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 55%;
  top: 85%;
  animation-duration: 16s;
  animation-delay: 1.5s;
  background: rgba(205, 144, 15, 0.4);
}
.particle:nth-child(5) {
  width: 7px;
  height: 7px;
  left: 70%;
  top: 75%;
  animation-duration: 20s;
  animation-delay: 2s;
}
.particle:nth-child(6) {
  width: 4px;
  height: 4px;
  left: 85%;
  top: 65%;
  animation-duration: 14s;
  animation-delay: 0.8s;
  background: rgba(252, 245, 156, 0.6);
}
.particle:nth-child(7) {
  width: 6px;
  height: 6px;
  left: 15%;
  top: 90%;
  animation-duration: 17s;
  animation-delay: 1.2s;
}
.particle:nth-child(8) {
  width: 3px;
  height: 3px;
  left: 30%;
  top: 55%;
  animation-duration: 13s;
  animation-delay: 0.3s;
  background: rgba(224, 180, 44, 0.4);
}
.particle:nth-child(9) {
  width: 5px;
  height: 5px;
  left: 45%;
  top: 95%;
  animation-duration: 19s;
  animation-delay: 1.8s;
}
.particle:nth-child(10) {
  width: 4px;
  height: 4px;
  left: 60%;
  top: 50%;
  animation-duration: 15s;
  animation-delay: 0.7s;
  background: rgba(205, 144, 15, 0.5);
}

/* SEGUNDAS 10 PARTÍCULAS - Comienzan fuera de pantalla */
.particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-duration: 21s;
  animation-delay: 3s;
  background: rgba(252, 245, 156, 0.5);
  transform: translateY(100vh);
}
.particle:nth-child(12) {
  width: 3px;
  height: 3px;
  left: 5%;
  animation-duration: 27s;
  animation-delay: 4s;
  transform: translateY(100vh);
}
.particle:nth-child(13) {
  width: 6px;
  height: 6px;
  left: 90%;
  animation-duration: 32s;
  animation-delay: 3.5s;
  background: rgba(224, 180, 44, 0.6);
  transform: translateY(100vh);
}
.particle:nth-child(14) {
  width: 4px;
  height: 4px;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 4.5s;
  transform: translateY(100vh);
}
.particle:nth-child(15) {
  width: 7px;
  height: 7px;
  left: 75%;
  animation-duration: 29s;
  animation-delay: 5s;
  background: rgba(205, 144, 15, 0.4);
  transform: translateY(100vh);
}
.particle:nth-child(16) {
  width: 3px;
  height: 3px;
  left: 35%;
  animation-duration: 24s;
  animation-delay: 3.8s;
  transform: translateY(100vh);
}
.particle:nth-child(17) {
  width: 5px;
  height: 5px;
  left: 65%;
  animation-duration: 31s;
  animation-delay: 4.2s;
  background: rgba(252, 245, 156, 0.5);
  transform: translateY(100vh);
}
.particle:nth-child(18) {
  width: 4px;
  height: 4px;
  left: 95%;
  animation-duration: 20s;
  animation-delay: 5.5s;
  transform: translateY(100vh);
}
.particle:nth-child(19) {
  width: 6px;
  height: 6px;
  left: 12%;
  animation-duration: 26s;
  animation-delay: 4.8s;
  background: rgba(224, 180, 44, 0.5);
  transform: translateY(100vh);
}
.particle:nth-child(20) {
  width: 4px;
  height: 4px;
  left: 50%;
  animation-duration: 22s;
  animation-delay: 5.2s;
  transform: translateY(100vh);
}

/* Animación de flotación */
@keyframes floatParticle {
  0% {
    transform: translateY(var(--start-y, 0)) translateX(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0.7;
  }
}

/* Efecto de brillo más sutil */
.particle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(252, 245, 156, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
/* ===== EFECTO DE PARTÍCULAS PARA HEADING-WRAPPER - IGUAL AL FONDO ===== */
.heading-wrapper {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
  overflow: hidden;
  min-height: 300px;
}

.heading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.heading-particle {
  position: absolute;
  background: rgba(252, 245, 156, 0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

/* PRIMERAS 10 PARTÍCULAS - Comienzan inmediatamente en pantalla */
.heading-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  top: 80%;
  animation-duration: 15s;
  animation-delay: 0s;
}
.heading-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  top: 60%;
  animation-duration: 18s;
  animation-delay: 1s;
  background: rgba(224, 180, 44, 0.5);
}
.heading-particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 40%;
  top: 70%;
  animation-duration: 12s;
  animation-delay: 0.5s;
}
.heading-particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 55%;
  top: 85%;
  animation-duration: 16s;
  animation-delay: 1.5s;
  background: rgba(205, 144, 15, 0.4);
}
.heading-particle:nth-child(5) {
  width: 7px;
  height: 7px;
  left: 70%;
  top: 75%;
  animation-duration: 20s;
  animation-delay: 2s;
}
.heading-particle:nth-child(6) {
  width: 4px;
  height: 4px;
  left: 85%;
  top: 65%;
  animation-duration: 14s;
  animation-delay: 0.8s;
  background: rgba(252, 245, 156, 0.6);
}
.heading-particle:nth-child(7) {
  width: 6px;
  height: 6px;
  left: 15%;
  top: 90%;
  animation-duration: 17s;
  animation-delay: 1.2s;
}
.heading-particle:nth-child(8) {
  width: 3px;
  height: 3px;
  left: 30%;
  top: 55%;
  animation-duration: 13s;
  animation-delay: 0.3s;
  background: rgba(224, 180, 44, 0.4);
}
.heading-particle:nth-child(9) {
  width: 5px;
  height: 5px;
  left: 45%;
  top: 95%;
  animation-duration: 19s;
  animation-delay: 1.8s;
}
.heading-particle:nth-child(10) {
  width: 4px;
  height: 4px;
  left: 60%;
  top: 50%;
  animation-duration: 15s;
  animation-delay: 0.7s;
  background: rgba(205, 144, 15, 0.5);
}

/* SEGUNDAS 10 PARTÍCULAS - Comienzan fuera de pantalla */
.heading-particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 80%;
  animation-duration: 21s;
  animation-delay: 3s;
  background: rgba(252, 245, 156, 0.5);
  transform: translateY(100vh);
}
.heading-particle:nth-child(12) {
  width: 3px;
  height: 3px;
  left: 5%;
  animation-duration: 27s;
  animation-delay: 4s;
  transform: translateY(100vh);
}
.heading-particle:nth-child(13) {
  width: 6px;
  height: 6px;
  left: 90%;
  animation-duration: 32s;
  animation-delay: 3.5s;
  background: rgba(224, 180, 44, 0.6);
  transform: translateY(100vh);
}
.heading-particle:nth-child(14) {
  width: 4px;
  height: 4px;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 4.5s;
  transform: translateY(100vh);
}
.heading-particle:nth-child(15) {
  width: 7px;
  height: 7px;
  left: 75%;
  animation-duration: 29s;
  animation-delay: 5s;
  background: rgba(205, 144, 15, 0.4);
  transform: translateY(100vh);
}
.heading-particle:nth-child(16) {
  width: 3px;
  height: 3px;
  left: 35%;
  animation-duration: 24s;
  animation-delay: 3.8s;
  transform: translateY(100vh);
}
.heading-particle:nth-child(17) {
  width: 5px;
  height: 5px;
  left: 65%;
  animation-duration: 31s;
  animation-delay: 4.2s;
  background: rgba(252, 245, 156, 0.5);
  transform: translateY(100vh);
}
.heading-particle:nth-child(18) {
  width: 4px;
  height: 4px;
  left: 95%;
  animation-duration: 20s;
  animation-delay: 5.5s;
  transform: translateY(100vh);
}
.heading-particle:nth-child(19) {
  width: 6px;
  height: 6px;
  left: 12%;
  animation-duration: 26s;
  animation-delay: 4.8s;
  background: rgba(224, 180, 44, 0.5);
  transform: translateY(100vh);
}
.heading-particle:nth-child(20) {
  width: 4px;
  height: 4px;
  left: 50%;
  animation-duration: 22s;
  animation-delay: 5.2s;
  transform: translateY(100vh);
}

/* Animación de flotación con desvanecimiento antes del borde */
@keyframes floatParticle {
  0% {
    transform: translateY(var(--start-y, 0)) translateX(0) rotate(0deg);
    opacity: 0.7;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Efecto de brillo más sutil */
.heading-particle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(252, 245, 156, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
  opacity: 0.4;
}
.why-us-content img {
  filter: brightness(0) invert(1);
  max-width: 30px;
}

.option-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
  font-style: italic;
}

/* ===== CORRECCIONES EXTRA PARA PREVENIR SCROLL LATERAL ===== */
.carousel-section,
.testimony-section,
.payment-section,
.faq-section,
.footer {
  width: 100%;
  overflow: hidden;
}

/* Asegurar que todos los contenedores principales no excedan el ancho */
.container,
.wrapper,
.section {
  max-width: 100%;
  overflow: hidden;
}

/* Prevenir que las imágenes causen overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Asegurar que los elementos flex no causen overflow */
.flex-container {
  flex-wrap: wrap;
}

/* Media query adicional para móvil */
@media (max-width: 480px) {
  .heading-wrapper,
  .solutions-section,
  .why-us-section,
  .problems-section,
  .payment-section,
  .faq-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .faq-section {
    padding: 0;
  }

  .vsl-wrapper {
    transform: scale(0.8) rotate(-2deg);
  }
}
/* AÑADE ESTO AL FINAL DE TU CSS */
.timeline-image {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  height: 300px; /* Altura fija */
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  /* Optimización crítica */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0); /* Hardware acceleration */
}

/* Para móvil */
@media (max-width: 768px) {
  .timeline-image {
    height: 250px;
  }
}

.text-gold {
  color: var(--halo-color2);
  font-size: 1.7rem;
}

.heading-wrapper .description {
  font-style: italic;
  background: radial-gradient(circle, #a88963 0.1%, #cd900f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.offer-down .highlight {
  font-style: italic;
  background: radial-gradient(circle, #fffdfd 30%, #4d4c4c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offer-down .text-gold {
  font-style: italic;
  background: radial-gradient(circle, #a88963 0.1%, #cd900f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin-top: 0.5rem;
  font-weight: 800;
}
.offer-down .description {
  font-weight: bold;
  font-size: 1.17em;
}
.italic-style {
  font-style: italic;
}

/* Si algunas imágenes necesitan ajuste específico */
.image-container.estudio {
  object-position: center 50%; /* Ajusta el punto focal vertical */
}

.image-container.mezcla {
  object-position: center 50%;
}

.timeline-image {
  height: 400px;
  width: 800px;
  margin: 0 auto;
}
.emoji {
  display: inline;
}

@media (max-width: 480px) {
  .faq-item {
    max-width: 99%; /* ← Más ancho en móvil */
    margin: 0 auto; /* ← Centrado pero más ancho */
    padding: 0.1rem;
  }
  .faq-title {
    font-size: 1.7rem;
  }
  .timeline-row-text {
    font-size: 1.4rem;
  }
  .timeline-content h4 {
    font-size: 1.4rem;
  }
  .timeline-content p {
    font-size: 1.2rem;
  }
  .timeline-image img {
    width: 250px;
    height: 400px;
  }
  .subtitle-2 {
    font-size: 1.8rem;
  }
  .faq-answer {
    padding: 0 1rem;
  }
}
/* ===== SCROLL SUAVE PERSONALIZADO ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Espacio para navbar fijo */
}

/* Suavizar también el scroll con rueda del mouse */

/* Velocidad personalizada para diferentes navegadores */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Popup Interno del Cotizador */
.popup-interno-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.popup-interno-content {
  background: #000;
  border: 2px solid var(--halo-color2);
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  padding: 1rem;
}

.close-interno-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-interno-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.popup-interno-buttons button {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

#cancelCotizador {
  background: #666;
  color: white;
}

#confirmCotizador {
  background: var(--halo-color2);
  color: black;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: #000;
  border: 2px solid var(--halo-color2);
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.popup-buttons button {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

#cancelWhatsapp {
  background: #666;
  color: white;
}

#confirmWhatsapp {
  background: var(--halo-color2);
  color: black;
}
.popup-content p,
.popup-interno-content p {
  padding: 1rem;
}
.popup-input,
.popup-interno-content input {
  width: 100%;
  padding: 1.5rem; /* ← Más padding */
  border: 2px solid #666; /* ← Borde más grueso */
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1.2rem; /* ← Texto más grande */
  margin-bottom: 1.5rem;
  height: 60px; /* ← Altura fija más grande */
  box-sizing: border-box;
}

.popup-input:focus,
.popup-interno-content input:focus {
  outline: none;
  border-color: var(--halo-color2);
  transform: scale(1.02); /* ← Efecto al enfocar */
  transition: transform 0.2s ease;
}

/* O si quieres MÁS GRANDE aún: */
.popup-input.large {
  padding: 2rem;
  font-size: 1.5rem;
  height: 70px;
}
