/* ==========================================================================
   Ultimate Liquid Vortex Gallery - Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   1. Fonts
   ========================================================================== */
@font-face { font-family: 'Anton SC'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/anton-sc-400.woff2') format('woff2'); }
@font-face { font-family: 'Anton'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/anton-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 300; font-style: normal; font-display: swap; src: url('../fonts/barlow-300.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 100; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-100.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 300; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-300.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/barlow-condensed-600.woff2') format('woff2'); }
@font-face { font-family: 'Fragment Mono'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/fragment-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 900; font-style: normal; font-display: swap; src: url('../fonts/inter-900.woff2') format('woff2'); }
@font-face { font-family: 'Inter Display'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/inter-display-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter Display'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/inter-display-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter Display'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/inter-display-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter Display'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/inter-display-700.woff2') format('woff2'); }

/* ==========================================================================
   2. CSS Custom Properties (Variables) & Theming
   ========================================================================== */
:root, :root[data-theme='dark'] {
  --bg-primary: #4341f7;
  --bg-secondary: #3533db;
  --bg-tertiary: #4341f7;
  --text-primary: #ffffff;
  --text-secondary: #e0e0ff;
  --text-muted: #b0b0ea;
  --accent: #ff5500;
  --accent-hover: #ff6a1a;
  --border-color: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.08);
  
  --transition-speed: 0.3s;
  --transition-theme: 0.4s;
  --max-width: 1200px;
}

:root[data-theme='light'] {
  --bg-primary: #4341f7;
  --bg-secondary: #3533db;
  --bg-tertiary: #4341f7;
  --text-primary: #ffffff;
  --text-secondary: #e0e0ff;
  --text-muted: #b0b0ea;
  --accent: #ff5500;
  --accent-hover: #ff6a1a;
  --border-color: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Page Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #4341f7;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.preloader-logo {
  width: clamp(182px, 26vw, 286px);
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  animation: preloader-fade-in 0.5s ease-out forwards;
}

@keyframes preloader-fade-in {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
  width: clamp(156px, 20vw, 208px);
  height: 2.5px;
  background: #2424bd;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background-color: #e0fc89;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(224, 252, 137, 0.6);
  transition: width 0.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* ==========================================================================
   3. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;    /* Firefox */
  overscroll-behavior: none;
  scroll-behavior: smooth;
  font-size: 16px;
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-theme) ease, color var(--transition-theme) ease;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   4. Navbar
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-theme) ease, border-color var(--transition-theme) ease, backdrop-filter 0.3s ease;
}

.navbar-wrapper.scrolled {
  background-color: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme='light'] .navbar-wrapper.scrolled {
  background-color: rgba(217, 217, 217, 0.85);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand svg {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: fill var(--transition-theme) ease;
}

.navbar-brand-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.navbar-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
  width: 100%;
}

.theme-toggle {
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: background-color var(--transition-theme) ease, border-color var(--transition-theme) ease;
}

.theme-toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--text-primary);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color var(--transition-theme) ease;
}

[data-theme='light'] .theme-toggle-knob {
  transform: translateX(20px);
}

/* ==========================================================================
   5. Background Marquee Ticker (Atrás dos boxes)
   ========================================================================== */
.marquee-section {
  width: 100%;
  overflow: hidden;
  border: none;
  background-color: transparent;
  padding: 40px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  display: flex;
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
  padding: 15px 0;
}

.marquee-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 85px);
  text-transform: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.3;
  color: #ffffff;
  opacity: 0.92;
  transition: color var(--transition-theme) ease;
  padding: 5px 0;
}

.marquee-separator,
.marquee-dot {
  color: #2424bd;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.marquee-separator {
  margin: 0 30px;
  font-size: clamp(24px, 3.5vw, 45px);
  opacity: 0.92;
}

.marquee-dot {
  margin: 0 16px;
  font-size: 0.85em;
  opacity: 1;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   6. 3D Carousel Section
   ========================================================================== */
.carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--transition-theme) ease;
}

.carousel-container {
  perspective: 1000px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

/* Central Game Logo */
.carousel-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(260px, 32vw, 440px);
  height: auto;
  max-height: clamp(180px, 22vw, 300px);
  transform-style: preserve-3d;
  z-index: 1;
}

.carousel-center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  animation: logo-3d-float 4s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes logo-3d-float {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.04);
  }
}

.carousel-ring,
.carousel-track {
  position: relative;
  width: 255px;
  height: 340px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 255px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
  border: none;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

/* Example static placement for 8 cards */
.carousel-card:nth-child(1) { transform: rotateY(0deg) translateZ(400px); }
.carousel-card:nth-child(2) { transform: rotateY(45deg) translateZ(400px); }
.carousel-card:nth-child(3) { transform: rotateY(90deg) translateZ(400px); }
.carousel-card:nth-child(4) { transform: rotateY(135deg) translateZ(400px); }
.carousel-card:nth-child(5) { transform: rotateY(180deg) translateZ(400px); }
.carousel-card:nth-child(6) { transform: rotateY(225deg) translateZ(400px); }
.carousel-card:nth-child(7) { transform: rotateY(270deg) translateZ(400px); }
.carousel-card:nth-child(8) { transform: rotateY(315deg) translateZ(400px); }

.carousel-card:hover {
  transform: rotateY(var(--rotation, 0deg)) translateZ(420px) scale(1.05); /* JS needs to inject --rotation */
  box-shadow: none;
  z-index: 5;
}

[data-theme='light'] .carousel-card {
  box-shadow: none;
}
[data-theme='light'] .carousel-card:hover {
  box-shadow: none;
}

.card-media-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease-out;
  will-change: filter;
}

.card-video,
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.carousel-card:nth-child(even) .card-image-placeholder {
  background-color: #000000;
}

.carousel-card-btn {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  border-radius: 9999px;
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.03em;
  text-transform: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  z-index: 4;
  white-space: nowrap;
  cursor: pointer;
  will-change: opacity, transform;
  user-select: none;
}

/* Sem Freio Pill Button: Azul #003c93 */
.carousel-card-btn.btn-semfreio {
  background: linear-gradient(180deg, #1b6bf5 0%, #003c93 55%, #002666 100%);
  box-shadow: 0 4px 0 #001844, 0 8px 20px rgba(0, 60, 147, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-card-btn.btn-semfreio:hover {
  background: linear-gradient(180deg, #2b77ff 0%, #0047ad 55%, #002d75 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #001844, 0 12px 24px rgba(0, 60, 147, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
}

/* Star Trek Pill Button: Dourado/Amarelo #d9a20c */
.carousel-card-btn.btn-startrek {
  background: linear-gradient(180deg, #ffdb2a 0%, #d9a20c 55%, #9e7400 100%);
  box-shadow: 0 4px 0 #735300, 0 8px 20px rgba(217, 162, 12, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-card-btn.btn-startrek:hover {
  background: linear-gradient(180deg, #ffe54c 0%, #e6ad10 55%, #b88600 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #735300, 0 12px 24px rgba(217, 162, 12, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.75);
}

/* Aviando Pill Button: #a12c15 */
.carousel-card-btn.btn-aviando {
  background: linear-gradient(180deg, #d44a2e 0%, #a12c15 55%, #751a08 100%);
  box-shadow: 0 4px 0 #521104, 0 8px 20px rgba(161, 44, 21, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-aviando:hover {
  background: linear-gradient(180deg, #e35a3e 0%, #b8351b 55%, #8a200a 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #521104, 0 12px 24px rgba(161, 44, 21, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Run & Dance Pill Button: Pink Claro */
.carousel-card-btn.btn-run-dance {
  background: linear-gradient(180deg, #ff80bf 0%, #ff3385 55%, #c2004d 100%);
  box-shadow: 0 4px 0 #8a0037, 0 8px 20px rgba(255, 51, 133, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-run-dance:hover {
  background: linear-gradient(180deg, #ff99cc 0%, #ff4d94 55%, #d60055 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #8a0037, 0 12px 24px rgba(255, 51, 133, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Zombie Delivery Pill Button: Vermelho Claro */
.carousel-card-btn.btn-zombie-delivery {
  background: linear-gradient(180deg, #ff6666 0%, #ff2a2a 55%, #b30000 100%);
  box-shadow: 0 4px 0 #800000, 0 8px 20px rgba(255, 42, 42, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-zombie-delivery:hover {
  background: linear-gradient(180deg, #ff8080 0%, #ff4040 55%, #cc0000 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #800000, 0 12px 24px rgba(255, 42, 42, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Keep Fast Pill Button: #ec008c */
.carousel-card-btn.btn-keep-fast {
  background: linear-gradient(180deg, #ff4db8 0%, #ec008c 55%, #b3006a 100%);
  box-shadow: 0 4px 0 #7a0048, 0 8px 20px rgba(236, 0, 140, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-keep-fast:hover {
  background: linear-gradient(180deg, #ff70c7 0%, #fa199d 55%, #c70076 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #7a0048, 0 12px 24px rgba(236, 0, 140, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* GP Racing Pill Button: #d63431 */
.carousel-card-btn.btn-gp-racing {
  background: linear-gradient(180deg, #fa5c58 0%, #d63431 55%, #9e1f1c 100%);
  box-shadow: 0 4px 0 #6e110f, 0 8px 20px rgba(214, 52, 49, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-gp-racing:hover {
  background: linear-gradient(180deg, #ff706d 0%, #eb413e 55%, #b52522 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #6e110f, 0 12px 24px rgba(214, 52, 49, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Pizza Drolivery Pill Button: Laranja Pizza */
.carousel-card-btn.btn-pizza-drolivery {
  background: linear-gradient(180deg, #ff9e2c 0%, #e85d04 55%, #ad3e00 100%);
  box-shadow: 0 4px 0 #732a00, 0 8px 20px rgba(232, 93, 4, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-pizza-drolivery:hover {
  background: linear-gradient(180deg, #ffb356 0%, #fa6d11 55%, #c74700 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #732a00, 0 12px 24px rgba(232, 93, 4, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Dead World Pill Button: Vermelho #8f0a09 */
.carousel-card-btn.btn-dead-world {
  background: linear-gradient(180deg, #bf1a19 0%, #8f0a09 55%, #5e0403 100%);
  box-shadow: 0 4px 0 #3b0202, 0 8px 20px rgba(143, 10, 9, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel-card-btn.btn-dead-world:hover {
  background: linear-gradient(180deg, #d42725 0%, #a80e0c 55%, #730605 100%);
  transform: translateX(-50%) translateY(-2px) scale(1.05);
  box-shadow: 0 6px 0 #3b0202, 0 12px 24px rgba(143, 10, 9, 0.65), inset 0 1px 1.5px rgba(255, 255, 255, 0.7);
}

/* Em Breve: Somente a frase centralizada na base (sem formato de botão, sem sombras, sem seta e sem link) */
.carousel-card-btn.btn-embreve {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  text-shadow: none;
  cursor: default;
  pointer-events: none;
  color: #ffffff;
}

.carousel-card-btn.btn-embreve .btn-arrow {
  display: none !important;
}

/* Box 3: Em Breve em Azul #3733ba */
.carousel-card-btn.btn-box3,
.carousel-card-btn.btn-box3 span {
  color: #3733ba;
}

/* Box 5: Em Breve em Laranja #f6611d */
.carousel-card-btn.btn-box5,
.carousel-card-btn.btn-box5 span {
  color: #f6611d;
}

.carousel-card-btn.btn-embreve:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateX(-50%);
}

.carousel-card-btn.btn-embreve:active {
  transform: translateX(-50%);
  box-shadow: none;
}

.carousel-card-btn span {
  color: inherit;
  line-height: 1;
}

.carousel-card-btn .btn-arrow {
  width: 12px;
  height: 12px;
  object-fit: contain;
  display: inline-block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-card-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.card-label,
.carousel-card-title {
  display: none;
}

/* ==========================================================================
   7. Responsive Design
   ========================================================================= */

/* Tablet (810px to 1199px) */
@media (min-width: 810px) and (max-width: 1199px) {
  .carousel-section {
    height: calc(100vh - 75px);
    min-height: 480px;
  }
}

/* Mobile (max-width 809px) */
@media (max-width: 809px) {
  .carousel-section {
    height: 100vh;
    min-height: 480px;
  }

  /* Na versão celular, o texto em movimento fica na parte de cima */
  .marquee-section {
    top: 0;
    bottom: auto;
    transform: none;
    padding: 20px 0 10px;
    z-index: 10;
  }

  .marquee-text {
    font-size: clamp(20px, 5.5vw, 30px);
    line-height: 1.25;
    padding: 2px 0;
  }

  .marquee-separator {
    margin: 0 16px;
    font-size: clamp(14px, 3.5vw, 20px);
  }
  
  .carousel-ring, .carousel-track, .carousel-card {
    width: 185px;
    height: 255px;
  }
}
