/* ==========================================================================
   LEAL SHOW TV - INTERNATIONAL LUXURY CINEMATIC DESIGN SYSTEM
   Refined UI/UX Design System for Premium Visual Production Studio
   ========================================================================== */

/* Fonts: Bebas Neue (display/hero) + Inter (corpo) + Cormorant Garamond (editorial)
   Carregadas via <link> no HTML (non-blocking) para não bloquear o render */

:root {
  /* Color Palette — Preserved Visual Identity */
  --bg-primary: #08080a;
  --bg-secondary: #0f1014;
  --bg-card: rgba(22, 23, 28, 0.65);
  --bg-card-hover: rgba(30, 32, 39, 0.85);
  --bg-glass: rgba(8, 8, 10, 0.76);
  
  --accent-gold: #c5a47e;
  --accent-gold-hover: #e5cbab;
  --accent-gold-glow: rgba(197, 164, 126, 0.16);
  --accent-light: #f5f4f0;
  --text-muted: #9fa6b2;
  --text-dark: #121316;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(197, 164, 126, 0.28);
  
  /* Fonts — Identidade Tipográfica Cinematic */
  --font-display:   'Bebas Neue', 'Impact', sans-serif;     /* Títulos hero, section tags grandes */
  --font-heading:   'Inter', system-ui, -apple-system, sans-serif; /* Subheadings, nav, botões */
  --font-body:      'Inter', system-ui, -apple-system, sans-serif; /* Corpo de texto */
  --font-editorial: 'Cormorant Garamond', 'Georgia', serif; /* Citações, destaques editoriais */
  
  /* Standardized Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 10px 30px rgba(197, 164, 126, 0.12);
  --shadow-premium: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--accent-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.65;
  background-color: var(--bg-primary);
  background-image: url('../imagens/site-bg-desktop.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--accent-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Mobile: disable fixed background for iOS performance */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* Ambient Radial Glow Layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(197, 164, 126, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 164, 126, 0.035) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Cinematic Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Standardized Container Grid */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Translucent Section Overlays for Immersive Global Background */
.about-section,
.stats-section,
.portfolio-section,
.casting-talent-section,
.services-section,
.team-section,
.testimonials-section,
.faq-section,
.contact-section {
  position: relative;
  background: transparent !important;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  overflow: hidden;
}

.about-section::before,
.stats-section::before,
.portfolio-section::before,
.casting-talent-section::before,
.services-section::before,
.team-section::before,
.testimonials-section::before,
.faq-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.82) 0%, rgba(8, 9, 12, 0.52) 50%, rgba(8, 9, 12, 0.86) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-section .container,
.stats-section .container,
.portfolio-section .container,
.casting-talent-section .container,
.services-section .container,
.team-section .container,
.testimonials-section .container,
.faq-section .container,
.contact-section .container {
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Hierarchy System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #ffffff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  margin-bottom: 48px;
  text-wrap: pretty;
}

/* Button Component Standards */
.btn-primary,
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: #ffffff;
  color: #08080a;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-pill-white:hover {
  transform: translateY(-2px) scale(1.02);
  background: #f8fafc;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
  color: #08080a;
}

.btn-outline,
.btn-pill-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover,
.btn-pill-glass:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

/* Header / Navbar Apple-Style Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(8, 8, 10, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.mobile-nav-cta {
  display: none !important;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  background: none;
  border: none;
  padding: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  background-color: #08080a;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at 50% 50%, rgba(8, 9, 14, 0.35) 0%, rgba(8, 8, 10, 0.85) 65%, #08080a 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.72) 0%, rgba(8, 8, 10, 0.3) 45%, rgba(8, 8, 10, 0.96) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  background: rgba(197, 164, 126, 0.08);
  border: 1px solid rgba(197, 164, 126, 0.22);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-exact {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  text-wrap: balance;
}

.hero-subtitle-exact {
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  text-wrap: pretty;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-socials {
  position: absolute;
  bottom: 40px;
  left: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-socials a {
  transition: var(--transition-fast);
}

.hero-socials a:hover {
  color: var(--accent-gold);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lux);
  background: var(--bg-card);
  height: 520px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 20px;
  text-wrap: balance;
}

.about-content p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition-smooth);
}

.stat-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(30%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.2) 0%, rgba(8, 9, 12, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.stat-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux), 0 0 25px rgba(197, 164, 126, 0.08);
}

.stat-card:hover .stat-card-bg {
  opacity: 0.55;
  transform: scale(1.06);
}

.stat-card-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Portfolio Gallery ("Celebre Nossas Criações") */
.portfolio-section {
  text-align: center;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: #08080a;
  background: #ffffff;
  border-color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Infinite Marquee Train Slider */
.portfolio-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  contain: layout paint;
}

.portfolio-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: marqueeDirect 14s linear infinite;
}

.portfolio-card {
  position: relative;
  width: 290px;
  height: 480px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  cursor: pointer;
  transform: translateZ(0);
  box-shadow: var(--shadow-lux);
}

.portfolio-card img,
.portfolio-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes marqueeDirect {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.portfolio-card:hover img,
.portfolio-card:hover video {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.portfolio-badge {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.portfolio-info {
  text-align: left;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-category {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Global Talents & Casting Section */
.casting-talent-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.casting-talent-bg-shapes::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(197, 164, 126, 0.07);
  box-shadow: 0 0 120px rgba(197, 164, 126, 0.02), inset 0 0 120px rgba(197, 164, 126, 0.02);
}

.casting-talent-bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.casting-talent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.casting-talent-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.casting-talent-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.casting-talent-text {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 540px;
}

.casting-talent-cta {
  display: flex;
  align-items: center;
}

.casting-talent-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lux);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}

.casting-talent-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.casting-talent-image-wrapper:hover img {
  transform: scale(1.04);
}

.casting-talent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.casting-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.casting-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux), 0 0 25px rgba(197, 164, 126, 0.08);
}

.casting-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.casting-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.casting-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: var(--transition-fast);
}

.casting-card:hover .casting-card-arrow {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translate(2px, -2px);
}

.casting-card-val {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.casting-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Services Grid ("Criando Visuais Inesquecíveis") */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.service-img-wrapper {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  gap: 14px;
  color: var(--accent-gold);
}

/* Team Section ("Conheça Nossa Equipe Criativa") */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card {
  position: relative;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) grayscale(0%);
}

.team-info {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.95) 100%);
  text-align: left;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.team-name::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 6px;
}

.team-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Testimonials Section ("O Que Nossos Clientes Dizem") */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

.testimonial-quote {
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: #ffffff;
  color: #08080a;
}

/* FAQs Section */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

/* Contact Section ("Fale Conosco") */
.contact-card {
  background: radial-gradient(circle at top right, rgba(197, 164, 126, 0.08) 0%, rgba(18, 19, 22, 0.9) 70%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  box-shadow: var(--shadow-lux);
}

.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(8, 8, 10, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(197, 164, 126, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #040405;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal Video Lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2005;
  transition: transform 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.15);
}

/* Scroll Reveal System */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atores Modal Fullscreen Overlay */
body.atores-modal-open {
  overflow: hidden;
}

.atores-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.atores-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.atores-modal-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.atores-modal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.atores-modal-brand i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.atores-modal-brand-sub {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.atores-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.atores-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: scale(1.06) rotate(90deg);
}

.atores-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.atores-section {
  padding: 100px 0 120px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.flipbook-wrapper {
  position: relative;
  max-width: 1060px;
  margin: 0 auto 52px;
}

.book-scene {
  perspective: 2400px;
  width: 100%;
}

.book-spread {
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  width: 100%;
  min-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.9), 0 0 1px rgba(255,255,255,0.1);
  background: #08080c;
  position: relative;
}

.page.page-left {
  position: relative;
  min-height: 600px;
  height: 100%;
  overflow: hidden;
  background: #0d0d1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  filter: brightness(0.78) contrast(1.05);
  z-index: 1;
}

.page-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.78) 0%, rgba(8, 9, 12, 0.1) 40%, rgba(8, 9, 12, 0.94) 100%);
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.mag-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.9;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.actor-cover-name {
  position: absolute;
  bottom: 42px;
  left: 24px;
  right: 24px;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.actor-cover-role {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  z-index: 3;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.book-fold {
  width: 8px;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.5) 100%);
  z-index: 5;
}

.page.page-right {
  position: relative;
  min-height: 600px;
  height: 100%;
  background: #f4efe6;
  color: #121316;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 8px 0 20px rgba(0, 0, 0, 0.08);
}

.page-right-inner {
  position: relative;
  z-index: 2;
  padding: 32px 32px 40px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 164, 126, 0.4) transparent;
}

.right-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 19, 22, 0.12);
}

.right-logo {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #121316;
}

.right-date {
  font-size: 0.76rem;
  font-weight: 600;
  color: #75716b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  font-weight: 600;
  color: #1c1b22;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}

.editorial-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(197, 164, 126, 0.4) 0%, rgba(197, 164, 126, 0.1) 100%);
  margin-bottom: 12px;
}

.editorial-bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

.bio-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c7355;
}

.bio-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2b2930;
  font-weight: 400;
}

.right-secondary-photo {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.right-secondary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.page-folio {
  position: absolute;
  bottom: 14px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  z-index: 5;
}

.page-folio-right {
  left: auto;
  right: 24px;
  bottom: 14px;
  color: #75716b;
}

.book-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

.book-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.book-nav-btn:hover:not(:disabled) {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  transform: scale(1.06);
}

/* CARROSSEL HORIZONAL DE CAPAS EM MINIATURA */
.actors-carousel-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 960px;
  margin: 36px auto 0;
  background: rgba(14, 15, 20, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000000;
  transform: scale(1.08);
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1;
  position: relative;
}

.carousel-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.magazine-thumb-card {
  width: 130px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #0f1016;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.mag-thumb-cover-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.mag-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.mag-thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.05) 0%, rgba(8, 9, 12, 0.35) 45%, rgba(8, 9, 12, 0.95) 100%);
  pointer-events: none;
}

.mag-thumb-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(8, 9, 12, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent-gold);
  z-index: 3;
}

.mag-thumb-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  text-align: left;
}

.mag-thumb-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.mag-thumb-edition {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.9;
}

.magazine-thumb-card:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(197, 164, 126, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(197, 164, 126, 0.25);
}

.magazine-thumb-card:hover .mag-thumb-img {
  transform: scale(1.06);
}

.magazine-thumb-card.active {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9), 0 0 25px rgba(197, 164, 126, 0.45);
  transform: translateY(-3px) scale(1.05);
}

.magazine-thumb-card.active .mag-thumb-badge {
  background: var(--accent-gold);
  color: #000;
  border-color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 1400;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: waPulse 4s infinite ease-in-out;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-2px);
  color: #ffffff;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Language Selector Dropdown */
.lang-selector-dropdown {
  position: relative;
  z-index: 1050;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 145px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-selector-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.lang-option-btn:hover,
.lang-option-btn.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
}

/* 3D Coverflow Casting Showcase Modal */
.casting-modal-body {
  background: radial-gradient(circle at 50% 20%, #0e1017 0%, #08090c 55%, #030406 100%) !important;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  padding: 48px 24px 80px;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.casting-content-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.casting-hero-header {
  margin-top: 10px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 780px;
  text-align: center;
}

.casting-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.casting-main-subtitle {
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
  text-wrap: pretty;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.casting-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.casting-bottom-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.atores-modal-top-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.atores-modal-top-links .top-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  cursor: pointer;
}

.atores-modal-top-links .top-link.active {
  color: #ffffff;
  font-weight: 700;
}

.coverflow-3d-stage {
  perspective: 1200px;
  position: relative;
  width: 100%;
  max-width: 1060px;
  height: 440px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-cards-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.coverflow-card {
  position: absolute;
  width: 260px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #0f1016;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.coverflow-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.coverflow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 9, 14, 0.05) 0%, rgba(8, 9, 14, 0.35) 50%, rgba(8, 9, 14, 0.96) 100%);
  pointer-events: none;
}

.coverflow-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 9, 14, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.coverflow-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.coverflow-actor-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.coverflow-actor-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.coverflow-actor-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.coverflow-actor-meta i {
  color: var(--accent-gold);
  font-size: 0.76rem;
}

.coverflow-card.active {
  transform: translateX(0) translateZ(100px) rotateY(0deg) scale(1.1);
  z-index: 10;
  opacity: 1;
  border-color: var(--accent-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(197, 164, 126, 0.25);
}

.coverflow-card.active .coverflow-card-img {
  transform: scale(1.03);
}

.coverflow-card.left-1 { transform: translateX(-190px) translateZ(0) rotateY(22deg) scale(0.88); z-index: 5; opacity: 0.82; filter: brightness(0.7); }
.coverflow-card.left-2 { transform: translateX(-340px) translateZ(-100px) rotateY(35deg) scale(0.72); z-index: 2; opacity: 0.45; filter: brightness(0.4); }
.coverflow-card.right-1 { transform: translateX(190px) translateZ(0) rotateY(-22deg) scale(0.88); z-index: 5; opacity: 0.82; filter: brightness(0.7); }
.coverflow-card.right-2 { transform: translateX(340px) translateZ(-100px) rotateY(-35deg) scale(0.72); z-index: 2; opacity: 0.45; filter: brightness(0.4); }
.coverflow-card.hidden { opacity: 0; pointer-events: none; transform: scale(0.5); z-index: 0; }

.coverflow-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #000000;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 164, 126, 0.3);
  transition: var(--transition-fast);
}

.coverflow-nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: #ffffff;
  color: #000000;
}

.coverflow-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.coverflow-nav-btn.prev { left: 16px; }
.coverflow-nav-btn.next { right: 16px; }

.btn-casting-red, .btn-casting-red-lg, .btn-casting-red-sm {
  background: var(--accent-gold);
  color: #000000;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(197, 164, 126, 0.25);
}

.btn-casting-red:hover, .btn-casting-red-lg:hover, .btn-casting-red-sm:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
}

.btn-casting-red-outline {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-casting-red-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   UNIFIED RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .container {
    padding: 0 24px;
  }

  .about-grid,
  .casting-talent-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    height: 420px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casting-talent-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .casting-talent-image-wrapper {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .casting-talent-content {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Header & Navigation Fixes for Mobile */
  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .logo {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .nav-cta-btn {
    display: none !important; /* Hide header CTA in top bar on mobile for clean, uncluttered layout */
  }

  .lang-selector-btn {
    padding: 5px 9px;
    height: 36px;
    font-size: 0.78rem;
    gap: 5px;
  }

  .lang-flag-img {
    width: 18px;
    height: 13px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
  }

  .mobile-toggle:active {
    background: rgba(255, 255, 255, 0.18);
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 9, 12, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  }

  .nav-links li a {
    font-size: 1rem;
    display: block;
    padding: 8px 0;
  }

  .mobile-nav-cta {
    display: block !important;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-cta .btn-pill-white {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
  }

  /* Hero Section Mobile Perfection */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 105px 16px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-badge-pill {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    margin-bottom: 18px;
    max-width: 95%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-title-exact {
    font-size: clamp(1.45rem, 6.2vw, 2.1rem);
    line-height: 1.22;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  /* Hide hardcoded desktop line breaks in title on mobile */
  .hero-title-exact br {
    display: none;
  }

  /* Hero Video: reframe for mobile portrait */
  .hero-video-bg {
    object-position: 60% center;
  }

  .hero-subtitle-exact {
    font-size: clamp(0.88rem, 3.6vw, 1.02rem);
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 92%;
    color: rgba(255, 255, 255, 0.85);
    text-wrap: pretty;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
    margin: 0 auto;
    align-items: stretch;
  }

  .hero-cta-group .btn-pill-white,
  .hero-cta-group .btn-pill-glass {
    width: 100%;
    height: 52px;
    min-height: 44px;
    font-size: 0.93rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-pill);
    box-sizing: border-box;
    white-space: nowrap;
  }

  .hero-socials {
    position: relative;
    inset: auto;
    bottom: auto;
    left: auto;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-socials span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    opacity: 0.8;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    text-align: center;
  }

  .hero-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition-fast);
  }

  .hero-socials a:active {
    background: rgba(197, 164, 126, 0.25);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
  }

  .stats-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-card {
    height: 380px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .atores-modal-top-links {
    display: none;
  }

  /* Atores / Casting Coverflow Mobile Perfection */
  .atores-modal-bar {
    padding: 12px 16px;
  }

  .atores-modal-brand {
    font-size: 0.95rem;
  }

  .atores-modal-brand-sub {
    font-size: 0.8rem;
  }

  .btn-casting-red-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .atores-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .casting-modal-body {
    padding: 24px 16px 50px;
    justify-content: flex-start;
  }

  .casting-hero-header {
    margin-top: 4px;
    margin-bottom: 20px;
  }

  .casting-main-title {
    font-size: clamp(1.55rem, 5.8vw, 2.1rem);
  }

  .casting-main-subtitle {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .casting-hero-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 290px;
    gap: 10px;
    margin: 0 auto 20px;
  }

  .btn-casting-red,
  .btn-casting-red-outline {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  .coverflow-3d-stage {
    height: 350px;
    margin: 10px auto 30px;
  }

  .coverflow-card {
    width: 200px;
    height: 300px;
    border-radius: 14px;
  }

  .coverflow-card-info {
    padding: 16px 12px 14px;
    gap: 4px;
  }

  .coverflow-actor-name {
    font-size: 1.02rem;
  }

  .coverflow-actor-meta {
    font-size: 0.75rem;
    gap: 10px;
  }

  .coverflow-card.active {
    transform: translateX(0) translateZ(50px) scale(1.06);
  }

  .coverflow-card.left-1 {
    transform: translateX(-105px) translateZ(0) rotateY(16deg) scale(0.82);
    opacity: 0.75;
    filter: brightness(0.65);
  }

  .coverflow-card.right-1 {
    transform: translateX(105px) translateZ(0) rotateY(-16deg) scale(0.82);
    opacity: 0.75;
    filter: brightness(0.65);
  }

  .coverflow-card.left-2,
  .coverflow-card.right-2 {
    opacity: 0;
    pointer-events: none;
  }

  .coverflow-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .coverflow-nav-btn.prev { left: 4px; }
  .coverflow-nav-btn.next { right: 4px; }

  /* Ensure all tap targets meet 44px minimum */
  .filter-btn,
  .faq-question,
  .slider-btn,
  .book-nav-btn {
    min-height: 44px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  /* Section title mobile safety */
  .section-title {
    word-break: break-word;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .about-section,
  .stats-section,
  .portfolio-section,
  .casting-talent-section,
  .services-section,
  .team-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 3.5rem 0;
  }

  .atores-modal-brand-sub {
    display: none;
  }

  .btn-casting-red-sm {
    display: none;
  }

  .coverflow-3d-stage {
    height: 320px;
  }

  .coverflow-card {
    width: 180px;
    height: 275px;
  }

  .coverflow-card.left-1 {
    transform: translateX(-88px) scale(0.78);
    opacity: 0.65;
  }

  .coverflow-card.right-1 {
    transform: translateX(88px) scale(0.78);
    opacity: 0.65;
  }

  .coverflow-actor-name {
    font-size: 0.95rem;
  }

  .coverflow-actor-meta {
    font-size: 0.7rem;
    gap: 8px;
  }

  .hero {
    padding: 95px 14px 28px;
  }

  .hero-title-exact {
    font-size: clamp(1.38rem, 7vw, 1.85rem);
    line-height: 1.2;
  }

  .hero-subtitle-exact {
    font-size: 0.9rem;
    margin-bottom: 22px;
    max-width: 96%;
  }

  .hero-cta-group {
    max-width: 300px;
    gap: 10px;
  }

  .hero-cta-group .btn-pill-white,
  .hero-cta-group .btn-pill-glass {
    height: 48px;
    min-height: 44px;
    font-size: 0.9rem;
  }

  .hero-socials {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-socials a {
    width: 44px;
    height: 44px;
    font-size: 0.92rem;
  }

  .stat-card {
    height: 260px;
    padding: 24px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .casting-card {
    padding: 24px;
  }

  /* Portfolio cards slightly smaller on small screens */
  .portfolio-card {
    width: 230px;
    height: 370px;
  }

  /* Container minimal padding */
  .container {
    padding: 0 12px;
  }
}

/* ==========================================================================
   BREAKPOINT 375px — iPhone SE / Standard / Android Médio
   Preenche a lacuna entre 320px e 480px para telas médias pequenas
   ========================================================================== */
@media (max-width: 375px) {
  .hero {
    padding: 90px 12px 24px;
  }

  .hero-title-exact {
    font-size: clamp(1.28rem, 7.5vw, 1.65rem);
    line-height: 1.22;
  }

  .hero-subtitle-exact {
    font-size: 0.87rem;
    max-width: 100%;
  }

  .hero-cta-group {
    max-width: 280px;
  }

  .hero-cta-group .btn-pill-white,
  .hero-cta-group .btn-pill-glass {
    height: 46px;
    font-size: 0.88rem;
    padding: 0 18px;
  }

  .hero-socials {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-socials a {
    width: 42px;
    height: 42px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .portfolio-card {
    width: 210px;
    height: 340px;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .casting-talent-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem);
  }

  .about-image-wrapper {
    height: 300px;
  }

  .team-card {
    height: 320px;
  }

  .stat-card {
    height: 240px;
    padding: 20px;
  }

  .stat-number {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   BREAKPOINT 320px — iPhone 5/SE 1ª Geração / Android Antigo
   ========================================================================== */
@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 88px 10px 20px;
  }

  .hero-title-exact {
    font-size: clamp(1.18rem, 8vw, 1.5rem);
  }

  .hero-cta-group {
    max-width: 260px;
  }

  .hero-cta-group .btn-pill-white,
  .hero-cta-group .btn-pill-glass {
    height: 44px;
    font-size: 0.85rem;
    padding: 0 14px;
  }

  .logo {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .portfolio-card {
    width: 195px;
    height: 310px;
  }

  .stat-card {
    height: 220px;
    padding: 18px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 0.93rem;
    padding: 16px 14px;
  }
}

/* ==========================================================================
   MAGAZINE FLIPBOOK — Responsivo Mobile
   No mobile, exibe apenas a página esquerda (capa) em coluna única
   ========================================================================== */
@media (max-width: 768px) {
  .book-spread {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 16px;
  }

  .book-fold {
    display: none;
  }

  .page.page-left {
    min-height: 420px;
    height: 420px;
    border-radius: 16px 16px 0 0;
  }

  .page.page-right {
    display: flex;
    min-height: auto;
    border-radius: 0 0 16px 16px;
    box-shadow: none;
  }

  .page-right-inner {
    padding: 24px 20px 32px;
  }

  .magazine-thumb-card {
    width: 110px;
    height: 148px;
    border-radius: 12px;
  }

  .mag-thumb-title {
    font-size: 0.78rem;
  }

  .mag-thumb-edition {
    font-size: 0.62rem;
  }

  .actors-carousel-pill {
    padding: 12px 14px;
    border-radius: 20px;
    max-width: 100%;
    margin-top: 24px;
  }
}

/* ==========================================================================
   SPONSORS SECTION — Infinite-Scroll Carousel
   Mesma técnica do portfólio: display:flex + gap + width:max-content
   14 itens no HTML (7 originais + 7 cópias) → translate3d(-50%) faz loop
   ========================================================================== */

@keyframes sponsors-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.sponsors-section {
  background: transparent;
  padding: 56px 0;
  position: relative;
}

/* Gold hairline */
.sponsors-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(197, 164, 126, 0.18) 15%,
    rgba(197, 164, 126, 0.32) 50%,
    rgba(197, 164, 126, 0.18) 85%,
    transparent 100%
  );
  margin-bottom: 40px;
}

/* Header */
.sponsors-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}

.sponsors-eyebrow {
  font-family: var(--font-heading, 'Syne', sans-serif);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent-gold, #c5a47e);
  opacity: 0.7;
  margin: 0 0 8px;
  line-height: 1;
}

.sponsors-sub {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
  line-height: 1.5;
}

/* Wrapper — recorta o trilho e aplica fade lateral */
.sponsors-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;                /* espaço para sombras não serem cortadas */
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  contain: layout paint;
}

/* Trilho rolante — idêntico ao .portfolio-marquee-track */
.sponsors-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: sponsors-scroll 32s linear infinite;
}

/* Pausa no hover */
.sponsors-track-wrapper:hover .sponsors-track {
  animation-play-state: paused;
}

/* Card do patrocinador — mesma estrutura do .portfolio-card */
.sponsor-item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 188px;
  padding: 24px 36px;
  cursor: pointer;
  /* Estilo card */
  background: var(--bg-card, rgba(22, 23, 28, 0.65));
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-lg, 20px);
  box-shadow: var(--shadow-lux, 0 20px 50px rgba(0, 0, 0, 0.75));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform    0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow   0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover do card — levita + brilho dourado */
.sponsor-item:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    var(--shadow-lux, 0 20px 50px rgba(0, 0, 0, 0.75)),
    0 0 30px rgba(197, 164, 126, 0.22);
  border-color: rgba(197, 164, 126, 0.38);
}

/* Logo */
.sponsor-logo {
  display: block;
  height: 140px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  opacity: 0.72;
  filter: brightness(1.05);
  transition:
    opacity   0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  user-select: none;
}

/* Hover do logo — opacidade total + glow dourado */
.sponsor-item:hover .sponsor-logo {
  opacity: 1;
  transform: scale(1.07);
  filter: brightness(1.25) drop-shadow(0 0 20px rgba(197, 164, 126, 0.50));
}

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .sponsors-section { padding: 48px 0; }

  .sponsor-item {
    height: 160px;
    padding: 20px 28px;
  }

  .sponsor-logo {
    height: 118px;
    max-width: 190px;
  }

  .sponsors-track { animation-duration: 28s; }
}

/* Mobile ≤640px */
@media (max-width: 640px) {
  .sponsors-section { padding: 40px 0; }

  .sponsors-section::before { margin-bottom: 28px; }

  .sponsors-header { margin-bottom: 24px; }

  .sponsor-item {
    height: 122px;
    padding: 16px 22px;
    border-radius: var(--radius-md, 16px);
  }

  .sponsor-logo {
    height: 88px;
    max-width: 150px;
  }

  .sponsors-track {
    gap: 16px;
    animation-duration: 22s;
  }
}

/* Acessibilidade — prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .sponsors-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 24px;
  }

  .sponsor-item[aria-hidden="true"] { display: none; }

  .sponsor-item { height: auto; }
}



/* ==========================================================================
   PREMIUM CUSTOM CURSOR EFFECT (Desktop Only)
   ========================================================================== */
.custom-cursor-dot,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 164, 126, 0.8);
}

.custom-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent-gold);
  background-color: rgba(197, 164, 126, 0.04);
  box-shadow: 0 0 15px rgba(197, 164, 126, 0.12);
}

/* Hover Active / Magnetic Effect */
body.cursor-hover .custom-cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--accent-gold-hover);
  background-color: rgba(197, 164, 126, 0.14);
  box-shadow: 0 0 25px rgba(197, 164, 126, 0.3);
}

body.cursor-hover .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(1.4);
  background-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* Hide on Touch / Mobile Devices */
@media (hover: none), (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

