/* ============================================
   M5 ARMAS E MUNIÇÕES - GECO AMMUNITION
   Visual Cinematográfico - Estilo Sniper
   ============================================ */

:root {
  --font-body: 'Roboto', Arial, sans-serif;
  --font-heading: 'Lato', 'Roboto', Arial, sans-serif;
  
  /* Cores Principais */
  --color-primary: #f9bf17;
  --color-geco-red: #E31E24;
  --color-cta: #E31E24;
  
  /* Tons Escuros (Cinematográfico) */
  --color-black: #0a0a0a;
  --color-dark: #111111;
  --color-darker: #1a1a1a;
  --color-gray-dark: #2a2a2a;
  --color-gray: #444444;
  --color-gray-light: #888888;
  --color-light: #ffffff;
  --color-off-white: #f5f5f5;
}

/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-light);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: #f0f0f0;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-logo {
  height: 24px;
  width: auto;
}

.top-bar-tagline {
  background: none;
  color: #1a1a1a;
  padding: 1px 9px;
  font-weight: 700;
}

.top-bar-geco {
  color: #E31E24;
  font-weight: 700;
}

.top-bar-flags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 5px;
}

/* Mobile top-bar - oculto no desktop */
.top-bar-mobile {
  display: none;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ============================================
   NAVBAR
   ============================================ */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 12px 0;
  top: 44px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.custom-navbar.shrink {
  padding: 6px 0;
  top: 0 !important;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Navbar Layout - Logo Esquerda, Menu Direita */
.navbar-container-new {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px !important;
}

.navbar-brand-left {
  flex-shrink: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.navbar-brand-left img,
.navbar-brand-left .navbar-geco-logo {
  height: 71px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar-geco-slogan {
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  white-space: nowrap;
}

.custom-navbar.shrink .navbar-brand-left img,
.custom-navbar.shrink .navbar-geco-logo { 
  height: 44px; 
}

.custom-navbar.shrink .navbar-geco-slogan {
  font-size: 0.75rem;
}

.custom-navbar.shrink .nav-link {
  font-size: 0.78rem;
  padding: 8px 10px !important;
}

.navbar-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 15px;
}

/* Logo M5 no menu - centralizado entre os itens */
.nav-link-logo {
  padding: 5px 20px !important;
  display: flex;
  align-items: center;
}

.nav-m5-icon {
  height: 38px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(249, 191, 23, 0.3));
}

.nav-m5-icon:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(249, 191, 23, 0.5));
}

.custom-navbar.shrink .nav-m5-icon {
  height: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 15px !important;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-geco-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover { 
  color: var(--color-geco-red) !important;
}

.btn-nav-cta {
  background-color: #E31E24 !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  margin-left: 15px;
  border-radius: 2px;
  border: 2px solid #E31E24 !important;
}

.btn-nav-cta::after {
  display: none;
}

.btn-nav-cta:hover {
  background-color: #ffffff !important;
  color: #E31E24 !important;
  border: 2px solid #E31E24 !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 1px solid rgba(0,0,0,0.3);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO CINEMATOGRÁFICO - ESTILO TARANTINO
   ============================================ */
.hero-cinematic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
  margin-top: 44px;
  overflow: hidden;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../images/m5/bg.png') center center / cover no-repeat fixed;
  filter: grayscale(25%) contrast(1.1);
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.9) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* Efeito de grão de filme */
.hero-grain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 1000px;
}

/* Capítulo estilo Tarantino */
.hero-chapter {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #fff;
  background: var(--color-geco-red);
  padding: 4px 14px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 30px;
  line-height: 1;
}

.hero-title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--color-light);
  text-transform: uppercase;
  line-height: 1;
}

.hero-title-line .accent {
  color: var(--color-geco-red);
  text-shadow: 
    0 0 40px rgba(227, 30, 36, 0.5),
    0 0 80px rgba(227, 30, 36, 0.3);
}

.hero-tagline-box {
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-stats-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stats-inline strong {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-stats-inline .separator {
  color: var(--color-geco-red);
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SISTEMA DE BOTÕES PADRONIZADO
   Proporção: largos, altura fixa, consistentes
   ============================================ */

/* Base para todos os botões */
.btn-base {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Tamanho padrão - usado na maioria dos lugares */
/* Estilo padrão - Preenchimento vermelho GECO, fonte branca */
.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-slim,
.btn-login-slim,
.btn-play-hino {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  height: 42px;
  padding: 0 50px;
  min-width: 280px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #E31E24;
  color: #ffffff;
  border: 2px solid #E31E24;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover padrão - Fundo branco, contorno e fonte vermelho GECO */
.btn-cta-primary:hover,
.btn-cta-secondary:hover,
.btn-cta-slim:hover,
.btn-login-slim:hover,
.btn-play-hino:hover {
  background: #ffffff;
  border: 2px solid #E31E24;
  color: #E31E24;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

/* Botão Amarelo - agora segue padrão vermelho */
.btn-cta-yellow {
  background: #E31E24;
  color: #ffffff;
  border: 2px solid #E31E24;
}

/* Barra inferior do hero */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-geco-red);
  padding: 12px 20px;
  z-index: 10;
}

.bottom-bar-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-light);
  text-transform: uppercase;
  display: block;
  text-align: center;
}

/* ============================================
   MARCADOR DE CAPÍTULO - ESTILO TARANTINO
   ============================================ */
.chapter-marker {
  text-align: center;
  padding: 30px 20px 15px;
  background: var(--color-black);
  position: relative;
}

.chapter-marker.light {
  background: var(--color-dark);
}

/* Arsenal Header - decoração */
.chapter-marker.arsenal-header {
  margin-top: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}


.chapter-marker.arsenal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../images/m5/geco-ammo-display.png') center center no-repeat;
  background-size: cover;
  opacity: 0.12;
  filter: grayscale(20%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.chapter-marker.arsenal-header:hover::before {
  opacity: 0.3;
  filter: grayscale(10%) brightness(1.1);
}

.chapter-marker.arsenal-header > * {
  position: relative;
  z-index: 1;
}

.arsenal-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.arsenal-geco-logo {
  height: 210px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(227, 30, 36, 0.3));
}

/* Título e subtítulo do Arsenal */
.arsenal-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.arsenal-flag-small {
  width: 48px;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

/* Chapter marker em fundo claro */
.chapter-marker-light {
  background: transparent;
  padding: 30px 20px 15px;
}

.chapter-title-dark {
  color: #1a1a1a !important;
}

.arsenal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.arsenal-title .accent {
  color: var(--color-geco-red);
}

.arsenal-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* ============================================
   SISTEMA DE TÍTULOS PADRONIZADO
   ============================================ */
.chapter-marker {
  text-align: center;
  margin-bottom: 50px;
}

.chapter-number {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  background: var(--color-geco-red);
  padding: 4px 14px;
  margin-bottom: 30px;
  text-transform: uppercase;
  opacity: 1;
}

.chapter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 4px;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1.1;
}

.chapter-title .accent {
  color: var(--color-geco-red);
}

/* ============================================
   SEÇÃO A LENDA (História GECO) - TARANTINO
   ============================================ */
.section-legend {
  background: var(--color-black);
  padding: 0 0 100px;
  position: relative;
}

.legend-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Layout vertical - vídeo em cima, texto embaixo */
.legend-video-center {
  max-width: 800px;
  margin: 0 auto 50px;
}

.legend-text-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.legend-text-center .typewriter-text {
  text-align: left;
}

.legend-text-center .legend-quote {
  text-align: left;
}

.legend-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  border: 4px solid var(--color-light);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-gray-light);
  text-transform: uppercase;
  text-align: center;
  margin-top: 15px;
}

.legend-text {
  color: var(--color-gray-light);
}

.typewriter-text {
  margin-bottom: 30px;
}

.legend-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.legend-intro {
  font-size: 1.3rem;
  color: var(--color-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.legend-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

.legend-text .highlight {
  color: var(--color-geco-red);
  font-weight: 700;
}

.legend-quote {
  background: rgba(227, 30, 36, 0.1);
  border-left: 4px solid var(--color-geco-red);
  padding: 25px 30px;
  margin: 30px 0;
  position: relative;
}

.legend-quote .quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-geco-red);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}

.legend-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-light);
  margin: 0 0 10px;
  padding-left: 30px;
}

.legend-quote cite {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-geco-red);
  font-style: normal;
  padding-left: 30px;
}

.legend-tagline {
  font-size: 1rem;
  color: var(--color-gray-light);
}

.legend-tagline strong {
  color: var(--color-primary);
}

.geco-brand-link {
  color: var(--color-geco-red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.geco-brand-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ============================================
   SEÇÃO SOBRE M5 - NOVO LAYOUT COM MAPA
   ============================================ */
/* Seção antiga - desativada */
.section-about {
  display: none;
}

/* ============================================
   SEÇÃO M5 - SIMPLES (3 elementos)
   ============================================ */
.section-m5-simple {
  background: var(--color-black);
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

.m5-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.25;
  filter: grayscale(30%);
}

.m5-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Conteúdo: Logo M5 + Badge + Logo GECO */
.m5-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.m5-top-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: -30px;
}

.m5-logo-main {
  display: block;
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(249, 191, 23, 0.4));
}

.m5-geco-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.m5-geco-logo {
  display: block;
  height: 400px;
  width: auto;
  opacity: 0.9;
}

.m5-geco-slogan {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  margin: 0;
}

@keyframes m5LogoGlow {
  0% { filter: drop-shadow(0 0 15px rgba(249, 191, 23, 0.3)); }
  100% { filter: drop-shadow(0 0 35px rgba(249, 191, 23, 0.6)); }
}

.m5-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--color-light);
  border: 2px solid var(--color-primary);
  padding: 14px 40px;
  text-transform: uppercase;
}

/* Header com Logos */
.about-header {
  background: var(--color-black);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-m5 {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(249, 191, 23, 0.3));
}

.logo-geco {
  height: 50px;
  width: auto;
}

/* Main Content */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.about-content-area {
  background: var(--color-primary);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-desc {
  color: var(--color-dark);
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-desc strong {
  font-weight: 700;
}

/* Área do Mapa */
.about-map-area {
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.mapa-brasil-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.map-label {
  margin-top: 15px;
  text-align: center;
}

.map-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--color-dark);
  text-transform: uppercase;
}

.about-grid-new {
  display: none;
}

/* Coluna Logo */
.about-col-logo {
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 30px;
}

.about-logo-wrapper {
  position: relative;
}

.about-logo {
  max-width: 180px;
  filter: drop-shadow(0 0 30px rgba(249, 191, 23, 0.3));
  transition: all 0.4s ease;
}

.about-logo:hover {
  filter: drop-shadow(0 0 50px rgba(249, 191, 23, 0.5));
  transform: scale(1.05);
}

.about-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--color-light);
  border: 2px solid var(--color-primary);
  padding: 10px 25px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 191, 23, 0.2), transparent);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Coluna Conteúdo */
.about-col-content {
  background: var(--color-primary);
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-location {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--color-dark);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-text {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--color-dark);
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-text strong {
  font-weight: 700;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.feature-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-light);
  background: var(--color-dark);
  padding: 10px 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-tag:hover {
  background: var(--color-geco-red);
  border-color: var(--color-geco-red);
}

/* Coluna Mapa */
.about-col-map {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
}

.brasil-map-container {
  text-align: center;
  position: relative;
}

/* Mapa do Brasil estilizado com CSS */
.brasil-map-visual {
  width: 160px;
  height: 180px;
  position: relative;
  margin: 0 auto 25px;
}

.map-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #f9bf17;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  animation: mapGlow 2s ease-in-out infinite alternate;
}

@keyframes mapGlow {
  0% { box-shadow: 0 0 20px rgba(249, 191, 23, 0.3); }
  100% { box-shadow: 0 0 40px rgba(249, 191, 23, 0.6); }
}

/* Regiões representadas */
.region {
  position: absolute;
  background: rgba(249, 191, 23, 0.15);
  border-radius: 50%;
}

.region.norte {
  width: 50px;
  height: 40px;
  top: 15%;
  left: 25%;
}

.region.nordeste {
  width: 45px;
  height: 50px;
  top: 20%;
  right: 10%;
  border-radius: 40% 60% 50% 50%;
}

.region.centro {
  width: 60px;
  height: 45px;
  top: 45%;
  left: 20%;
}

.region.sudeste {
  width: 40px;
  height: 35px;
  bottom: 25%;
  right: 25%;
  background: rgba(227, 30, 36, 0.2);
}

.region.sul {
  width: 35px;
  height: 30px;
  bottom: 10%;
  left: 35%;
}

/* Ponto da sede */
.map-point-sede {
  position: absolute;
  bottom: 28%;
  right: 30%;
  width: 20px;
  height: 20px;
}

.point-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(227, 30, 36, 0.4);
  border-radius: 50%;
  animation: pointPulse 1.5s ease-out infinite;
}

@keyframes pointPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.point-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #E31E24;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 15px rgba(227, 30, 36, 0.8);
}

/* Linhas de distribuição */
.map-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #f9bf17, transparent);
  transform-origin: left center;
  animation: lineFlow 2s ease-in-out infinite;
}

.line-1 {
  width: 60px;
  bottom: 28%;
  right: 35%;
  transform: rotate(-45deg);
}

.line-2 {
  width: 50px;
  bottom: 30%;
  right: 40%;
  transform: rotate(-120deg);
}

.line-3 {
  width: 70px;
  bottom: 35%;
  right: 30%;
  transform: rotate(20deg);
}

.line-4 {
  width: 55px;
  bottom: 25%;
  right: 38%;
  transform: rotate(160deg);
}

@keyframes lineFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.map-label {
  text-align: center;
}

.map-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.map-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-dark);
  opacity: 0.7;
}

/* ============================================
   SEÇÃO MANIFESTO — A LEI DA NATUREZA
   ============================================ */
.section-manifesto {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Fundo — imagem dos atiradores, P&B com leve dessaturação */
.manifesto-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: grayscale(0.85) brightness(0.85) contrast(1.1);
  z-index: 1;
}

/* Overlay escuro para garantir leitura */
.manifesto-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.80) 100%
  );
  z-index: 2;
}

/* Vinheta pesada — foco nos atiradores centrais */
.manifesto-vignette {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(
    ellipse 65% 60% at 60% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.75) 70%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Tigre — background cinematográfico na área do título */
/* Tigre — foco nos olhos e dentes, fundido com o fundo */
.manifesto-tiger {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 70%;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  filter: grayscale(0.35) brightness(1.05) contrast(2.4);
  z-index: 1;
  mask-image: radial-gradient(
    ellipse 55% 50% at 50% 40%,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.75) 45%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 55% 50% at 50% 40%,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 45%,
    transparent 75%
  );
}

/* ── Overlay olhos + presas (mesma posição do tigre) ── */
.manifesto-tiger-eyes {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 70%;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  filter: brightness(1) contrast(1);
  transition: opacity 0.8s ease-out, filter 0.8s ease-out;
  mask-image: radial-gradient(
    ellipse 55% 50% at 50% 40%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.8) 45%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 55% 50% at 50% 40%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.8) 45%,
    transparent 75%
  );
}

/* Estado ativo — olhos e presas acesos */
.manifesto-tiger-eyes.roar-active {
  opacity: 1;
  filter: brightness(1.8) contrast(1.4) drop-shadow(0 0 15px rgba(255, 120, 0, 0.55)) drop-shadow(0 0 30px rgba(227, 30, 36, 0.3));
  transition: opacity 0.3s ease-in, filter 0.3s ease-in;
}

/* Feathering extra — todas as bordas se fundem suave com o preto */
.manifesto-tiger::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(
      ellipse 60% 55% at 50% 40%,
      transparent 0%,
      transparent 35%,
      rgba(0,0,0,0.6) 60%,
      #000 85%
    );
  pointer-events: none;
}

/* Conteúdo do manifesto */
.manifesto-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 80px 40px;
  text-align: center;
}

/* Chapter marker do manifesto — sem fundo retangular */
.manifesto-chapter-marker {
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
  background: transparent;
}

/* Título principal — idêntico ao chapter-title padrão */
.manifesto-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 3px;
  margin: 0;
}

.manifesto-title .accent {
  color: var(--color-geco-red);
}

/* Botão de som — alto-falante */
.btn-manifesto-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px auto 0;
  padding: 0;
  outline: none;
}

.btn-manifesto-sound:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-manifesto-sound.playing {
  border-color: var(--color-geco-red);
  color: var(--color-geco-red);
  animation: soundPulse 1.2s ease-in-out infinite;
}

@keyframes soundPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(227, 30, 36, 0); }
}

/* Subtítulo — padrão cinema-subtitle */
.manifesto-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 30px auto 40px;
  max-width: 620px;
  position: relative;
  padding: 0 20px;
}

.manifesto-subtitle::before {
  display: none;
}

/* Tagline — frase de apoio devastadora */
.manifesto-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 auto 50px;
  max-width: 620px;
}

/* Corpo do texto */
.manifesto-body {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.manifesto-body p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

/* Frase final — "E você?" */
.manifesto-closing {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-align: center;
  font-style: italic;
  letter-spacing: 1px !important;
}

.manifesto-closing strong {
  color: var(--color-geco-red);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ── Tarjado branco + marca GECO vermelho ── */
.tarjado-branco {
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  padding: 2px 8px;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.geco-brand {
  color: #E31E24;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

/* ── Texto dinâmico abaixo do CTA (aparece ao tocar áudio) ── */
.manifesto-audio-tagline {
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.manifesto-audio-tagline.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* CTA — Botão de ação */
.btn-manifesto-cta {
  display: inline-block;
  margin-top: 45px;
  padding: 16px 48px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--color-geco-red);
  border: 2px solid var(--color-geco-red);
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-manifesto-cta:hover {
  background: transparent;
  color: var(--color-geco-red);
  border-color: var(--color-geco-red);
}

/* Responsivo — Manifesto */
@media (max-width: 768px) {
  .section-manifesto {
    min-height: auto;
    padding: 20px 0;
  }

  .manifesto-tiger {
    width: 540px;
    height: 55%;
  }

  .manifesto-tiger-eyes {
    width: 540px;
    height: 55%;
  }

  .manifesto-content {
    padding: 60px 25px;
  }

  .manifesto-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .manifesto-tagline {
    font-size: 0.75rem !important;
    letter-spacing: 3px;
  }

  .manifesto-body p {
    font-size: 0.95rem;
  }

  .btn-manifesto-cta {
    padding: 14px 35px;
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .btn-manifesto-sound {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .manifesto-tiger {
    width: 380px;
    height: 48%;
  }

  .manifesto-tiger-eyes {
    width: 380px;
    height: 48%;
  }

  .manifesto-content {
    padding: 50px 18px;
  }

  .manifesto-subtitle {
    font-size: 0.85rem;
    padding: 0 5px;
  }

  .manifesto-tagline {
    font-size: 0.65rem !important;
    letter-spacing: 2px;
  }

  .manifesto-body p {
    font-size: 0.88rem;
  }

  .manifesto-closing {
    font-size: 0.95rem !important;
  }

  .btn-manifesto-cta {
    padding: 12px 28px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .btn-manifesto-sound {
    width: 34px;
    height: 34px;
  }
}

/* ============================================
   SEÇÃO CINEMA BREAK - ESTILO THRILLER
   ============================================ */
.section-cinema-break {
  min-height: 80vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cinema-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%) contrast(1.05) brightness(0.45) saturate(0.75) sepia(10%);
  opacity: 0.5;
  transition: opacity 1.8s ease-in-out;
}
/* Bandeira some quando um slide está ativo */
.cinema-bg.slide-hidden {
  opacity: 0;
}

/* ── Slideshow cinematográfico sincronizado com o hino ── */
.cinema-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(10%) contrast(1.08) brightness(0.52) saturate(0.82) sepia(8%);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.cinema-slide.active {
  opacity: 0.72;
}

/* Sangria — bordas do slide se dissolvem no fundo escuro (pseudo-elemento) */
.cinema-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to right,  #000 0%, transparent 12%, transparent 88%, #000 100%),
    linear-gradient(to bottom, #000 0%, transparent 10%, transparent 90%, #000 100%);
  pointer-events: none;
  z-index: 2;
}

/* Créditos Tarantino — estilos controlados 100% por JavaScript */
/* (sem regras CSS para .slide-credit — evita conflito com inline styles) */

.cinema-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.7) 100%),
    rgba(30, 28, 25, 0.25);
  pointer-events: none;
  z-index: 2;
}

.cinema-grain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: grainShift 0.5s steps(10) infinite;
  z-index: 3;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-2px, -2px); }
}

.cinema-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 4;
}

/* Film Strip Effect */
.cinema-film-strip {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background: #000;
  z-index: 20;
}

.cinema-film-strip.top {
  top: 0;
  border-bottom: 3px solid #333;
}

.cinema-film-strip.bottom {
  bottom: 0;
  border-top: 3px solid #333;
}

.cinema-film-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 15px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 15px,
    #222 15px,
    #222 20px
  );
}

/* Conteúdo Cinema */
.cinema-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
}

.cinema-badge {
  margin-bottom: 30px;
}

.cinema-badge img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(249, 191, 23, 0.6));
}

/* Bloco de Título Cinema */
.cinema-title-block {
  margin-bottom: 40px;
}

.cinema-subtitle-top {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cinema-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0.95;
  margin: 0;
  text-shadow: 
    4px 4px 0 rgba(0,0,0,0.8),
    0 0 60px rgba(255,255,255,0.1);
}

.cinema-main-title.accent {
  color: var(--color-geco-red);
  text-shadow: 
    4px 4px 0 rgba(0,0,0,0.8),
    0 0 80px rgba(227, 30, 36, 0.4);
}

.cinema-subtitle-bottom {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--color-gray-light);
  text-transform: uppercase;
  margin-top: 25px;
}

/* Tagline */
.cinema-tagline {
  max-width: 500px;
  margin: 0 auto;
  padding: 25px 40px;
  border-top: none;
  border-bottom: none;
}

.cinema-tagline p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-light);
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.cinema-tagline span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-gray-light);
  letter-spacing: 2px;
}

/* ============================================
   SEÇÃO PRODUTOS - ESTILO TARANTINO
   ============================================ */
.section-parallax {
  position: relative;
  padding: 0 0 100px;
}


.produtos-bg {
  background: #f5f5f5;
  position: relative;
}

.produtos-bg .overlay {
  background: transparent;
  padding-top: 20px;
}

.container-limit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gray-light);
  margin-bottom: 50px;
  font-style: italic;
}

.produto-card {
  background: #ffffff;
  padding: 0;
  margin: 15px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.produto-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-geco-red);
  box-shadow: 0 12px 35px rgba(227, 30, 36, 0.15);
}

.produto-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  transition: border-color 0.3s ease;
  background: #fff;
}

.produto-card:hover img {
  border-color: var(--color-geco-red);
}

.produto-info {
  padding: 15px;
  background: #ffffff;
}

.produto-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--color-geco-red);
  margin: 0 0 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.produto-card p {
  font-family: var(--font-body);
  color: #555;
  font-size: 0.8rem;
  margin: 0 0 12px;
  letter-spacing: 1px;
}

/* Botões ficha técnica */
.produto-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.produto-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #888;
  border: 1px solid #ddd;
  padding: 5px 12px;
  transition: all 0.3s ease;
}

.produto-pdf:hover {
  color: var(--color-geco-red);
  border-color: var(--color-geco-red);
  background: rgba(227, 30, 36, 0.05);
}

.produto-pdf svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.produto-pdf:hover svg {
  opacity: 1;
}

/* ============================================
   NEWSLETTER - ESTILO TARANTINO
   ============================================ */
.section-newsletter {
  background: var(--color-geco-red);
  color: var(--color-light);
  padding: 80px 0;
  text-align: center;
}

.newsletter-chapter {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #fff;
  background: var(--color-geco-red);
  padding: 4px 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-newsletter h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 20px;
  width: 100%;
  max-width: 350px;
  border: 3px solid var(--color-light);
  background: transparent;
  color: var(--color-light);
  transition: all 0.3s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
  color: rgba(255,255,255,0.6);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
  border-color: var(--color-primary);
}

.btn-cta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 12px 55px;
  min-width: 200px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E31E24;
  color: #ffffff;
  border: 2px solid #E31E24;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  display: none;
}

.btn-cta:hover::before {
  display: none;
}

.btn-cta:hover {
  background: #ffffff;
  border: 2px solid #E31E24;
  color: #E31E24;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.btn-newsletter {
  margin-top: 10px;
}

.newsletter-note {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 20px;
}

/* ============================================
   ÁREA RESTRITA - ESTILO TARANTINO
   ============================================ */
.section-login {
  background: var(--color-black);
  color: var(--color-light);
  padding: 80px 0;
  text-align: center;
}

.section-login h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-login > .container-limit > p {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  margin-bottom: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.login-form input {
  border-color: var(--color-gray-light);
}

.btn-login {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 12px 55px;
  min-width: 200px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E31E24;
  color: #ffffff;
  border: 2px solid #E31E24;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  display: none;
}

.btn-login:hover::before {
  display: none;
}

.btn-login:hover {
  background: #ffffff;
  border: 2px solid #E31E24;
  color: #E31E24;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

/* ============================================
   FAQ - ESTILO TARANTINO
   ============================================ */
.section-faq {
  background: var(--color-dark);
}

.section-faq .container-limit {
  padding: 0 20px 80px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: var(--color-black);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--color-geco-red);
  margin: 0;
  padding: 20px 50px 20px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  color: #fff;
}

.faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-geco-red);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 20px;
}

.faq-item.active {
  border-left: 4px solid var(--color-geco-red);
}

.faq-answer p {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   VERIFICAÇÃO ANTI-FRAUDE
   ============================================ */
.section-verificacao {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.verificacao-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) contrast(1.5) brightness(0.7);
}

.verificacao-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.section-verificacao .container-limit {
  position: relative;
  z-index: 2;
}

.verificacao-logo {
  margin-bottom: 25px;
}

.verificacao-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.verificacao-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--color-light);
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.verificacao-title .accent {
  color: var(--color-geco-red);
  text-shadow: 
    0 0 40px rgba(227, 30, 36, 0.4),
    0 0 80px rgba(227, 30, 36, 0.2);
}

.verificacao-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-primary);
  max-width: 550px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.verificacao-box {
  background: rgba(15, 15, 15, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 35px 40px;
  max-width: 520px;
  margin: 0 auto;
}

.verificacao-box-label {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.verificacao-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.verificacao-form input {
  flex: 1;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.5);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.verificacao-form input:focus {
  border-color: var(--color-geco-red);
  background: rgba(0,0,0,0.7);
}

.verificacao-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.btn-verificar {
  min-width: auto;
  padding: 0 35px;
}

.verificacao-warn {
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.verificacao-result {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-height: 24px;
  transition: all 0.3s ease;
}

.verificacao-result.success {
  color: #22c55e;
}

.verificacao-result.error {
  color: var(--color-geco-red);
}

@media (max-width: 600px) {
  .verificacao-form {
    flex-direction: column;
  }

  .verificacao-form input {
    width: 100%;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    box-sizing: border-box;
  }

  .btn-verificar {
    width: 100%;
    min-width: auto;
  }

  .verificacao-box {
    padding: 25px 20px;
  }

  .section-verificacao {
    padding: 50px 15px;
  }
}

/* ============================================
   DISCLAIMER - ESTILO TARANTINO
   ============================================ */
.section-disclaimer {
  background: var(--color-black);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-geco-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.disclaimer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.disclaimer-links a {
  font-family: var(--font-body);
  color: var(--color-gray-light);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-links a:hover {
  color: var(--color-light);
}

.disclaimer-links .bullet {
  color: var(--color-geco-red);
}

/* ============================================
   FOOTER - ESTILO TARANTINO
   ============================================ */
.section-footer {
  background: var(--color-primary);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  max-height: 50px;
  filter: brightness(0);
}

.footer-logo.geco {
  filter: none;
}

.footer-info {
  margin-bottom: 25px;
}

.footer-company {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-cnpj {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.footer-notice {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-geco-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  margin: 5px 0;
}

.footer-contact strong {
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links a {
  font-family: var(--font-body);
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin: 0;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 4s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
}

@keyframes whatsappPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); 
  }
  50% { 
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); 
  }
}

/* ============================================
   RESPONSIVO - ESTILO TARANTINO
   ============================================ */
@media (max-width: 991px) {
  /* Top-bar mobile layout */
  .top-bar {
    padding: 6px 0;
  }
  
  .top-bar-desktop {
    display: none !important;
  }
  
  .top-bar-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 0 6px;
  }
  
  .top-bar-tagline-mobile {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    background: none;
    padding: 4px 6px;
    white-space: nowrap;
  }
  
  .flag-icon-mobile {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
  }
  
  .top-bar-row-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  
  .top-bar-logo-mobile {
    height: 28px;
    width: auto;
    margin-left: 6px;
  }
  
  .top-bar-flags-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 6px;
  }
  
  .flag-icon-mobile {
    width: 18px;
    height: auto;
  }
  
  .custom-navbar {
    top: 52px !important;
  }
  
  /* Navbar mobile */
  .navbar-container-new {
    flex-wrap: wrap;
  }
  
  .navbar-brand-left img,
  .navbar-brand-left .navbar-geco-logo {
    height: 40px;
  }
  
  .navbar-geco-slogan {
    display: none;
  }
  
  .navbar-nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .custom-navbar .navbar-collapse {
    background: rgba(255,255,255,0.98);
    padding: 20px;
    margin-top: 10px;
  }
  
  .nav-link {
    padding: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
  }
  
  .nav-link-logo {
    padding: 10px !important;
  }
  
  .nav-m5-icon {
    height: 40px;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .btn-nav-cta {
    margin: 15px 0 0 0;
    display: block;
    text-align: center;
  }
  
  .hero-cinematic {
    margin-top: 38px;
  }
  
  .legend-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Seção Cinema Break - Mobile */
  .cinema-main-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  
  .cinema-film-strip {
    height: 20px;
  }

  /* Barra de progresso do hino - Tablet */
  .hino-progress {
    max-width: 360px;
  }
  
  /* Seção About - Mobile */
  .section-about {
    background: var(--color-black);
  }
  
  .about-grid-new {
    grid-template-columns: 1fr;
  }
  
  .about-col-logo {
    padding: 50px 30px;
  }
  
  .about-col-content {
    padding: 50px 30px;
  }
  
  .about-col-map {
    padding: 40px 30px;
    background: var(--color-dark);
  }
  
  .brasil-map-visual {
    width: 120px;
    height: 140px;
  }
  
  .chapter-marker {
    padding: 30px 15px 15px;
  }
  
  .chapter-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title-line {
    font-size: 3.5rem;
  }
  
  .hero-stats-inline {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 30px;
  }
  
  .hero-bottom-bar {
    padding: 10px 15px;
  }
  
  .bottom-bar-text {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
  
  .section-parallax {
    padding: 0 0 60px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
  
  .about-features {
    justify-content: center;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .legend-quote {
    padding: 20px;
  }
  
  .legend-quote .quote-icon {
    font-size: 2.5rem;
    top: 5px;
    left: 10px;
  }
  
  .legend-quote p {
    padding-left: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-chapter {
    font-size: 0.75rem;
    letter-spacing: 4px;
  }
  
  .hero-title-line {
    font-size: 2.8rem;
  }
  
  .hero-tagline {
    font-size: 0.95rem;
  }
  
  .chapter-title {
    font-size: 2rem;
  }
  
  .about-logo {
    max-width: 150px;
  }
  
  /* Seção M5 - mobile pequeno */
  .m5-logo-main {
    height: 60px;
  }
  
  .m5-badge {
    font-size: 0.55rem;
    padding: 8px 20px;
    letter-spacing: 2px;
  }
  
  .m5-geco-logo {
    height: 150px;
  }
  
  .m5-geco-slogan {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  /* Cinema title mobile */
  .cinema-main-title-sm {
    font-size: 1.35rem;
    letter-spacing: 2px;
  }

  /* Hino playing — mobile compacto */
  .hino-playing .cinema-badge img {
    width: 30px;
  }

  .hino-playing .cinema-subtitle-top {
    font-size: 0.55rem;
    letter-spacing: 3px;
  }

  .hino-playing .cinema-main-title-sm {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .cinema-mini-flag svg {
    width: 26px;
  }

  /* Barra de progresso do hino - Mobile pequeno */
  .hino-progress {
    max-width: 280px;
    gap: 6px;
  }
  
  /* Newsletter/Login mobile */
  .login-register {
    font-size: 0.85rem;
  }
}

/* ============================================
   ESPAÇADOR / RESPIRO
   ============================================ */
.section-spacer {
  height: 80px;
  background: var(--color-black);
}

/* ============================================
   TÍTULO MENOR - INDEPENDÊNCIA OU MORTE
   ============================================ */
.cinema-main-title-sm {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  text-shadow: 
    0 0 30px rgba(0,0,0,0.8),
    2px 2px 4px rgba(0,0,0,0.9);
}

.cinema-main-title-sm.accent {
  color: var(--color-geco-red);
}

/* ============================================
   HINO PLAYING — Estado compacto durante reprodução
   ============================================ */

/* Transições suaves em todos os elementos afetados */
.cinema-badge,
.cinema-badge img,
.cinema-subtitle-top,
.cinema-main-title-sm,
.cinema-subtitle-bottom,
.cinema-tagline,
.cinema-mini-flag {
  transition: all 0.8s ease;
}

/* ── Mini bandeira SVG — oculta por padrão ── */
.cinema-mini-flag {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
  transform: scale(2);
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.cinema-mini-flag svg {
  width: 32px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  filter: drop-shadow(0 0 6px rgba(255, 223, 0, 0.4));
}

/* ── Quando o hino toca ── */

/* Ocultar: "O GRITO DO IPIRANGA" */
.hino-playing .cinema-subtitle-bottom {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Ocultar: "Diga ao povo que fico." + "— Dom Pedro I" */
.hino-playing .cinema-tagline {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Compactar: logo M5 */
.hino-playing .cinema-badge {
  margin-bottom: 10px;
}

.hino-playing .cinema-badge img {
  width: 40px;
}

/* Compactar: "BRASIL, 1822" */
.hino-playing .cinema-subtitle-top {
  font-size: 0.65rem;
  letter-spacing: 5px;
  margin-bottom: 8px;
}

/* Compactar: "PÁTRIA AMADA BRASIL" */
.hino-playing .cinema-main-title-sm {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 2px;
}

/* Mostrar: mini bandeira com animação de "recolher" */
.hino-playing .cinema-mini-flag {
  opacity: 1;
  transform: scale(1);
  height: auto;
  margin-top: 10px;
  margin-bottom: 5px;
}

/* Slides: +30% visibilidade */
.hino-playing .cinema-slide.active {
  opacity: 0.94;
  filter: grayscale(5%) contrast(1.05) brightness(0.65) saturate(0.9) sepia(4%);
}

/* Overlay: reduzir escuridão para dar mais visibilidade ao slide */
.hino-playing .cinema-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.5) 100%),
    rgba(30, 28, 25, 0.15);
  transition: background 1.2s ease;
}

/* Vinheta: mais leve durante o hino */
.hino-playing .cinema-vignette {
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
  transition: background 1.2s ease;
}

/* Botão Play Hino */
/* btn-play-hino herda estilo padrão, apenas ajustes específicos */
.btn-play-hino {
  gap: 10px;
  margin-top: 25px;
}

.btn-play-hino.playing {
  background: #ffffff;
  border: 2px solid #E31E24;
  color: #E31E24;
}

.play-icon {
  font-size: 0.85rem;
}

/* ============================================
   LEGENDA SINCRONIZADA - HINO NACIONAL
   ============================================ */
/* ── Barra de progresso do hino ── */
.hino-progress {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hino-progress:hover { opacity: 1; }
.hino-progress.active { display: flex; }

.hino-time {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  min-width: 38px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.hino-seekbar-wrap {
  flex: 1;
  position: relative;
}

.hino-seekbar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.hino-seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.hino-seekbar::-webkit-slider-thumb:hover {
  transform: scale(1.4);
  background: #ffffff;
}
.hino-seekbar::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
}

.hino-lyrics {
  margin-top: 25px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hino-lyrics.active {
  opacity: 1;
}

.hino-line {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0;
  padding: 0 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hino-line.fade-out {
  opacity: 0;
  transform: translateY(-5px);
}

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

/* Botão Compartilhar Hino */
.hino-share {
  margin-top: 20px;
  text-align: center;
}

.btn-hino-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hino-share:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

.btn-hino-share svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================
   NEWSLETTER COM BACKGROUND
   ============================================ */
.section-newsletter-new {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  background: var(--color-dark);
}

.section-newsletter-new.visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Vinheta cinematográfica */
.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* Grain overlay - textura de filme */
.section-newsletter-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.section-newsletter-new .container-limit {
  position: relative;
  z-index: 2;
}

.section-newsletter-new h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-newsletter-new .newsletter-subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

/* Newsletter Box */
.newsletter-box {
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 600px;
  margin: 0 auto;
  padding: 35px 40px;
}

.newsletter-form-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.newsletter-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.newsletter-row input {
  flex: 1;
}

.newsletter-whatsapp-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 3px;
}

.btn-whatsapp-capture {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  background: #25D366;
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-whatsapp-capture:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-input {
  width: 180px;
}

.newsletter-form-compact input {
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.newsletter-form-compact input:focus {
  outline: none;
  border-color: var(--color-geco-red);
  background: rgba(0,0,0,0.7);
}

.newsletter-form-compact input::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* btn-cta-slim já definido acima */
/* btn-cta-slim hover já definido acima */

.section-newsletter-new .newsletter-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-bottom: 0;
}

.newsletter-form-compact .btn-cta-slim {
  margin-top: 5px;
  width: 100%;
  max-width: 280px;
  min-width: auto;
  padding: 0 30px;
  box-sizing: border-box;
}

/* Validação visual */
.newsletter-form-compact input.input-error {
  border-color: var(--color-geco-red);
  background: rgba(227, 30, 36, 0.1);
}

@media (max-width: 600px) {
  .newsletter-box {
    padding: 25px 20px;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row input {
    width: 100%;
  }

  .newsletter-whatsapp-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-whatsapp-capture {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-input {
    width: 100%;
  }

  .newsletter-form-compact .btn-cta-slim {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   ÁREA RESTRITA - LOGIN COMPACTO
   ============================================ */
.section-login-new {
  background: var(--color-dark);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.login-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(70%) contrast(1.2) brightness(0.5);
}

.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
}

.section-login-new .container-limit {
  position: relative;
  z-index: 2;
}

.section-login-new h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.login-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--color-geco-red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.login-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  max-width: 500px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.login-form-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.login-form-compact .login-inputs {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.login-form-compact input {
  width: 200px;
  min-width: 200px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.login-form-compact input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.login-form-compact input::placeholder {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* btn-login-slim já definido acima */
/* btn-login-slim hover já definido acima */

.login-register {
  display: inline-block;
  margin-top: 5px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-register:hover {
  color: var(--color-primary);
}

/* ============================================
   FAQ EXPANDIDO
   ============================================ */
.section-faq {
  background: var(--color-black);
  padding: 40px 20px;
}

.section-faq .container-limit {
  max-width: 900px;
}

.section-faq .faq-item {
  background: rgba(255,255,255,0.02);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.section-faq .faq-item:hover {
  background: rgba(255,255,255,0.04);
}

.section-faq .faq-item.active {
  border-left: 3px solid var(--color-geco-red);
}

.section-faq .faq-question {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-geco-red);
  letter-spacing: 1.5px;
  padding: 18px 45px 18px 22px;
}

.section-faq .faq-answer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   RODAPÉ PROFISSIONAL
   ============================================ */
/* ============================================
   RODAPÉ PROFISSIONAL
   ============================================ */
.footer-pro {
  background: #080808;
}

.footer-main {
  padding: 50px 20px 35px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-main {
  height: 55px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  border-top: 3px solid #1a3a6e;
}

.footer-logo-geco {
  height: 64px;
  width: auto;
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-slogan {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  letter-spacing: 1px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.footer-warning {
  color: var(--color-geco-red) !important;
  font-size: 0.72rem !important;
  margin-top: 8px;
}

.footer-links-list li {
  margin-bottom: 7px;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  margin: 0 0 4px;
}

.footer-legal {
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.25) !important;
}

/* ============================================
   RESPONSIVO PARA NOVOS ELEMENTOS
   ============================================ */
@media (max-width: 991px) {
  .about-main {
    grid-template-columns: 1fr;
  }
  
  .about-map-area {
    padding: 40px 20px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    height: 46px;
    padding: 0 35px;
    min-width: 160px;
  }
  
  /* Seção M5 - tablet */
  .m5-geco-logo {
    height: 300px;
  }
  
  .m5-logo-main {
    height: 90px;
  }
}

@media (max-width: 768px) {
  /* Seção M5 simples responsiva */
  .section-m5-simple {
    min-height: auto;
    padding: 40px 20px;
  }
  
  .m5-content {
    gap: 20px;
  }
  
  .m5-top-group {
    margin-top: 0;
    gap: 10px;
  }
  
  .m5-logo-main {
    height: 70px;
  }
  
  .m5-badge {
    font-size: 0.6rem;
    padding: 10px 25px;
    letter-spacing: 3px;
  }
  
  .m5-geco-logo {
    height: 200px;
  }
  
  .m5-geco-slogan {
    font-size: 0.9rem;
  }
  
  .about-logos {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Newsletter responsivo */
  .newsletter-form-compact input {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  
  /* Login responsivo */
  .login-inputs {
    flex-direction: column;
    width: 100%;
  }
  
  .login-form-compact input {
    width: 100%;
    min-width: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col-brand {
    align-items: center;
  }
  
  .newsletter-form-compact,
  .login-form-compact {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter-form-compact input,
  .login-form-compact input {
    min-width: auto;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  .whatsapp-button {
    animation: none;
  }
}
