body {
  background: #000;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #DAA520;
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3em;
  font-weight: bold;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 25px;
}

.cta-btn {
  background: #DAA520;
  color: #000;
  padding: 14px 28px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #FFF7CC;
  transform: scale(1.05);
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about, .benefits {
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}

h2 {
  color: #DAA520;
  font-size: 2em;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1em;
}

ul li i {
  margin-right: 12px;
  font-size: 20px;
  color: #DAA520;
}

.testimonios {
  overflow: hidden;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
  gap: 20px;
}

.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  background: #111;
  border-left: 5px solid #DAA520;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  flex-shrink: 0;
  color: #DAA520;
}

.testimonial-icon {
  font-size: 1.3em;
  margin-right: 8px;
}

.testimonial-ws .testimonial-icon { color: #25D366; }
.testimonial-fb .testimonial-icon { color: #1877f2; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

footer {
  background-color: #111;
  color: #DAA520;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  z-index: 999;
  text-decoration: none;
}
.formulario {
  text-align: center;
  margin-top: 40px;
}
.testimonios {
  overflow: hidden;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  width: 200%; /* Truco garantizado sin duplicación visible */
  animation: scroll-left 30s linear infinite;
}

.testimonial-carousel > * {
  flex: 0 0 auto;
  width: 20%; /* Ajusta según la cantidad de testimonios que tengas */
  margin-right: 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
