@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
  scroll-behavior: smooth;
}




.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f172a;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #38bdf8;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}





.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h1, h2, h3 {
  color: #ffffff;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin: 60px 0 20px;
  border-bottom: 2px solid #334155;
  padding-bottom: 10px;
  text-align: center;
}

p {
  color: #94a3b8;
  margin-bottom: 20px;
  text-align: center;
}

.logo-center {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  max-width: 180px;
  width: 50%;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  margin: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn i {
  margin-right: 8px;
}

.btn:hover {
  background: #1d4ed8;
}

.hero {
  background: url('https://wallpapercave.com/wp/wp7762388.jpg') center/cover no-repeat;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.85);
  z-index: -1;
}


.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.catalogo-grid div {
  background: #1e293b;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.catalogo-grid div:hover {
  transform: scale(1.05);
}

.catalogo-grid img {
  width: 64px;
  margin-bottom: 10px;
}

.catalogo-grid p {
  color: #f8fafc;
  font-weight: 600;
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}







.download-app {
  background: #1e293b;
  padding: 60px 20px;
  border-radius: 16px;
  margin-top: 80px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.download-app h2 {
  font-size: 1.6rem;
  color: #38bdf8;
  margin-bottom: 20px;
}

.download-app p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 20px;
}

.instructions {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #cbd5e1;
  font-size: 0.95rem;
  padding-left: 20px;
}

.instructions li {
  margin-bottom: 12px;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}






/* Planes */
.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.plan {
  background: #1e293b;
  border-radius: 20px;
  padding: 35px 25px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-8px);
}

.plan i {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 12px;
}

.plan .price {
  font-size: 1.5rem;
  color: #38bdf8;
  margin: 12px 0;
  font-weight: bold;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #cbd5e1;
}

.plan ul li {
  padding: 8px 0;
  border-bottom: 1px solid #334155;
}

.plan ul li:last-child {
  border-bottom: none;
}

.plan .btn {
  width: 100%;
  margin-top: 15px;
}

.plan.popular {
  background: linear-gradient(145deg, #0ea5e9, #0284c7);
  color: white;
}

.plan.popular i {
  color: white;
}

.plan.popular .price,
.plan.popular h3 {
  color: white;
}

.plan.popular ul li {
  color: #dbeafe;
}

.plan.popular .btn {
  background: #ffffff;
  color: #0284c7;
}

.plan.popular .btn:hover {
  background: #dbeafe;
  color: #0369a1;
}

.plan .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #facc15;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 12px;
}

.secure-payments {
  background: #1e293b;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.secure-payments img {
  width: 120px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.secure-payments h2 {
  font-size: 1.6rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.secure-payments p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.cta-principal {
  background-color: #facc15;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid #facc15;
  transition: background 0.3s, color 0.3s;
}

.cta-principal:hover {
  background-color: #fde68a;
  color: #0f172a;
}





/* Formulario */
#formulario {
  display: none;
  background: #1e293b;
  padding: 30px;
  margin: 40px auto 0;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #f8fafc;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #475569;
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.95rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

/* Redes sociales */
.social {
  margin-top: 40px;
  text-align: center;
}

.social a {
  color: #38bdf8;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s;
}

.social a:hover {
  color: #0ea5e9;
}



.faq {
  margin-top: 60px;
}

.faq-item {
  background: #1e293b;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item h4 {
  font-size: 1rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.faq-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
}




/* Footer */
footer {
  margin-top: 60px;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.destacadas {
  margin-top: 60px;
  padding: 0 20px;
}
.peliculas-slider {
        position: relative;
    left: 35px;
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pelicula {
  flex: 0 0 auto;
  width: 240px; /* ajusta este valor según el tamaño real de tus capturas */
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
}

.pelicula img {
  width: 100%;
  height: auto;
  display: block;
}

.pelicula-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  text-align: center;
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: bold;
  pointer-events: none;
}

.pelicula span {
  display: block;
}

.ventajas {
  margin-top: 60px;
  padding: 0 20px;
  text-align: center;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.ventaja {
  background: #1e293b;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ventaja:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.ventaja i {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.ventaja h3 {
  font-size: 1.1rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.ventaja p {
  font-size: 0.95rem;
  color: #cbd5e1;
}
