/* ================================================
    ONE PAGE CAMPANHA THOMAZ HENRIQUE 22111 - CSS
   ================================================ */

:root {
  --verde-campanha: #189838;
  --azul-campanha: #0E5BA7;
  --amarelo-campanha: #F8C606;
  --azul-escuro-campanha: #242F5E;
  --cinza-divisor: #D9D9D9;
  --cinza-secao: #F6F6F6;
  --branco: #FFFFFF;
  --fonte-principal: 'Montserrat', sans-serif;
  --transition-smooth: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--fonte-principal);
}

body {
  background-color: var(--branco);
  color: #333333;
  overflow-x: hidden;
}

.container-campanha {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
     FAIXA SUPERIOR (TICKER / MARQUEE INFINITO)
   =============================================*/

.topbar-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #189838;
  color: #FFFFFF;
  padding: 10px 0;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
}

.topbar-ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
}

.topbar-ticker-track:hover {
  animation-play-state: paused;
}

.topbar-ticker-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.topbar-ticker-group .dot {
  color: #F8C606;
  font-size: 1rem;
}

@keyframes tickerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.topbar-campanha {
  background-color: var(--verde-campanha);
  color: var(--branco);
  text-align: center;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1002;
}

.header-campanha {
  position: fixed;
  top: 33px;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.header-campanha.scrolled {
  top: 0;
  background-color: var(--branco);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container-campanha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header-campanha.scrolled .nav-container-campanha {
  height: 70px;
}

.logo-campanha {
  display: inline-flex;
  align-items: center;
}

.logo-campanha img {
  height: 50px !important;
  width: auto !important;
  max-width: 240px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-campanha .logo-scrolled {
  display: none !important;
}

.logo-campanha .logo-padrao {
  display: block !important;
  margin-top: 8px;
}

.header-campanha.scrolled .logo-padrao {
  display: none !important;
}

.header-campanha.scrolled .logo-scrolled {
  display: block !important;
  margin-top: 0 !important;
}

.header-campanha.scrolled .logo-campanha img {
  margin-top: 0;
}

.menu-campanha {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.menu-campanha a {
  text-decoration: none;
  color: var(--branco);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 6px !important;
  padding: 5px 0;
  transition: var(--transition-smooth);
}

.header-campanha.scrolled .menu-campanha a {
  color: var(--azul-escuro-campanha);
  padding-bottom: 6px !important;
}

.menu-campanha a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--amarelo-campanha);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* --- HOVER E ACTIVE --- */

.menu-campanha a:hover::after {
  width: 40% !important;
}

.menu-campanha a.active::after {
  width: 40% !important;
}

/* --- BOTÃO FALE CONOSCO (MENU) --- */

.menu-campanha a.btn-fale-conosco,
.btn-fale-conosco,
.header-campanha.scrolled .menu-campanha a.btn-fale-conosco,
.header-campanha.scrolled .btn-fale-conosco {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important; 
  padding: 12px 24px !important;
  height: auto !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  background-color: var(--verde-campanha);
  color: var(--branco) !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  transform: none !important;
  text-decoration: none;
  box-shadow: none !important;
  transition: background-color 0.2s ease !important;
}

.menu-campanha a.btn-fale-conosco::after,
.btn-fale-conosco::after,
.header-campanha.scrolled .menu-campanha a.btn-fale-conosco::after,
.header-campanha.scrolled .btn-fale-conosco::after {
  display: none !important;
}

.btn-fale-conosco img,
.btn-fale-conosco svg,
.btn-fale-conosco .icon-whatsapp-btn {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  display: block !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
}

.btn-fale-conosco:hover {
  background-color: #147f2e !important;
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* --- MENU (RESPONSIVO) --- */

.hamburger-campanha {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-campanha span {
  width: 25px;
  height: 3px;
  background-color: var(--branco);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.header-campanha.scrolled .hamburger-campanha span {
  background-color: var(--azul-escuro-campanha);
}

/* --- BOTÃO NO SCROLL --- */

.header-campanha.scrolled .menu-campanha a.btn-fale-conosco,
.header-campanha.scrolled .btn-fale-conosco {
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  height: auto !important;
  line-height: 1 !important;
}

/* =====================================
    BANNER ROTATIVO (VERSÃO DEFINITIVA)
   ===================================== */

.banner-slider-campanha {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background-color: var(--azul-escuro-campanha, #000);
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.banner-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.banner-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px;
  box-sizing: border-box;
}

.banner-content {
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 100px;
  box-sizing: border-box;
  color: var(--branco, #ffffff);
}

.banner-title {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase !important;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 580px;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  display: block !important;
}

.banner-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 500px;
  color: #ffffff !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  display: block !important;
}

/* Controles de Navegação (Seta) */
.banner-nav-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.banner-arrow {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: var(--branco, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth, all 0.3s ease);
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.banner-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.banner-dots .dot {
  width: 40px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition-smooth, all 0.3s ease);
}

.banner-dots .dot.active {
  background-color: var(--amarelo-campanha, #ffc107);
  width: 60px;
}

/* ==============================================
    RESPONSIVO (DISPOSITIVOS MÓVEIS - ATÉ 768PX)
   ============================================== */

@media (max-width: 768px) {
  .banner-slider-campanha {
    height: 100vh;
  }

  .banner-slider-campanha .banner-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 15px 120px 15px !important;
    box-sizing: border-box !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .banner-slider-campanha .banner-content {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .banner-slider-campanha .banner-title {
    font-size: 1.8rem;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  .banner-slider-campanha .banner-subtitle {
    font-size: 0.95rem;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  .banner-nav-container {
    padding: 0 10px;
  }

  .banner-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.secao-thomaz {
  background-color: var(--azul-campanha);
  color: var(--branco);
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.grid-thomaz {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.foto-thomaz-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.foto-thomaz-container img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: auto;
}

.conteudo-thomaz {
  padding-top: 40px;
  padding-bottom: 60px;
}

.titulo-secao-campanha {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.detalhe-svg-tricolor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
}

.detalhe-svg-tricolor .traco-verde {
  width: 40px;
  height: 5px;
  background-color: var(--verde-campanha);
  border-radius: 3px;
}

.detalhe-svg-tricolor .traco-amarelo {
  width: 25px;
  height: 5px;
  background-color: var(--amarelo-campanha);
  border-radius: 3px;
}

.detalhe-svg-tricolor .traco-branco {
  width: 15px;
  height: 5px;
  background-color: var(--branco);
  border-radius: 3px;
}

.texto-thomaz p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
}

.texto-thomaz p:last-child {
  margin-bottom: 0;
}

/* --- FRASE DE DESTAQUE 1 --- */
.frase-destaque-1 {
  background-color: var(--branco);
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.container-frase-destaque {
  max-width: 900px;
  margin: 0 auto;
}

.icone-bandeira-brasil {
  width: 45px;
  height: auto;
  margin-bottom: 24px;
}

.texto-frase-destaque {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--azul-escuro-campanha);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.divisor-cinza {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background-color: var(--cinza-divisor);
  margin: 50px auto 0 auto;
}

@media (max-width: 992px) {
  .frase-destaque-1 {
    padding: 70px 0;
  }
}

/* --- RESPONSIVIDADE  --- */

@media (max-width: 992px) {
  .hamburger-campanha { display: flex; }
  
  .menu-campanha {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--branco);
    flex-direction: column;
    padding: 80px 20px 30px 20px;
    gap: 20px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.15);
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .menu-campanha.active { left: 0; }
  
  .menu-campanha a {
    color: var(--azul-escuro-campanha) !important;
  }
  
  .banner-slider-campanha { height: 600px; }
  
  .banner-content {
    max-width: 100%;
    margin-left: 0;
    padding: 0 40px;
  }

  .banner-title { font-size: 2rem; }

  .secao-thomaz { padding-top: 60px; }

  .grid-thomaz {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .conteudo-thomaz {
    padding-bottom: 40px;
    order: 1;
  }

  .foto-thomaz-container { order: 2; }

  .detalhe-svg-tricolor { justify-content: center; }

  .texto-frase-destaque { font-size: 1.3rem; }
}

/* ======================================================
    TRAJETÓRIA, VÍDEO MODAL E GALERIA DE FOTOS
   ====================================================== */

/* --- SEÇÃO TRAJETÓRIA --- */

.secao-trajetoria {
  background-color: var(--cinza-secao);
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.cabecalho-secao {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.cabecalho-secao .titulo-secao-campanha {
  color: var(--azul-escuro-campanha);
  font-size: 2.2rem;
  font-weight: 800;
}

.cabecalho-secao .detalhe-svg-tricolor {
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.subtitulo-secao {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.6;
}

.grid-trajetoria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.card-video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.card-video-thumb img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card-video-thumb:hover img {
  transform: scale(1.05);
}

.overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.card-video-thumb:hover .overlay-play {
  background: rgba(0, 0, 0, 0.2);
}

.btn-play-icon {
  width: 70px;
  height: 70px;
  background-color: var(--verde-campanha);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 5px;
  box-shadow: 0 0 20px rgba(24, 152, 56, 0.6);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card-video-thumb:hover .btn-play-icon {
  transform: scale(1.15);
  background-color: var(--amarelo-campanha);
  color: var(--azul-escuro-campanha);
}

.texto-trajetoria-bloco h3 {
  font-size: 1.6rem;
  color: var(--azul-escuro-campanha);
  font-weight: 800;
  margin-bottom: 20px;
}

.texto-trajetoria-bloco p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 15px;
}

.secao-galeria {
  padding-top: 20px;
}

.secao-galeria .titulo-galeria {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul-escuro-campanha);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.grid-galeria-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.galeria-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 47, 94, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.icone-hover-galeria {
  width: 36px;
  height: 36px;
  stroke: var(--amarelo-campanha);
  transition: transform 0.3s ease;
}

.galeria-item:hover .icone-hover-galeria {
  transform: scale(1.15);
}

.galeria-item:hover .galeria-item-overlay {
  opacity: 1;
}

/* --- MODAL DE VÍDEO E IMAGEM --- */

.modal-campanha {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-campanha.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-conteudo {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.modal-conteudo iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.modal-conteudo img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.btn-fechar-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--branco);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-fechar-modal:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* --- RESPONSIVIDADE --- */

@media (max-width: 992px) {
  .grid-trajetoria {
    grid-template-columns: 1fr;
  }

  .grid-galeria-fotos {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-conteudo iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .grid-galeria-fotos {
    grid-template-columns: 1fr;
  }

  .card-video-thumb img {
    height: 260px;
  }
}

/* =======================================
    SEÇÃO PRINCIPAL PROPOSTAS (CARROSSEL)
   ======================================= */

.secao-propostas {
  background-color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.carrossel-propostas-wrapper {
  max-width: 1000px;
  margin: 50px auto 0 auto;
}

.carrossel-propostas-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.coluna-imagem-proposta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-imagem-proposta {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  background-color: #E0E0E0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.box-imagem-proposta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.indicadores-proposta {
  display: flex;
  gap: 12px;
  width: 100%;
}

.barramenu-proposta {
  flex: 1;
  height: 4px;
  background-color: #E0E0E0;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.barramenu-proposta.active {
  background-color: var(--azul-campanha);
  height: 4px;
}

.coluna-conteudo-proposta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.titulo-destaque-proposta {
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul-campanha);
  line-height: 1.25;
  margin-bottom: 20px;
  transition: opacity 0.4s ease-in-out;
}

.texto-descricao-proposta {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 90px;
  transition: opacity 0.4s ease-in-out;
}

.navegacao-setas-proposta {
  display: flex;
  gap: 12px;
}

.btn-seta-proposta {
  width: 44px;
  height: 50px;
  background-color: var(--azul-campanha);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.btn-seta-proposta svg {
  width: 22px;
  height: 22px;
  stroke: var(--branco);
}

.btn-seta-proposta:hover {
  background-color: var(--azul-escuro-campanha);
  transform: none;
}

/* Responsividade */

@media (max-width: 868px) {
  .carrossel-propostas-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .coluna-conteudo-proposta {
    align-items: flex-start;
  }
}

/* ================================
    CAIXA DE MENSAGEM EM DESTAQUE
   ================================ */

.secao-mensagem-destaque {
  background-color: #F6F6F6;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.card-mensagem-destaque {
  background-color: #242F5E;
  border-radius: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.texto-mensagem-destaque {
  color: #FFFFFF;
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
}

.nome-autor-destaque {
  display: block;
  color: #F8C606;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsividade */
@media (max-width: 768px) {
  .secao-mensagem-destaque {
    padding: 50px 0;
  }
  
  .card-mensagem-destaque {
    padding: 40px 24px;
    border-radius: 12px;
  }
  
  .texto-mensagem-destaque {
    font-size: 1.1rem;
  }
  
  .nome-autor-destaque {
    font-size: 1rem;
  }
}

/* =========================
    SEJA APOIADOR (#F6F6F6)
   ========================= */

.secao-apoiador {
  background-color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.grid-cards-apoiador {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.card-apoiador {
  border-radius: 16px;
  padding: 45px 30px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-apoiador:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-azul {
  background-color: #0E5BA7;
}

.card-verde {
  background-color: #189838;
}

.titulo-card-apoiador {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.descricao-card-apoiador {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  min-height: 70px;
}

.btn-card-apoiador {
  background-color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  transition: background-color 0.4s ease, color 0.4s ease;
}

.btn-texto-azul {
  color: #0E5BA7;
}

.btn-texto-verde {
  color: #189838;
}

.btn-card-apoiador:hover {
  background-color: #242F5E;
  color: #FFFFFF;
}

.frase-destaque-apoiador {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

.texto-frase-apoiador {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--azul-escuro-campanha);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Responsividade */

@media (max-width: 992px) {
  .grid-cards-apoiador {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .descricao-card-apoiador {
    min-height: auto;
  }

  .texto-frase-apoiador {
    font-size: 1.6rem;
  }
}

/* =====================================
    RECEBA AS NOVIDADES EM PRIMEIRA MÃO
   ===================================== */

.secao-novidades {
  background-color: #F6F6F6;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.card-novidades-whatsapp {
  background-color: #FFFFFF;
  border: 2px solid #242F5E;
  border-radius: 16px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.coluna-titulo-novidades {
  flex: 0 0 280px;
}

.titulo-novidades {
  font-size: 1.45rem;
  font-weight: 800;
  color: #242F5E;
  line-height: 1.25;
}

.divisor-novidades {
  width: 2px;
  height: 50px;
  background-color: #242F5E;
  opacity: 0.6;
}

.coluna-texto-novidades {
  flex: 1;
}

.texto-novidades {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.45;
}

.coluna-btn-novidades {
  flex: 0 0 auto;
}

.btn-participar-whatsapp {
  background-color: #189838;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  
  transition: background-color 0.4s ease;
}

.btn-participar-whatsapp:hover {
  background-color: #13772c;
  
  transform: none;
  box-shadow: none;
}

/* Responsividade */

@media (max-width: 992px) {
  .card-novidades-whatsapp {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 20px;
  }

  .coluna-titulo-novidades {
    flex: initial;
  }

  .divisor-novidades {
    width: 60px;
    height: 2px;
    margin: 0 auto;
  }

  .btn-participar-whatsapp {
    width: 100%;
  }
}

/* ========
    RODAPÉ
   ======== */

/* --- PRIMEIRA BARRA --- */

.rodape-barra-principal {
  background-color: #0E5BA7;
  padding: 45px 0;
  color: #FFFFFF;
}

.rodape-flex-principal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rodape-logo img {
  max-width: 240px;
  height: auto;
  display: block;
}

.rodape-info-candidato {
  text-align: right;
}

.nome-candidato-rodape {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.cargo-candidato-rodape {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.95;
}

.dados-legais-rodape p {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.85;
}

.dados-legais-rodape a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dados-legais-rodape a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* --- SEGUNDA BARRA --- */

.rodape-barra-direitos {
  background-color: #242F5E;
  padding: 22px 0;
  color: #FFFFFF;
}

.rodape-flex-direitos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.texto-direitos {
  font-size: 0.88rem;
  opacity: 0.85;
}

/* Redes Sociais */

.rodape-redes-sociais {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rede-icon-btn {
  width: 38px;
  height: 38px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242F5E;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.rede-icon-btn svg {
  width: 20px;
  height: 20px;
  transition: stroke 0.25s ease, fill 0.25s ease;
}

.rede-icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Hover dos Ícones */

.rede-icon-btn:hover {
  transform: translateY(-3px);
  background-color: #F8C606;
  color: #242F5E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade */

@media (max-width: 768px) {
  .rodape-flex-principal {
    flex-direction: column;
    text-align: center;
  }

  .rodape-info-candidato {
    text-align: center;
  }

  .rodape-flex-direitos {
    flex-direction: column-reverse;
    text-align: center;
    gap: 15px;
  }
}

/* ================
    POP-UP (SUAVE)
   ================ */

/* Container Escuro (Overlay) */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Caixa do Pop-up (Entrada Flutuante) */

.popup-container {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  overflow: hidden;
  transform: translateY(30px) scale(0.92);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popup-overlay.active .popup-container {
  transform: translateY(0) scale(1);
}

/* Imagem Responsiva */

.popup-img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Botão Fechar */

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: var(--branco, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth, all 0.3s ease);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}

/* ==========================================================================
   SEÇÃO PAVANATO E THOMAZ
   ========================================================================== */

.secao-pavanato-thomaz {
  background-color: #ffffff;
  color: var(--texto-escuro, #222222);
  padding: 80px 0 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.grid-pavanato-thomaz {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-end;
}

/* Conteúdo Esquerda */
.conteudo-pavanato-thomaz {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 80px;
}

/* Título para fundo claro */
.titulo-secao-campanha-escuro {
  color: var(--azul-escuro-campanha, #0E5BA7);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.texto-pavanato-thomaz p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 15px;
}

.texto-pavanato-thomaz p:last-child {
  margin-bottom: 0;
}

/* Fala do Pavanato em Verde e Destaque */
.texto-pavanato-thomaz strong.citacao-pavanato,
.citacao-pavanato {
  color: var(--verde-campanha, #00A859);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Frase em destaque no final*/
.texto-pavanato-thomaz .frase-destaque-pavanato {
  color: var(--azul-campanha, #00A3E0);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Foto Direita Integrada */
.midia-pavanato-thomaz-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.img-pavanato-thomaz-recorte {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsividade */
@media (max-width: 992px) {
  .secao-pavanato-thomaz {
    padding: 60px 0 0 0;
  }

  .grid-pavanato-thomaz {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .conteudo-pavanato-thomaz {
    align-items: center;
    padding-bottom: 0;
  }

  .detalhe-tricolor-fundo-branco {
    justify-content: center;
  }

  .img-pavanato-thomaz-recorte {
    max-width: 80%;
    margin: 0 auto;
  }
}