/* ============================================
   COLETIVO COM VOCÊ | JOTTA PINTO
   Clean, Fluid & Hero Blue Design System
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Paleta de Cores Azul Aberto (Estilo Hero) */
  --navy-deep: #0c234a;
  --navy-dark: #10316b;
  --navy: #133b7c;
  --blue-mid: #1b4ea0;
  --blue-light: #2463c6;
  --yellow: #f5c518;
  --yellow-hover: #ffd940;
  --white: #ffffff;
  --white-off: #f0f2f8;
  --gray-light: #d0d7e5;
  --gray: #98a5be;

  /* Tipografia */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Sombras Sutis */
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Ajustes de variáveis para telas menores */
@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
  }
}

/* --- RESET / BASE COM PREVENÇÃO RIGOROSA DE OVERFLOW --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background-color: var(--navy-deep);
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6, p, span, a, div {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- HEADER / NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(16, 49, 107, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header__logo-text span {
  color: var(--yellow);
}

.header__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav {
  display: none;
}

.header__cta {
  display: none !important;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.header__menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--navy-dark);
  z-index: 999;
  transition: right var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: 2rem 1rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
}

.mobile-menu__link:hover {
  color: var(--yellow);
}

.mobile-menu__link--cta {
  color: var(--yellow);
  font-size: 1.1rem;
}

.mobile-menu__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--yellow);
}

@media (min-width: 1024px) {
  .header__logo-text {
    font-size: 1.25rem;
  }

  .header__number {
    font-size: 1.3rem;
  }

  .header__nav {
    display: flex;
    gap: var(--space-md);
  }

  .header__nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
  }

  .header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition-base);
  }

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

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

  .header__cta {
    display: inline-flex !important;
  }

  .header__menu-btn {
    display: none;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-align: center;
  max-width: 100%;
}

.btn--primary {
  background: var(--yellow);
  color: var(--navy-dark);
}

.btn--primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 197, 24, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--small {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg--desktop {
  display: none;
}

.hero__bg--mobile {
  display: block;
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--navy-deep) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  bottom: var(--space-md);
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 var(--container-padding);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.hero__actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    width: auto;
  }
  .hero__actions .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .hero__bg--desktop {
    display: block;
    object-position: center center;
  }

  .hero__bg--mobile {
    display: none;
  }

  .hero__overlay {
    bottom: var(--space-xl);
    padding: 0 var(--space-2xl);
  }

  .hero__actions {
    justify-content: flex-start;
  }
}

/* --- SECTION LABELS & HEADERS --- */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: var(--space-xs);
}

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

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* --- LISTAS DE BULLETS OFICIAIS DO PDF --- */
.official-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
  margin-bottom: var(--space-xl);
}

.official-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.official-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--yellow);
  font-size: 1.4rem;
  line-height: 1;
}

.official-bullets li strong {
  color: var(--white);
}

/* ============================================
   SECAO 02: O COLETIVO
   ============================================ */
.coletivo {
  padding: var(--space-2xl) 0;
  background: var(--navy-dark);
}

.coletivo__header {
  max-width: 750px;
  margin-bottom: var(--space-2xl);
}

.coletivo__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.coletivo__description {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.coletivo__members-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .coletivo__members-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .coletivo__members-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.member-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.member-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.member-chip__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--yellow);
}

.member-chip__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ============================================
   SECAO 03: QUEM E JOTTA PINTO
   ============================================ */
.jotta-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-deep);
}

.jotta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .jotta-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
  }
}

.jotta-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.3rem;
}

.jotta-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--yellow);
  margin-bottom: var(--space-md);
}

.jotta-vote-badge {
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: inline-block;
  max-width: 100%;
}

.jotta-vote-badge__line {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.jotta-vote-badge__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  line-height: 0.9;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.jotta-photo-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.jotta-photo-frame {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--navy-dark);
}

.jotta-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (min-width: 768px) {
  .jotta-photo {
    height: 520px;
  }
}

/* ============================================
   SECAO 04: INTEGRANTES (SHOWCASE TABS)
   ============================================ */
.quem-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-dark);
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  width: 100%;
}

.tab-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray-light);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

@media (min-width: 768px) {
  .tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .tab-btn {
    width: auto;
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
  }
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.tab-btn.active {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
  font-weight: 800;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-panel.active {
  display: block;
}

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

.tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .tab-panel__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-xl);
  }
}

.tab-panel__media {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tab-panel__media img {
  width: 100%;
  max-width: 480px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

@media (min-width: 768px) {
  .tab-panel__media img {
    height: 520px;
  }
}

.tab-panel__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
}

.tab-panel__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ============================================
   SECAO 05: COMO FUNCIONA (DECLARACAO + URNA)
   ============================================ */
.funciona-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-deep);
}

.funciona-clean {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.funciona-clean__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.funciona-clean__text {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* --- URNA ELETRÔNICA WIDGET RESPONSIVA --- */
.urna-widget {
  width: 100%;
  max-width: 650px;
  margin: 2rem auto 0;
  background: #061530;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.urna-widget__screen {
  background: #040c1e;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.urna-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}

.urna-screen__badge {
  color: var(--yellow);
  font-weight: 700;
}

.urna-screen__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 520px) {
  .urna-screen__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.urna-screen__cargo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 0.3rem;
}

.urna-screen__digits {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

.urna-screen__digits .digit {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  background: rgba(245, 197, 24, 0.15);
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.urna-screen__candidate-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.urna-screen__party {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
  margin-top: 0.2rem;
}

.urna-screen__photo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.urna-screen__photo-box img {
  width: 95px;
  height: 115px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (min-width: 520px) {
  .urna-screen__photo-box img {
    width: 110px;
    height: 135px;
  }
}

.urna-screen__photo-caption {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--gray-light);
  margin-top: 0.3rem;
}

.urna-screen__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  text-align: center;
  transition: all 0.3s ease;
}

.urna-screen__footer.confirmed {
  background: rgba(0, 200, 83, 0.2);
  color: #00e676;
  font-weight: 800;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.urna-widget__keypad {
  margin-top: 1rem;
  background: #030a18;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.keypad-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.keypad-actions {
  display: flex;
  width: 100%;
  justify-content: center;
}

.keypad-btn--green {
  background: #00c853;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 200, 83, 0.4);
  width: 100%;
  max-width: 280px;
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
  letter-spacing: 0.08em;
}

/* ============================================
   SECAO 07: PAUTAS (SLIDER/CARROSSEL FLUIDO)
   ============================================ */
.pautas-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.pautas-slider-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pautas-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.2rem;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pautas-slider::-webkit-scrollbar {
  display: none;
}

.pauta-slide {
  flex: 0 0 92%;
  max-width: 100%;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--yellow);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), background var(--transition-base);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .pauta-slide {
    flex: 0 0 45%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

@media (min-width: 1024px) {
  .pauta-slide {
    flex: 0 0 31%;
    max-width: 360px;
  }
}

.pauta-slide:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.pauta-slide__num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pauta-slide__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pauta-slide__desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.55;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.slider-counter {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
  transform: scale(1.08);
}

/* ============================================
   SECAO CONTATO & INSTAGRAM
   ============================================ */
.contato-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-deep);
}

.contato-clean {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contato-clean__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.contato-clean__subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-bottom: var(--space-xl);
}

.contato-clean__actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

/* ============================================
   SECAO CHAMADA FINAL
   ============================================ */
.final-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
}

.final-clean {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-clean__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.final-clean__logo span {
  color: var(--yellow);
}

.final-clean__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.final-clean__badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white-off);
  margin-bottom: var(--space-xl);
}

.final-clean__badge strong {
  color: var(--yellow);
  font-size: 1.6rem;
}

/* ============================================
   RODAPE MINIMALISTA RESPONSIVO
   ============================================ */
.footer-clean {
  background: #06142c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-clean__inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-light);
}

@media (min-width: 768px) {
  .footer-clean__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-clean__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.footer-clean__brand span {
  color: var(--yellow);
}

.footer-clean__legal {
  max-width: 600px;
}

/* ============================================
   ÍCONE GRÁFICO ANIMADO E ANIMAÇÕES ESPECIAIS
   ============================================ */
.animated-badge-hero {
  position: relative;
  width: 140px;
  height: 110px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-bubble {
  position: absolute;
  left: 10px;
  bottom: 5px;
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 1.1rem 1.3rem;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.45);
  animation: floatBubble 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-check {
  position: absolute;
  right: 15px;
  top: 5px;
  background: #ffffff;
  padding: 0.65rem;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  animation: floatCheck 3.5s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes floatCheck {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

/* Animação suave nos dígitos da Urna */
.urna-screen__digits .digit {
  animation: pulseDigit 3s ease-in-out infinite alternate;
}

@keyframes pulseDigit {
  0%, 100% {
    box-shadow: 0 0 5px rgba(245, 197, 24, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(245, 197, 24, 0.6);
  }
}

/* Efeito Shimmer sutil nos botões primários */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: shimmerSweep 5s infinite;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}
