:root {
  --bg: #0b1120;
  --bg-2: #111827;
  --surface: rgba(17, 24, 39, 0.88);
  --surface-soft: rgba(31, 41, 55, 0.72);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #22c55e;
  --primary-2: #16a34a;
  --secondary: #60a5fa;
  --accent: #f59e0b;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --radius: 22px;
  --body-gradient:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 20%),
    linear-gradient(180deg, #07101f 0%, #0b1120 100%);
  --header-bg: rgba(7, 16, 31, 0.72);
  --footer-bg: rgba(2, 6, 23, 0.92);
  --input-bg: rgba(15, 23, 42, 0.95);
  --link-color: #93c5fd;
  --link-hover: #bfdbfe;
  --overlay-bg: rgba(2, 6, 23, 0.75);
  --modal-bg: #0f172a;
  --modal-image-bg: #111827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--body-gradient);
}



body[data-theme="light"] {
  --bg: #f8fafc;
  --bg-2: #eef2ff;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.88);
  --text: #0f172a;
  --muted: #475569;
  --primary: #16a34a;
  --primary-2: #15803d;
  --secondary: #2563eb;
  --accent: #d97706;
  --border: rgba(15, 23, 42, 0.16);
  --shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  --body-gradient:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.15), transparent 25%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --header-bg: rgba(255, 255, 255, 0.88);
  --footer-bg: #f8fafc;
  --input-bg: #ffffff;
  --link-color: #1d4ed8;
  --link-hover: #1e40af;
  --overlay-bg: rgba(15, 23, 42, 0.48);
  --modal-bg: #ffffff;
  --modal-image-bg: #e2e8f0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

.section-lead,
.section-subtitle {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: -0.02em;
}

.logo i {
  color: var(--accent);
  font-size: 1.2rem;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.menu a:hover {
  color: var(--secondary);
}

.header-actions,
.toolbar-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #052e16;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.18);
}

.btn-outline {
  border-color: rgba(96, 165, 250, 0.45);
  color: #dbeafe;
  background: rgba(96, 165, 250, 0.06);
}

.btn-outline:hover {
  background: rgba(96, 165, 250, 0.12);
}

.btn-small {
  padding: 0.6rem 0.95rem;
  font-size: 0.92rem;
}


.showcase {
  padding: 2.2rem 0 0;
}

.showcase-slider {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(96, 165, 250, 0.16), transparent 25%),
    linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border);
  border-radius: 28px;
  min-height: 320px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.showcase-slide {
  display: none;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  max-width: 70ch;
}

.showcase-slide.active {
  display: block;
  animation: fadeSlide 400ms ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-chip {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.42);
  color: #bbf7d0;
}

.showcase-slide h2 {
  margin-bottom: 0.7rem;
}

.showcase-slide p {
  color: #dbeafe;
  margin-bottom: 1.25rem;
}

.showcase-controls {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.showcase-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
}

.showcase-dot.active {
  background: var(--primary);
}

.hero {
  padding: 6rem 0 4.6rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.32);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-sub {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-visual {
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 20%, rgba(96,165,250,.22), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(34,197,94,.16), transparent 30%),
    linear-gradient(145deg, rgba(96,165,250,.10), rgba(34,197,94,.08));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-visual span {
  font-size: 2.4rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
  animation: float 4.5s ease-in-out infinite;
}

.hero-visual span:nth-child(2) { animation-delay: .2s; }
.hero-visual span:nth-child(3) { animation-delay: .4s; }
.hero-visual span:nth-child(4) { animation-delay: .6s; }
.hero-visual span:nth-child(5) { animation-delay: .8s; }
.hero-visual span:nth-child(6) { animation-delay: 1s; }

@keyframes float {
  50% { transform: translateY(-8px); }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.package-card,
.step,
.game-card {
  box-shadow: var(--shadow);
}

.card {
  background: linear-gradient(165deg, rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.card.soft {
  background: rgba(17, 24, 39, 0.62);
}

.quote {
  font-size: 1.03rem;
  color: #dbeafe;
  border-left: 4px solid var(--secondary);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--secondary);
  color: #082f49;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

/* PACOTES */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.package-card {
  background: linear-gradient(180deg, rgba(17, 29, 53, 0.98), rgba(22, 37, 68, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 183, 0.35);
}

.package-number {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.35);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 10px;
}

.package-card .ideal {
  color: var(--muted);
  margin-bottom: 14px;
}

.package-card p,
.package-card li {
  font-size: 0.97rem;
}

.package-card ul {
  padding-left: 1.1rem;
  margin: 16px 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.package-card strong {
  color: var(--text);
}

.package-card.featured {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(245, 159, 11, 0.467) inset;
}

.package-card.featured .package-number {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  font-size: 0.75rem;
  background: var(--accent);
  color: #321a00;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  z-index: 2;
  line-height: 1;
}

.value-text {
  color: var(--primary);
  font-weight: 700;
  margin-top: 14px;
}

.note {
  margin-top: 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08);
  color: #fcd34d;
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.filters label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.filters input,
.filters select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: 0.2s ease;
}

.filters input:focus,
.filters select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.catalog-info {
  margin: 0;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
}

.game-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98));
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  transition: 0.25s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.28);
}

.game-image,
.game-image-placeholder {
  width: 100%;
  height: 260px;
  display: block;
}

.game-image {
  object-fit: cover;
  background: var(--modal-image-bg);
}

.game-image-placeholder {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem;
}

.game-content {
  padding: 1rem;
}

.game-content h3 {
  margin-bottom: 0.45rem;
}

.owner-line {
  color: #cbd5e1;
  margin: 0;
}

.game-description-preview {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
}

.meta span {
  font-size: 0.76rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.28rem .55rem;
  color: #cbd5e1;
  background: rgba(255,255,255,0.03);
}

.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  font-size: 1.1rem;
  transition: 0.2s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.favorite-btn:hover {
  transform: scale(1.06);
}

.favorite-btn.is-favorite {
  color: #fb7185;
  background: rgba(127, 29, 29, 0.88);
  border-color: rgba(251, 113, 133, 0.45);
}

.cta-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.two-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.3rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.8rem 0 1.2rem;
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer a {
  display: block;
  color: var(--link-color);
  margin: 0.2rem 0;
  text-decoration: none;
}

.footer a:hover {
  color: var(--link-hover);
}

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #063;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  z-index: 120;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: min(680px, 92%);
  margin: 5vh auto;
  background: var(--modal-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-large {
  width: min(980px, 92%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.88);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image-wrap {
  background: var(--modal-image-bg);
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.modal-info {
  padding: 2rem;
}

.modal-owner {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-description {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  white-space: pre-line;
}

.favorites-box {
  padding: 2rem;
}

.favorites-sub {
  color: var(--muted);
  margin-top: -0.2rem;
}

.favorites-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.favorite-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.favorite-thumb,
.favorite-thumb-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.favorite-thumb {
  object-fit: cover;
  background: var(--modal-image-bg);
}

.favorite-thumb-placeholder {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.35rem;
}

.favorite-item-info strong {
  display: block;
  margin-bottom: 0.15rem;
}

.favorite-item-info span {
  color: var(--muted);
  font-size: 0.92rem;
}

.favorite-empty {
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.remove-favorite-btn {
  border: none;
  background: transparent;
  color: #fda4af;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}

.favorites-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}


body[data-theme="light"] .btn-outline {
  color: #1e293b;
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.06);
}

body[data-theme="light"] .section-alt,
body[data-theme="light"] .favorite-item,
body[data-theme="light"] .card.soft {
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .hero-visual,
body[data-theme="light"] .game-card,
body[data-theme="light"] .package-card,
body[data-theme="light"] .card,
body[data-theme="light"] .step {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
}

body[data-theme="light"] .showcase-slider {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.14), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.14), transparent 25%),
    linear-gradient(145deg, #eff6ff, #ffffff);
}

body[data-theme="light"] .showcase-chip {
  color: #166534;
}

body[data-theme="light"] .showcase-slide p,
body[data-theme="light"] .quote,
body[data-theme="light"] .owner-line,
body[data-theme="light"] .meta span {
  color: #334155;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .menu,
  .btn-nav {
    display: none;
  }

  .hero-content,
  .two-cols,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .package-grid,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.4rem 0;
  }

  .timeline,
  .package-grid,
  .grid-3,
  .filters,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .favorite-item {
    grid-template-columns: 60px 1fr;
  }

  .remove-favorite-btn {
    grid-column: 1 / -1;
    justify-self: start;
    padding-left: 0;
  }

  .favorite-thumb,
  .favorite-thumb-placeholder {
    width: 60px;
    height: 60px;
  }

  .cta-box,
  .catalog-toolbar,
  .favorites-actions,
  .header-actions,
  .toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 220px;
  }
}