/* ==========================================================================
   DESIGN SYSTEM - BILHETERIA DE CINEMA INTERNACIONAL (EQUIPE 08)
   ========================================================================== */

:root {
  color-scheme: dark;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Cores Temáticas Cinema Escuro (Deep Space) */
  --bg-color: #060813;
  --bg-card: rgba(13, 18, 35, 0.45);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  /* Cores Neon e Destaques */
  --primary-rgb: 255, 93, 34;   /* Laranja Neon */
  --secondary-rgb: 0, 240, 255;  /* Azul Neon (IMAX) */
  --accent-rgb: 139, 92, 246;    /* Roxo Neon */
  
  --primary: rgb(var(--primary-rgb));
  --secondary: rgb(var(--secondary-rgb));
  --accent: rgb(var(--accent-rgb));
}

/* Base & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #030408;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  border: 2px solid #030408;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================================================
   LAYOUT E UTILS
   ========================================================================== */

/* Orbes de Gradiente de Fundo (Cinema Aura) */
.glow-orb {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--primary), transparent 70%);
}

.orb-2 {
  top: 40%;
  right: -10%;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
}

.orb-3 {
  bottom: -10%;
  left: 20%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

main {
  position: relative;
  z-index: 1;
}

.hero,
.section,
footer {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Glassmorphism Panel Common Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Badges e Tags */
.badge-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  background: rgba(255, 93, 34, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 93, 34, 0.25);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-glow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 240, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 240, 255, 0.2);
  margin-bottom: 0.75rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(255, 93, 34, 0.2);
  box-shadow: 0 8px 24px rgba(255, 93, 34, 0.3);
}

.button-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #ff723f;
  box-shadow: 0 12px 30px rgba(255, 93, 34, 0.45);
}

.button-primary:disabled {
  background: var(--text-muted);
  border-color: transparent;
  color: var(--text-secondary);
  cursor: not-allowed;
  box-shadow: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.button-full {
  width: 100%;
}

.button-small {
  min-height: 2.3rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* ==========================================================================
   HEADER SITE
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  margin-top: 1rem;
  border-radius: 12px;
  background: rgba(6, 8, 19, 0.65);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(255, 93, 34, 0.3);
}

.brand-dot {
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 0;
  vertical-align: middle;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 6.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-family: var(--font-title);
  color: var(--secondary);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

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

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.95rem;
  backdrop-filter: blur(5px);
}

.step-num {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
  background: rgba(255, 93, 34, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  line-height: 1.1;
}

.step-list li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.step-list li span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.hero-media-wrapper {
  perspective: 1200px;
}

.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.4s ease;
}

.hero-media:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 8, 19, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.glass-tag {
  background: rgba(6, 8, 19, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  animation: pulse 1.6s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* ==========================================================================
   SEÇÕES GERAIS (SECTIONS)
   ========================================================================== */

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 2.85rem;
}

.section-subtitle {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ==========================================================================
   REDES GLOBAIS (SLIDE 2)
   ========================================================================== */

.chains-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.25rem;
  align-items: stretch;
}

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

.chain-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
  font-family: inherit;
}

.chain-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.chain-tab.is-active {
  background: rgba(0, 240, 255, 0.07);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
}

.chain-tab strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.chain-tab.is-active strong {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

.chain-tab span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.chain-detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.chain-detail-header {
  margin-bottom: 1.25rem;
}

.chain-detail-panel h3 {
  font-size: 2.2rem;
  line-height: 1.1;
  color: #fff;
}

.chain-detail-panel p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   FILMES EM DESTAQUE (SLIDE 3) - 3D PERSPECTIVE TILT
   ========================================================================== */

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

.movie-tilt-container {
  perspective: 1000px;
}

.movie-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.15s ease-out;
  transform-style: preserve-3d;
  height: 100%;
}

.movie-card:hover {
  border-color: rgba(255, 93, 34, 0.35);
  box-shadow: 0 20px 45px rgba(255, 93, 34, 0.15);
}

.movie-poster-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.movie-poster-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster-wrapper img {
  transform: scale(1.05);
}

.movie-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.badge-red {
  background: #dc2626;
  color: #fff;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-blue {
  background: #0284c7;
  color: #fff;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.badge-orange {
  background: #d97706;
  color: #fff;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.movie-info {
  padding: 1.5rem;
  transform: translateZ(30px); /* Traz as informações para frente no espaço 3D */
}

.movie-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 750;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.format-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.movie-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 4.5rem;
}

.btn-quick-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-quick-buy:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 93, 34, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   CINEMAS DO MUNDO (SLIDE 4)
   ========================================================================== */

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

.cinema-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.cinema-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cinema-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cinema-card:hover .cinema-img-wrapper img {
  transform: scale(1.04);
}

.cinema-rating {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 8, 19, 0.8);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.25);
}

.cinema-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cinema-content h3 {
  font-size: 1.15rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cinema-location {
  display: block;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.cinema-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.cinema-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cinema-amenities span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.01);
}

/* ==========================================================================
   SIMULADOR DE BILHERIA
   ========================================================================== */

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.booking-config {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.config-group label {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.custom-select {
  background: rgba(6, 8, 19, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: #fff;
  min-height: 3.25rem;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.custom-select option {
  background: #0d1127;
  color: #fff;
}

.session-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-session {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.chip-session:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.chip-session.is-active {
  background: rgba(255, 93, 34, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.session-tag {
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.chip-session.is-active .session-tag {
  background: var(--primary);
  color: #fff;
}

.neon-txt {
  color: var(--secondary) !important;
}

.ticket-counters {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.counter-label strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.counter-label span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-counter {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  line-height: 0;
  transition: all 0.2s;
}

.btn-counter:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.btn-counter:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-value {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  min-width: 1.25rem;
  text-align: center;
}

.booking-summary-panel {
  background: rgba(6, 8, 19, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-line strong {
  color: #fff;
}

.text-large {
  font-size: 1.05rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 0.65rem;
  margin-top: 0.25rem;
}

.highlight-text {
  color: var(--primary) !important;
  font-family: var(--font-title);
  font-weight: 900;
}

.booking-summary-panel .highlight-text {
  font-size: 1.4rem;
  text-shadow: 0 0 15px rgba(255, 93, 34, 0.2);
}

.summary-tip {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

/* Coluna 2: Mapa de assentos */
.booking-seats-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-container {
  width: 90%;
  margin-bottom: 2rem;
  text-align: center;
}

.screen-curve {
  height: 8px;
  width: 100%;
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(0, 240, 255, 0) 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -4px 15px rgba(0, 240, 255, 0.45);
  margin-bottom: 0.5rem;
}

.screen-container span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.seats-grid {
  display: grid;
  grid-template-columns: repeat(8, 2.1rem);
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.seat {
  width: 2.1rem;
  height: 1.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
}

.seat-available {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
}

.seat-available:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.seat-vip {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.3);
  color: rgba(139, 92, 246, 0.75);
}

.seat-vip:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.seat-selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(255, 93, 34, 0.6);
  transform: scale(1.05);
}

.seat-occupied {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.03) !important;
  color: transparent !important;
  cursor: not-allowed !important;
}

/* Pequeno ponto para simular a poltrona em si */
.seat::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.seat-selected::after {
  background: rgba(255, 255, 255, 0.4);
}

.seats-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.seat-sample {
  width: 1.2rem;
  height: 1.1rem;
  border-radius: 4px;
}

.seats-footer {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.selected-seats-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.selected-seats-info strong {
  color: #fff;
}

.text-glow {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}

/* ==========================================================================
   AGRADECIMENTO E ENCERRAMENTO (SLIDE 5)
   ========================================================================== */

.ending-section {
  padding-top: 1rem;
}

.ending-panel {
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ending-glow-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
}

.ending-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.ending-text {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-secondary);
  max-width: 44rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-style: italic;
}

.ending-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.35rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   EQUIPE
   ========================================================================== */

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

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--primary-rgb), 0.15);
}

.member-card:hover::before {
  opacity: 1;
}

.member-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #060813;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card:hover .member-avatar {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--primary-rgb), 0.3);
  border-color: var(--secondary);
}

.member-img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-card:hover .member-img {
  border-color: var(--secondary);
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.member-info strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.35rem;
}

.member-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
}

.badge-purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

/* ==========================================================================
   TICKET MODAL (POPUP DIGITAL)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 4, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0);
}

.btn-close-modal {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  z-index: 2;
}

.btn-close-modal:hover {
  color: #fff;
}

.ticket-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 2rem 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.ticket-body {
  padding: 1rem 2rem 2rem;
}

.ticket-visual-info h3 {
  font-size: 1.75rem;
  line-height: 1.1;
  color: #fff;
  margin-top: 0.25rem;
}

.ticket-header-group {
  margin-bottom: 1.5rem;
}

.ticket-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.ticket-value {
  display: block;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.15rem;
}

/* Linha de Divisão Clássica de Ingresso (Ticket Notch) */
.ticket-divider {
  display: flex;
  align-items: center;
  margin: 1.75rem -2.05rem; /* Extrapola as laterais do card */
  position: relative;
}

.divider-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #030408; /* Mesma cor de fundo do overlay */
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  z-index: 1;
}

.divider-circle.left {
  left: -12px;
  clip-path: circle(50% at 100% 50%); /* Corta metade esquerda */
}

.divider-circle.right {
  right: -12px;
  clip-path: circle(50% at 0 50%); /* Corta metade direita */
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
  margin: 0 1rem;
}

/* Código QR e Código de Barras */
.ticket-checkout-details {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.qr-code-wrapper {
  background: #fff;
  padding: 0.4rem;
  border-radius: 8px;
  width: 80px;
  height: 80px;
}

.qr-mock {
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  position: relative;
}

.qr-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  background: #fff;
}

.qr-corner.top-left { top: -1px; left: -1px; }
.qr-corner.top-right { top: -1px; right: -1px; }
.qr-corner.bottom-left { bottom: -1px; left: -1px; }
.qr-corner.bottom-right { bottom: -1px; right: -1px; }

.qr-inner {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.qr-pixel-grid {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 8px 8px;
  opacity: 0.85;
}

.ticket-booking-ref strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0.2rem 0 0.75rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0 3rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-credits {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
}

.back-to-top {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.back-to-top:hover {
  color: var(--secondary);
}

/* Cineclube Toggle Switch */
.cineclube-toggle-wrapper {
  margin-bottom: 1.5rem;
}

.cineclube-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05);
  transition: all 0.3s ease;
}

.cineclube-card:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.35);
}

.cineclube-card.active {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 4px 25px rgba(0, 240, 255, 0.12);
}

.cineclube-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cineclube-info strong {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.cineclube-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Switch Toggle Styling */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: .3s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

input:checked + .toggle-slider {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

input:focus + .toggle-slider {
  box-shadow: 0 0 1px var(--secondary);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .cinemas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 1.5rem);
    padding: 0.75rem 1rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

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

  .hero-media-wrapper {
    max-width: 460px;
    margin: 0 auto;
  }
  
  .hero-media {
    transform: none;
  }

  .hero-media:hover {
    transform: scale(1.02);
  }

  .chains-showcase {
    grid-template-columns: 1fr;
  }

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

  .booking-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

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

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .booking-seats-map {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .seats-grid {
    grid-template-columns: repeat(8, 1.8rem);
    gap: 0.45rem;
  }

  .seat {
    width: 1.8rem;
    height: 1.6rem;
    font-size: 0.65rem;
  }

  .seats-legend {
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
