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

body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #f1f1f1;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  border-bottom: 1px solid #374151;
  background-color: #1b1f3b;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f26d21;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #cccccc;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b1f3b 0%, #0a0a0a 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #f26d21;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #e55a1a;
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.text-orange {
  color: #f26d21;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: #1b1f3b;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card:hover {
  border-color: #f26d21;
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: #f26d21;
  margin: 0 auto 1rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.card-text {
  color: #cccccc;
  font-size: 0.875rem;
}

/* Premium Benefits Section */
.premium-benefits {
  padding: 5rem 0;
}

.premium-grid {
  display: grid;
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.premium-card {
  background-color: #1b1f3b;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.premium-card:hover {
  border-color: #f26d21;
}

.premium-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.premium-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f26d21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.premium-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.premium-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.premium-text {
  color: #cccccc;
  font-size: 0.875rem;
}

.premium-cta {
  text-align: center;
}

/* No Commitment Section */
.no-commitment {
  padding: 5rem 0;
}

.no-commitment-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.commitment-icon {
  width: 4rem;
  height: 4rem;
  color: #f26d21;
  margin: 0 auto 1.5rem;
}

.commitment-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.commitment-text {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .commitment-title {
    font-size: 3rem;
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #f26d21;
  color: #f26d21;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.badge:hover {
  background-color: #2c304e;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

/* Social Proof Section */
.social-proof {
  padding: 5rem 0;
  background-color: #1b1f3b;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background-color: #1a1a1a;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.stat-card:hover {
  border-color: #f26d21;
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #f26d21;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.stat-label {
  color: #cccccc;
}

/* Video Testimonials Section */
.video-testimonials {
  padding: 5rem 0;
}

.videos-grid {
  display: grid;
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #1a1a1a;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.video-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Instructors Section */
.instructors {
  padding: 5rem 0;
  background-color: #1b1f3b;
}

.instructors-grid {
  display: grid;
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .instructors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instructor-card {
  background-color: #1a1a1a;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.instructor-card:hover {
  border-color: #f26d21;
}

.instructor-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.instructor-img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid #f26d21;
}

.instructor-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.instructor-desc {
  color: #cccccc;
  font-size: 0.875rem;
}

.instructors-cta {
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #1b1f3b;
}

.faq-content {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #1a1a1a;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item:hover {
  border-color: #f26d21;
}

.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #cccccc;
}

/* Payment Options Section */
.payment-options {
  padding: 5rem 0;
}

.payment-content {
  max-width: 64rem;
  margin: 0 auto;
}

.payment-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.payment-card {
  background-color: #1b1f3b;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.payment-card:hover {
  border-color: #f26d21;
  transform: scale(1.05);
}

.payment-card.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.payment-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f26d21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.payment-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.payment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.payment-desc {
  color: #cccccc;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.payment-security {
  text-align: center;
  color: #cccccc;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.security-icon {
  width: 1rem;
  height: 1rem;
  color: #f26d21;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background-color: #1b1f3b;
}

.final-cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  color: #f26d21;
  margin: 0 auto 1.5rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid #374151;
  background-color: #0a0a0a;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-main {
  margin-bottom: 1rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #cccccc;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-desc {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f26d21;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-contact {
  /* Estilos específicos para la sección de contacto si es necesario */
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

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

  .video-container {
    max-width: 300px;
    margin: 0 auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1b1f3b;
    flex-direction: column;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.6s ease forwards;
}

/* Counter animation */
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.counting {
  animation: countUp 2s ease;
}
