/* ============================================
   FEITO NO ACRE — v2 refinada
   ============================================ */

:root {
  /* Cores da bandeira do Acre */
  --navy: #0f2c5c;
  --navy-2: #0a1f44;
  --navy-3: #1a3d7a;

  --lime: #8fc640;
  --lime-2: #6fa830;
  --lime-3: #b4dd6e;

  --green: #1f8a3e;
  --green-2: #136b2d;

  --yellow: #fcd207;
  --yellow-2: #f5c800;
  --red: #e63946;

  /* Neutros quentes */
  --cream: #f7f1e1;
  --cream-2: #efe7d2;
  --cream-3: #e6dcc1;
  --ink: #16223c;
  --ink-2: #4b5469;
  --paper: #fffaf0;

  /* Tipografia */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Espaço */
  --header-h: 76px;
  --section-py: clamp(80px, 9vw, 140px);
  --container: 1280px;
  --container-wide: 1440px;

  /* Easing */
  --t-fast: 200ms cubic-bezier(.4,0,.2,1);
  --t-base: 320ms cubic-bezier(.4,0,.2,1);
  --t-slow: 600ms cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; }

::selection { background: var(--lime); color: var(--navy); }

/* ===== Utilidades ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--green);
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section-header-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 56px;
  max-width: 880px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--lime-2);
  font-weight: 700;
  position: relative;
}

.section-lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.5;
  text-wrap: pretty;
}
.section-header:not(.section-header-left) .section-lead { margin: 0 auto; }

.section-action {
  text-align: center;
  margin-top: 48px;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 6px 24px -8px rgba(15,44,92,0.45);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lime-2), var(--green));
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(15,44,92,0.55);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(15,44,92,0.2);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 6px 22px -8px rgba(252,210,7,0.6);
}
.btn-yellow:hover {
  background: var(--yellow-2);
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 34px;
  font-size: 1.0625rem;
}
.btn-small {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: var(--container);
  transition: top var(--t-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 12px 0 24px;
  background: rgba(247, 241, 225, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(15,44,92,0.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px -16px rgba(15,44,92,0.18);
  transition: all var(--t-base);
}

.site-header.is-hero .header-inner {
  background: rgba(15, 44, 92, 0.4);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.3);
}

.logo-link {
  display: block;
  height: 42px;
  flex-shrink: 0;
}
.logo {
  height: 100%;
  width: auto;
  transition: opacity var(--t-base);
}
.logo-color { display: block; }
.logo-white { display: none; }
.site-header.is-hero .logo-color { display: none; }
.site-header.is-hero .logo-white { display: block; }

.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  transition: all var(--t-fast);
}
.nav-list a:not(.nav-cta):hover {
  background: rgba(15,44,92,0.06);
}

.site-header.is-hero .nav-list a:not(.nav-cta) {
  color: var(--cream);
}
.site-header.is-hero .nav-list a:not(.nav-cta):hover {
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  margin-left: 8px;
  font-weight: 600 !important;
  transition: all var(--t-base) !important;
}
.nav-cta:hover {
  background: var(--lime-2);
  color: var(--navy) !important;
  transform: translateY(-1px);
}
.site-header.is-hero .nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
}
.site-header.is-hero .nav-cta:hover {
  background: var(--cream);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-base);
}
.site-header.is-hero .nav-toggle span { background: var(--cream); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: radial-gradient(ellipse at 70% 80%, var(--navy-3) 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 32px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(143,198,64,0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(252,210,7,0.08) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse 50% 50% at 50% 60%, rgba(143,198,64,0.28) 0%, rgba(143,198,64,0.05) 50%, transparent 75%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lime-3);
  margin-bottom: 36px;
  animation: fadeUp 1s 0.1s both;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(143,198,64,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(143,198,64,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(143,198,64,0.08); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 1.1s 0.25s both;
  text-wrap: balance;
}
.hero-title-accent {
  font-style: italic;
  font-weight: 700;
  color: var(--lime-3);
  display: inline-block;
}
.underline-grow {
  position: relative;
  display: inline-block;
}
.underline-grow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--yellow);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: growLine 1s 1.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes growLine {
  to { transform: scaleX(1); }
}

.hero-lead {
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.55;
  animation: fadeUp 1s 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
  animation: fadeUp 1s 0.6s both;
}

.hero .hero-actions .btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.hero .hero-actions .btn-primary::before {
  background: var(--cream);
}
.hero .hero-actions .btn-primary:hover { color: var(--navy); }

.hero .hero-actions .btn-ghost {
  color: var(--cream);
  border-color: rgba(255,255,255,0.25);
}
.hero .hero-actions .btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 1s 0.75s both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
  font-weight: 500;
}

/* visual */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeUp 1.2s 0.3s both;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 1.05;
}
.hero-people {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  z-index: 2;
}

.hero-flag {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 6px solid var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 1;
  animation: floatY 5s ease-in-out infinite;
}
.flag-yellow {
  flex: 1;
  background: var(--yellow);
  display: block;
}
.flag-green {
  flex: 1;
  background: var(--green);
  display: block;
  transform: skewY(-12deg) translateY(-8px);
  transform-origin: left;
}
.flag-star {
  position: absolute;
  top: 22%;
  left: 24%;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero-tag {
  position: absolute;
  z-index: 3;
}
.tag-pill {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(247, 241, 225, 0.96);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.hero-tag-1 { top: 18%; left: 2%; animation: floatY2 4.5s ease-in-out infinite; }
.hero-tag-2 { top: 48%; right: -2%; animation: floatY2 4s 0.3s ease-in-out infinite reverse; }
.hero-tag-3 { bottom: 22%; left: -4%; animation: floatY2 5s 0.6s ease-in-out infinite; }
.hero-tag-2 .tag-pill { background: var(--lime); }
.hero-tag-3 .tag-pill { background: var(--yellow); }

@keyframes floatY2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  z-index: 3;
  transition: color var(--t-fast);
}
.hero-scroll:hover { color: var(--cream); }
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--yellow);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}
.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== PATTERN STRIP (divisor com pattern original) ===== */
.pattern-strip {
  height: 76px;
  background-image: url('../assets/img/pattern/pattern-03.png');
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center;
  background-color: var(--cream);
}
.pattern-strip-reverse {
  transform: scaleX(-1);
}

/* Sections diretamente vizinhas à pattern strip ganham menos padding */
.pattern-strip + .section {
  padding-top: clamp(56px, 6vw, 96px);
}
.section:has(+ .pattern-strip) {
  padding-bottom: clamp(56px, 6vw, 96px);
}

/* CTA final compacto */
.section.section-cta {
  padding: 24px 28px 32px;
}

/* ===== ICON STRIP (mantido caso volte) ===== */
.icon-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.icon-strip-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: stripScroll 80s linear infinite;
}
.icon-strip-reverse .icon-strip-track {
  animation: stripScrollReverse 90s linear infinite;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes stripScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.icon-cell {
  flex-shrink: 0;
  width: 96px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-cell svg {
  width: 30px;
  height: 30px;
}
.icon-cell.c-navy { background: var(--navy); color: var(--lime-3); }
.icon-cell.c-lime { background: var(--lime); color: var(--navy); }
.icon-cell.c-cream { background: var(--cream); color: var(--navy); }
.icon-cell.c-green { background: var(--green); color: var(--cream); }

/* ===== SOBRE ===== */
.section-sobre {
  background: var(--cream);
  position: relative;
  padding-bottom: clamp(40px, 4vw, 72px);
}

.section-empresas {
  background: var(--cream);
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: calc(var(--section-py) + 20px);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.sobre-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 880px;
  text-wrap: pretty;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15,44,92,0.1);
}

.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pilar {
  padding-top: 36px;
  position: relative;
  border-top: 2px solid var(--navy);
}
.pilar::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--lime-2);
}

.pilar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--lime-2);
  margin-bottom: 16px;
}

.pilar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 14px;
  text-wrap: balance;
}

.pilar p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.sobre-frase {
  margin: 56px auto 0;
  max-width: 920px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
  position: relative;
  padding-bottom: 0;
}
.sobre-frase em {
  font-style: italic;
  color: var(--lime-2);
}
.quote-mark {
  font-family: var(--font-display);
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.5;
  color: var(--lime);
  margin-bottom: 16px;
}

/* ===== EMPRESAS ===== */

.logos-carousel {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.logos-track-left { animation: trackLeft 70s linear infinite; }
.logos-track-right { animation: trackRight 85s linear infinite; }
.logos-track-slow { animation-duration: 100s; }

@keyframes trackLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes trackRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  background: var(--navy);
  border-radius: 16px;
  border: 1px solid rgba(15,44,92,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all var(--t-base);
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(15,44,92,0.3);
  background: var(--navy-3);
}
.logo-card:hover img {
  opacity: 1;
}

.logos-carousel:hover .logos-track {
  animation-play-state: paused;
}

/* ===== VÍDEOS ===== */
.section-videos {
  background: var(--cream-2);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card-feat {
  grid-column: span 2;
  grid-row: span 2;
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 16px 40px -16px rgba(15,44,92,0.3);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.video-card-feat .video-thumb {
  aspect-ratio: 16 / 11;
}
.video-card:hover .video-thumb {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(15,44,92,0.4);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,44,92,0.5) 100%);
  pointer-events: none;
}

.video-play {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all var(--t-base);
  z-index: 2;
}
.video-card-feat .video-play {
  width: 72px;
  height: 72px;
  bottom: 28px;
  left: 28px;
}
.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.video-card:hover .video-play {
  transform: scale(1.1);
  background: var(--cream);
}

.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

.video-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-2);
}

.video-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.video-card-feat .video-title {
  font-size: 1.4375rem;
  font-weight: 700;
}

/* ===== NOTÍCIAS ===== */
.section-noticias {
  background: var(--cream);
}

/* Featured */
.noticia-feat {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 32px;
  background: var(--paper);
  border-radius: 24px;
  border: 1px solid rgba(15,44,92,0.08);
  margin-bottom: 56px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.noticia-feat:hover {
  box-shadow: 0 20px 50px -20px rgba(15,44,92,0.2);
  transform: translateY(-2px);
}
.noticia-feat-thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}
.noticia-feat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.noticia-feat:hover .noticia-feat-thumb img {
  transform: scale(1.04);
}
.noticia-feat-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 8px;
}
.noticia-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.noticia-feat-titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
.noticia-feat-excerpt {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.noticia-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--lime-2);
  margin-top: 8px;
  transition: gap var(--t-base);
}
.noticia-feat:hover .noticia-feat-link {
  gap: 14px;
  color: var(--green);
}

/* Cards grid */
.noticias-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.noticia-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(15,44,92,0.08);
  overflow: hidden;
  transition: all var(--t-base);
}
.noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(15,44,92,0.25);
}
.noticia-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.noticia-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.noticia-card:hover .noticia-card-thumb img {
  transform: scale(1.05);
}
.noticia-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.noticia-card-titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.noticia-card .noticia-veiculo {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tight list (text-only) */
.noticias-list {
  border-top: 1px solid rgba(15,44,92,0.12);
}
.noticias-list-tight .noticia-row {
  border-bottom: 1px solid rgba(15,44,92,0.08);
}
.noticias-list-tight .noticia-row a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  transition: all var(--t-base);
}
.noticias-list-tight .noticia-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 24px;
  min-width: 0;
}
.noticias-list-tight .noticia-veiculo {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 180px;
}
.noticia-dot {
  width: 4px;
  height: 4px;
  background: rgba(15,44,92,0.3);
  border-radius: 50%;
}
.noticia-data {
  color: var(--ink-2);
  font-weight: 400;
}
.noticias-list-tight .noticia-titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
  flex: 1;
  min-width: 280px;
}
.noticia-arrow {
  color: var(--ink-2);
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.noticias-list-tight .noticia-row:hover {
  background: var(--paper);
}
.noticias-list-tight .noticia-row:hover .noticia-arrow {
  color: var(--lime-2);
  transform: translate(4px, -4px);
}
.noticias-list-tight .noticia-row:hover .noticia-titulo {
  color: var(--lime-2);
}

/* btn-link (no bg) */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  transition: gap var(--t-base), color var(--t-fast);
}
.btn-link:hover {
  gap: 14px;
  color: var(--lime-2);
}

/* ===== REALIZADORES ===== */
.section-realizadores {
  background: var(--cream-2);
}

.realizadores-faixa {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 40px;
  border: 1px solid rgba(15,44,92,0.08);
  box-shadow: 0 12px 40px -20px rgba(15,44,92,0.18);
}

.realizador-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  filter: none;
  opacity: 1;
  transition: all var(--t-base);
}
.realizador-logo:hover {
  transform: translateY(-3px);
}

.realizador-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== INSTAGRAM ===== */
.section-instagram {
  background: var(--cream);
}
.ig-handle {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lime-2);
  padding: 4px 14px;
  background: rgba(143,198,64,0.12);
  border-radius: 999px;
  transition: all var(--t-fast);
  font-size: 1.0625rem;
}
.ig-handle:hover {
  background: var(--lime);
  color: var(--navy);
}
.instagram-widget {
  max-width: 1180px;
  margin: 24px auto 0;
  min-height: 280px;
}
.instagram-widget [class^="elfsight-app-"] {
  width: 100%;
}

/* ===== CTA FINAL ===== */
.section-cta {
  background: var(--cream);
}

.cta-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(143,198,64,0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 72px) 0;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  min-height: 640px;
}

.cta-content {
  padding-bottom: clamp(56px, 7vw, 96px);
  align-self: center;
}

.cta-figure {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: clamp(-40px, -3vw, -8px);
  margin-bottom: 0;
}
.cta-figure img {
  width: auto;
  height: 100%;
  max-height: none;
  min-height: 560px;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

.cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/pattern/pattern-03.png');
  background-size: auto 56%;
  background-repeat: repeat-x;
  background-position: left bottom;
  opacity: 0.06;
  filter: brightness(0) invert(1);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--cream);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lime-3);
  margin-bottom: 28px;
}
.cta-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(252,210,7,0.2);
  animation: pulse 2.2s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.cta-title em {
  font-style: italic;
  color: var(--lime-3);
  font-weight: 700;
}

.cta-lead {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.section-cta .btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.section-cta .btn-primary::before { background: var(--cream); }

.cta-footnote {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.78);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 80px 0 56px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  max-width: 280px;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.footer-tagline-sub {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--lime-3);
  margin-top: 4px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover {
  color: var(--lime-3);
}
.social-arrow {
  font-size: 0.875em;
  opacity: 0.5;
  transition: all var(--t-fast);
}
.footer-col a:hover .social-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.footer-col-cta p {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Mega text (removido) */
.footer-mega { display: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-credits {
  font-size: 0.75rem;
  max-width: 520px;
  text-align: right;
}

/* Footer dev credit */
.footer-dev {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.footer-dev a {
  color: var(--lime-3);
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer-dev a:hover {
  color: var(--yellow);
}

/* ===== LIGHTBOX ===== */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 19, 38, 0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 100%;
  max-width: 1100px;
}
.lightbox-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg);
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
  }
  .hero-visual-frame {
    max-width: 100%;
  }
  .hero-flag {
    width: 86px;
    height: 86px;
    border-width: 5px;
  }
  .flag-star { font-size: 16px; }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-card-feat {
    grid-column: span 2;
    grid-row: auto;
  }
  .video-card-feat .video-thumb { aspect-ratio: 16 / 9; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pilares {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .realizadores-faixa {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
  .realizador-logo:nth-child(4),
  .realizador-logo:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .site-header { top: 12px; width: calc(100% - 24px); }
  .header-inner { padding: 0 8px 0 16px; }
  .logo-link { height: 32px; }

  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 24px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--t-base), box-shadow var(--t-base);
    visibility: hidden;
  }
  .nav-list.is-open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-list a {
    color: var(--cream) !important;
    padding: 14px 16px !important;
    font-size: 1rem;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-list a:hover {
    background: rgba(255,255,255,0.06) !important;
  }
  .nav-cta {
    margin-top: 16px !important;
    background: var(--yellow) !important;
    color: var(--navy) !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-text {
    text-align: left;
  }
  .hero-actions {
    margin-bottom: 32px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.6875rem; }

  .hero-visual-frame {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 0.9;
  }
  .hero-flag {
    width: 70px;
    height: 70px;
    border-width: 4px;
  }
  .flag-star { font-size: 13px; }
  .hero-tag { display: none; }

  .hero-scroll { display: none; }

  .icon-cell { width: 72px; height: 52px; }
  .icon-cell svg { width: 24px; height: 24px; }

  .pilares { gap: 32px; }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .video-card-feat { grid-column: span 1; }

  .noticia-feat {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .noticias-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .noticias-list-tight .noticia-row a {
    padding: 18px 8px;
    gap: 14px;
  }
  .noticias-list-tight .noticia-veiculo {
    min-width: 0;
    font-size: 0.625rem;
  }
  .noticias-list-tight .noticia-titulo {
    font-size: 0.9375rem;
    min-width: 0;
    flex: 1 1 100%;
  }

  .realizadores-faixa {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
  }
  .realizador-logo { height: 110px; }
  .realizador-logo:nth-child(5) {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: left;
  }
  .footer-credits { text-align: left; max-width: 100%; }

  .cta-inner {
    border-radius: 24px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 24px 0;
  }
  .cta-content {
    padding-bottom: 32px;
  }
  .cta-figure {
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
  }
  .cta-figure img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section.section-cta { padding: 16px 18px 24px; }
  .cta-inner { padding: 48px 24px; }
  .logos-track { gap: 12px; }
  .logo-card { width: 140px; height: 88px; padding: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .logos-track, .icon-strip-track { animation: none !important; }
}
