/* Cine Box - Stylesheet */
:root {
  --bg-dark: #0b0d1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.06);
  --primary-gradient: linear-gradient(135deg, #00d4ff, #7b2ff7);
  --accent-blue: #00d4ff;
  --accent-purple: #7b2ff7;
  --text-main: #e0e6f0;
  --text-muted: rgba(224, 230, 240, 0.7);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

section[id] {
  scroll-margin-top: 80px;
}

/* Header & Nav */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(11, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  align-items: center;
}

nav a {
  opacity: 0.75;
  transition: opacity .3s, color .3s;
}

nav a:hover {
  opacity: 1;
  color: var(--accent-blue);
}

.header-cta {
  background: var(--primary-gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .3s, box-shadow .3s;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--accent-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .3s, box-shadow .3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  border: 2px solid rgba(0, 212, 255, 0.4);
  color: var(--accent-blue);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .3s, border-color .3s, transform .3s;
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.hero-video-blend {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-video-blend video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-blend::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Compatibility Bar */
.compatibility {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
}

.compatibility p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.compat-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.compat-icons span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity .3s, transform .3s;
}

.compat-icons span:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.compat-icons i {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

/* Common Section Typography */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff, #d0e4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.1);
}

.feature-card i {
  font-size: 2.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Esportes */
.esportes {
  padding: 80px 0;
}

.esportes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.esporte-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.esporte-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
}

.esporte-card i {
  font-size: 2.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.esporte-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.esporte-card p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Adultos */
.adultos {
  padding: 80px 0;
  background: rgba(255, 0, 68, 0.03);
  border-top: 1px solid rgba(255, 0, 68, 0.08);
  border-bottom: 1px solid rgba(255, 0, 68, 0.08);
}

.adultos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.adultos-img img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 20px;
}

.adultos-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff0044, #ff6688);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adultos-content p {
  opacity: 0.75;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.adultos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.adultos-tags span {
  background: rgba(255, 0, 68, 0.1);
  border: 1px solid rgba(255, 0, 68, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* Successos / Posters */
.successos {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.015);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.poster-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 2/3;
  transition: transform .4s, box-shadow .4s;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
  border-color: rgba(0, 212, 255, 0.4);
}

.poster-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Kids */
.kids {
  padding: 80px 0;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.kids-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.kids-content p {
  opacity: 0.75;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.kids-content .kids-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kids-content .kids-features span {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}

.kids-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kids-poster {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
  transition: transform .4s, box-shadow .4s;
  background: rgba(255, 255, 255, 0.03);
}

.kids-poster:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.2);
}

.kids-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-poster-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 10px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  pointer-events: none;
}

/* How it works */
.how-it-works {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 36px 24px;
  border-radius: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  opacity: 0.7;
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 36px 20px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
  border-color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0;
  color: #fff;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0 28px;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.pricing-card ul li i {
  color: var(--accent-blue);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-card .btn-primary {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: 12px;
  background: var(--bg-card);
  margin-bottom: 12px;
  padding: 16px 20px;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
}

.faq-question i {
  transition: transform .3s;
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--accent-blue);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s, opacity .3s;
  opacity: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 14px;
  opacity: 1;
}

/* Footer */
footer {
  padding: 40px 24px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #080914;
}

footer .links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

footer .links a {
  opacity: 0.75;
  transition: opacity .3s, color .3s;
}

footer .links a:hover {
  opacity: 1;
  color: var(--accent-blue);
}

/* WhatsApp Floating Button */
.whatsapp-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-balao {
  background: #ffffff;
  color: #111827;
  padding: 12px 18px;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 260px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}

.whatsapp-balao.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    gap: 30px;
    padding: 60px 24px 40px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .poster-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 13, 26, 0.98);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }

  nav.open {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-video-blend {
    height: 320px;
    max-width: 100%;
  }

  .hero-video-blend::before {
    display: none;
  }

  .features-grid,
  .esportes-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .kids-grid,
  .adultos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kids-images,
  .adultos-img {
    order: -1;
  }

  .kids-images {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-balao {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .kids-images {
    grid-template-columns: repeat(1, 1fr);
  }

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