/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white-text {
  color: #ffffff;
}

.red-text {
  color: #ef4444;
}

.green-text {
  color: #10b981;
  font-weight: 600;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-left {
  animation: slideLeft 60s linear infinite;
}

.slide-right {
  animation: slideRight 60s linear infinite;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #581c87, #000000, #064e3b);
  padding: 5rem 0 8rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("https://via.placeholder.com/1200x800/000000/ffffff?text=Background");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #10b981);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #059669);
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.btn-test-free {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-test-free:hover {
  background: #10b981;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-test-free .icon {
  width: 1rem;
  height: 1rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-item .icon {
  color: #fbbf24;
}

.badge-item:nth-child(2) .icon {
  color: #10b981;
}

.badge-item:nth-child(3) .icon {
  color: #8b5cf6;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  z-index: 10;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.2);
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, #7c3aed, #10b981);
  border-radius: 1rem;
  filter: blur(40px);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Sliding Covers Section */
.sliding-covers {
  padding: 3rem 0;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.covers-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.covers-row {
  margin-bottom: 2rem;
}

.covers-row:last-child {
  margin-bottom: 0;
}

.covers-container {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.cover-item {
  flex-shrink: 0;
  width: 8rem;
  height: 12rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.cover-item:hover {
  opacity: 1;
}

.movie-cover {
  background: linear-gradient(135deg, #7c3aed, #581c87);
}

.series-cover {
  background: linear-gradient(135deg, #059669, #064e3b);
}

.cover-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #000000, #111827);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.benefit-description {
  color: #9ca3af;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: #111827;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-choose-item {
  background: rgba(31, 41, 55, 0.3);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
}

.why-choose-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.why-choose-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.why-choose-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.why-choose-description {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111827, #000000);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(31, 41, 55, 0.3);
  border-radius: 1rem;
  padding: 0.25rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.testimonials-footer {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-count {
  color: #10b981;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Plans Section */
.plans-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111827, #000000);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.plan-card.popular {
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.5), rgba(16, 185, 129, 0.5));
  border-color: #8b5cf6;
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

.plan-card.economical {
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.5), rgba(139, 92, 246, 0.5));
  border-color: #10b981;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #8b5cf6;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-badge.economical {
  background: #10b981;
}

.plan-header {
  text-align: center;
  padding-bottom: 1rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1.125rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.period {
  color: #9ca3af;
  margin-left: 0.25rem;
}

.plan-features {
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
}

.feature span {
  color: #d1d5db;
}

.plan-button {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  background: #374151;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: #4b5563;
}

.plan-button.popular {
  background: linear-gradient(135deg, #7c3aed, #10b981);
}

.plan-button.popular:hover {
  background: linear-gradient(135deg, #6d28d9, #059669);
}

.plan-button.economical {
  background: linear-gradient(135deg, #059669, #7c3aed);
}

.plan-button.economical:hover {
  background: linear-gradient(135deg, #047857, #6d28d9);
}

.plans-footer {
  text-align: center;
  margin-top: 3rem;
}

.payment-info {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.security-info {
  color: #10b981;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #111827;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(31, 41, 55, 0.3);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #8b5cf6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #d1d5db;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #111827, #000000);
}

.contact-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.btn-whatsapp {
  background: #059669;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.25);
  transition: all 0.3s ease;
  margin: 2rem 0;
}

.btn-whatsapp:hover {
  background: #047857;
  box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.contact-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.contact-badges .badge-item:nth-child(1) .icon {
  color: #10b981;
}

.contact-badges .badge-item:nth-child(2) .icon {
  color: #8b5cf6;
}

.contact-badges .badge-item:nth-child(3) .icon {
  color: #fbbf24;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #374151;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-title {
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #9ca3af;
}

.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.security-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
}

.security-item .icon {
  width: 1rem;
  height: 1rem;
}

.security-item span {
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.footer-copyright {
  text-align: center;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disclaimer {
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-badges {
    justify-content: center;
  }

  .contact-badges {
    justify-content: center;
  }

  .covers-container {
    gap: 0.5rem;
  }

  .cover-item {
    width: 6rem;
    height: 9rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8b5cf6, #10b981);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #7c3aed, #059669);
}
