/* ==========================================================================
   MISAEL OLIVEIRA — INSTITUCIONAL EDITORIAL PREMIUM (REVISÃO VISUAL MESTRE)
   SENADOR CANEDO — GOIÁS
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & PALETA INSTITUCIONAL (#0D376C)
   -------------------------------------------------------------------------- */
:root {
  /* Azul Institucional Obrigatório */
  --blue-primary: #0D376C;
  --blue-950: #061A35;
  --blue-900: #082A50;
  --blue-800: #0A315E;
  --blue-700: #0D376C;
  --blue-600: #174B88;
  --blue-500: #2867A8;
  --blue-400: #4A83BB;
  --blue-300: #7FA6CC;
  --blue-200: #B7CCE1;
  --blue-100: #E5EEF7;

  /* Neutros High-Contrast & Superfícies */
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --gray-100: #E8ECEF;
  --gray-200: #D0D7DE;
  --gray-400: #8C98A4;
  --gray-700: #333E48;
  --black: #060D17;

  /* Hairlines & Efeitos */
  --hairline-light: rgba(13, 55, 108, 0.14);
  --hairline-dark: rgba(255, 255, 255, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-dark: rgba(6, 26, 53, 0.88);
  --shadow-editorial: 0 30px 60px -10px rgba(13, 55, 108, 0.15);

  /* Tipografia Editorial */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Dimensões */
  --container-max: 1360px;
  --gutter: clamp(24px, 5vw, 64px);
  --header-height: 80px;

  /* Animações */
  --ease-editorial: cubic-bezier(0.19, 1, 0.22, 1);
  --transition-smooth: 0.5s var(--ease-editorial);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

::selection {
  background-color: var(--blue-primary);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   03. TIPOGRAFIA & BADGES EDITORIAIS
   -------------------------------------------------------------------------- */
.display-mega {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.title-editorial {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.title-subeditorial {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background-color: var(--blue-100);
  color: var(--blue-primary);
  border: 1px solid rgba(13, 55, 108, 0.15);
  margin-bottom: 24px;
}

.eyebrow-badge.light {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.text-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--gray-700);
  line-height: 1.6;
}

.text-lead.light {
  color: var(--blue-100);
}

/* --------------------------------------------------------------------------
   04. CONTAINER & SEÇÕES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

.section-padding {
  padding-top: clamp(80px, 12vh, 160px);
  padding-bottom: clamp(80px, 12vh, 160px);
}

/* Botões Editoriais Premium */
.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 9999px;
  background-color: var(--blue-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(13, 55, 108, 0.25);
  transition: var(--transition-smooth);
}

.btn-editorial-primary:hover {
  background-color: var(--blue-900);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 55, 108, 0.35);
}

/* --------------------------------------------------------------------------
   05. HEADER MINIMALISTA GLASSMORPHISM
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(6, 26, 53, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hairline-light);
}

.site-header.dark-section.scrolled {
  background-color: rgba(6, 26, 53, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hairline-dark);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-editorial {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}

.site-header.scrolled:not(.dark-section) .brand-editorial {
  color: var(--black);
}

.brand-dot {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.site-header.scrolled:not(.dark-section) .brand-dot {
  background-color: var(--blue-primary);
}

.header-right-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.site-header.scrolled:not(.dark-section) .header-link {
  color: var(--gray-700);
}

.header-link:hover {
  color: var(--white);
}

.site-header.scrolled:not(.dark-section) .header-link:hover {
  color: var(--blue-primary);
}

/* --------------------------------------------------------------------------
   06. HERO SLIDER SECTION (FULL BLEED FULL SCREEN 100VW / 100VH)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  padding-top: 0;
  background-color: #040D1A;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #040D1A;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #040D1A;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 5;
}

.hero-slide img, .hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #040D1A;
}

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 14px;
  padding: 10px 22px;
  background: rgba(6, 26, 53, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-slider-dots .dot.active {
  background-color: var(--white);
  transform: scale(1.35);
}

/* --------------------------------------------------------------------------
   07. SEÇÃO DE VÍDEO DOCUMENTAL & MULTIMÍDIA
   -------------------------------------------------------------------------- */
.video-showcase-section {
  background-color: var(--blue-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-player-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 48px;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.video-overlay-play {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 26, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: background 0.4s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.video-overlay-play:hover {
  background: rgba(4, 13, 26, 0.1);
}

.play-button-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease-editorial), background 0.3s ease, border-color 0.3s ease;
}

.video-overlay-play:hover .play-button-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.play-button-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.video-playing-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-player-box:hover .video-playing-controls.active,
.video-playing-controls.active {
  opacity: 1;
  pointer-events: auto;
}

.video-ctrl-btn {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.video-ctrl-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   08. LINHA DO TEMPO DA TRAJETÓRIA (CRONOLÓGICA INTERATIVA)
   -------------------------------------------------------------------------- */
.timeline-section {
  background-color: var(--white);
  position: relative;
}

.timeline-wrapper {
  position: relative;
  margin-top: 80px;
}

.timeline-track-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--hairline-light);
  transform: translateX(-50%);
}

.timeline-event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.timeline-event-row.inverted .timeline-event-content {
  order: 2;
}

.timeline-event-row.inverted .timeline-event-media {
  order: 1;
}

.timeline-node-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--blue-primary);
  box-shadow: 0 0 0 8px rgba(13, 55, 108, 0.1);
  z-index: 10;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.timeline-event-row:hover .timeline-node-marker {
  transform: translate(-50%, -50%) scale(1.3);
  background-color: var(--blue-primary);
}

.timeline-year-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue-primary);
  background-color: var(--blue-100);
  padding: 6px 16px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 16px;
}

.timeline-event-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 16px;
}

.timeline-event-body {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

.timeline-media-frame {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}

.timeline-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-editorial);
}

.timeline-event-row:hover .timeline-media-frame img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   09. MANIFESTO (#0D376C)
   -------------------------------------------------------------------------- */
.manifesto-section {
  background-color: var(--blue-primary);
  color: var(--white);
}

.manifesto-display-quote {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 1150px;
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   10. SENADOR CANEDO (A CIDADE E O FUTURO)
   -------------------------------------------------------------------------- */
.canedo-section {
  background-color: var(--off-white);
}

.canedo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.canedo-card-editorial {
  background-color: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 4px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(13, 55, 108, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.canedo-card-editorial:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-editorial);
}

.canedo-card-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-primary);
}

.canedo-card-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.25;
  word-break: break-word;
}

.canedo-card-desc {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO DE PROPOSTAS EDITORIAIS
   -------------------------------------------------------------------------- */
.propostas-nav-sticky {
  position: sticky;
  top: 80px;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline-light);
  padding: 16px 0;
}

.propostas-pills-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.propostas-pills-row::-webkit-scrollbar {
  display: none;
}

.proposta-pill-btn {
  white-space: nowrap;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  background-color: var(--off-white);
  border: 1px solid var(--hairline-light);
  transition: var(--transition-smooth);
}

.proposta-pill-btn:hover, .proposta-pill-btn.active {
  background-color: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.proposta-scene {
  background-color: var(--white);
  border-bottom: 1px solid var(--hairline-light);
}

.proposta-scene:nth-child(even) {
  background-color: var(--off-white);
}

.proposta-grid-editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.proposta-scene.inverted .proposta-grid-editorial {
  grid-template-columns: 0.9fr 1.1fr;
}
.proposta-scene.inverted .proposta-text-col {
  order: 2;
}
.proposta-scene.inverted .proposta-media-col {
  order: 1;
}

.proposta-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 24px;
}

.proposta-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-700);
}

.bullet-dot-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue-100);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. NÚMEROS DE IMPACTO (AZUL #0D376C)
   -------------------------------------------------------------------------- */
.numeros-section {
  background-color: var(--blue-primary);
  color: var(--white);
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.numero-card-editorial {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.numero-giant-val {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}

.numero-unit-tag {
  display: block;
  font-size: 0.45em;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--blue-200);
  font-weight: 700;
  margin-top: 4px;
}

.numero-label-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-100);
}

/* --------------------------------------------------------------------------
   13. GALERIA MOSAICO DOCUMENTAL (RICA EM FOTOS)
   -------------------------------------------------------------------------- */
.galeria-section {
  background-color: var(--white);
}

.galeria-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.galeria-item-tall {
  grid-column: span 5;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-editorial);
}

.galeria-item-wide {
  grid-column: span 7;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-editorial);
}

.galeria-item-third {
  grid-column: span 4;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-editorial);
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-editorial);
}

.galeria-mosaic-grid div:hover .galeria-img {
  transform: scale(1.06);
}

.galeria-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(6, 26, 53, 0.95) 0%, rgba(6, 26, 53, 0) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   14. CTA FINAL & FOOTER
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(180deg, #061a36 0%, #041024 100%);
  color: var(--white);
  text-align: center;
}

.site-footer {
  background-color: #041024;
  color: var(--gray-300);
  padding: 60px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-social-row {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-link:hover {
  background-color: var(--orange-primary, #e65c00);
  border-color: var(--orange-primary, #e65c00);
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.4);
}

/* Social Icon Buttons (Seção 09) */
.social-icon-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  position: relative;
}

.social-icon-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.social-icon-btn.facebook {
  background: #1877f2;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.social-icon-btn:hover {
  transform: translateY(-6px) scale(1.15);
  border-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.social-icon-btn svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff !important;
  fill: none;
}

/* Avatar Head Blink Animation (Rodapé) */
.footer-avatar-head {
  width: 64px;
  height: 64px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  user-select: none;
}

.footer-avatar-head:hover,
.footer-avatar-head:active {
  animation: headBlink 0.35s infinite alternate;
}

@keyframes headBlink {
  0% {
    opacity: 1;
    transform: scale(1.05) rotate(0deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 20px #ff6600);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.2) rotate(6deg);
    filter: drop-shadow(0 0 25px #ffffff);
  }
  100% {
    opacity: 1;
    transform: scale(1.1) rotate(-6deg);
    filter: drop-shadow(0 0 30px #00e5ff);
  }
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

/* --------------------------------------------------------------------------
   15. MEDIA QUERIES RESPONSIVAS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-slider-nav {
    width: 44px;
    height: 44px;
  }
  .timeline-track-line {
    left: 20px;
  }
  .timeline-event-row, .timeline-event-row.inverted {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
  .timeline-event-row.inverted .timeline-event-content,
  .timeline-event-row.inverted .timeline-event-media {
    order: initial !important;
  }
  .timeline-node-marker {
    left: 20px;
  }
  .canedo-grid, .numeros-grid {
    grid-template-columns: 1fr;
  }
  .proposta-grid-editorial, .proposta-scene.inverted .proposta-grid-editorial {
    grid-template-columns: 1fr;
  }
  .proposta-scene.inverted .proposta-text-col,
  .proposta-scene.inverted .proposta-media-col {
    order: initial !important;
  }
  .galeria-item-tall, .galeria-item-wide, .galeria-item-third {
    grid-column: span 12;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 640px) {
  .header-right-nav {
    display: none;
  }
  .hero-slider-container {
    aspect-ratio: 4/3;
    min-height: 320px;
  }
  .hero-slider-nav.prev {
    left: 12px;
  }
  .hero-slider-nav.next {
    right: 12px;
  }
}
