:root {
  --bg-deep: #020205;
  --neon-cyan: #00f2ff;
  --neon-magenta: #ff00ff;
  --text-white: #ffffff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Impede o zoom automático em campos de formulário no mobile */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Efeitos de Fundo */
.light-effects {
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}
.beam {
  position: absolute;
  width: 150%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    transparent
  );
  top: 20%;
  left: -25%;
  transform: rotate(-5deg);
  filter: blur(2px);
  opacity: 0.3;
}
.bokeh {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neon-magenta) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  filter: blur(80px);
  opacity: 0.15;
}

/* Header & Logo */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6%;
  position: relative;
  z-index: 10;
}
.logo {
  font-size: 1.8rem;
  font-weight: 900;
}
.logo span {
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BOTÕES UNIFORMES */
.btn-primary {
  background: var(--neon-magenta);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--glass-border);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn-ghost:hover {
  background: var(--glass);
}

/* Hero */
.hero {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(to top, var(--bg-deep) 10%, transparent),
    url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?w=1920")
      center/cover;
  opacity: 0.4;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* CTA Group */
.cta-group {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px;
  max-width: 600px;
  margin: 30px auto;
}
.cta-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px;
  color: white;
  outline: none;
}

/* Grid de Categorias */
.content-grid {
  padding: 0 6% 100px;
  position: relative;
  z-index: 5;
}
.row-title {
  font-size: 1.8rem;
  margin: 60px 0 25px;
}
.shelf {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.card-category {
  min-width: 220px;
  height: 320px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: 0.4s;
}
.card-category:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
}
.card-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.popcorn-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neon-cyan);
  backdrop-filter: blur(5px);
}
.category-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, black, transparent);
  text-align: center;
}
.category-info span {
  font-weight: 900;
  color: var(--neon-cyan);
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Benefícios & FAQ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}
.benefit-card h3 {
  color: var(--neon-cyan);
  margin: 15px 0 10px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin-bottom: 10px;
  border-radius: 8px;
  transition: 0.3s;
}
.faq-item.active {
  border-color: var(--neon-magenta);
}
.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
}

/* Rodapé */
.main-footer {
  padding: 60px 6% 30px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  opacity: 0.4;
  transition: 0.4s;
  margin-bottom: 15px;
}
.footer-logo:hover {
  opacity: 1;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.footer-links a {
  color: white;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.8rem;
}
.footer-links a:hover {
  color: var(--neon-cyan);
  opacity: 1;
}
