@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Outfit:wght@400;700;900&display=swap');

:root {
  --primary-blue: #005aa7;
  --secondary-orange: #f5821f;
  --bg-blue: #004a8b;
  --text-white: #ffffff;
  --text-dark: #1a1a1a;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-main);
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ========== NAVBAR ========== */
.navbar {
  background-color: var(--primary-blue) !important;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 20%;
  width: auto;
  z-index: 2000;
  transition: all 0.3s ease;
}

.logo-card img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.navbar-scrolled .logo-card {
  top: 5px;
}

.navbar-scrolled .logo-card img {
  height: 60px;
}

.nav-link {
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-item.active .nav-link,
.nav-link.active {
  background-color: var(--secondary-orange) !important;
  border-radius: 50px;
  padding: 4px 15px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  background-color: var(--primary-blue);
  background-image: none;
  padding-top: 120px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, #00569d 50%, #0060ad 50.2%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 20;
}

.hero-image-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 10;
  pointer-events: none;
}

.hero-image-bg img.hero-slide {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  animation: heroSlide 25s infinite;
}

.hero-image-bg img.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-image-bg img.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-image-bg img.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-image-bg img.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-image-bg img.hero-slide:nth-child(5) { animation-delay: 20s; }

@keyframes heroSlide {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    min-height: 100svh;
  }

  /* Overlay semi-transparente sobre a imagem */
  .hero::after {
    background: rgba(0, 90, 167, 0.55);
    z-index: 15;
  }

  .hero-image-bg {
    width: 100%;
    left: 0;
    right: 0;
  }

  /* Base mobile: telas entre 480px e 768px */
  .hero-image-bg img.hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% top;
  }
}

/* Telas médias: smartphones maiores (ex: Galaxy S, Pixel) */
@media (max-width: 480px) {
  .hero-image-bg img.hero-slide {
    object-position: 75% top;
  }
}

/* Telas pequenas: iPhones padrão e similares */
@media (max-width: 390px) {
  .hero-image-bg img.hero-slide {
    object-position: 68% top;
  }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .hero-image-bg img.hero-slide {
    object-position: 62% top;
  }
}


.hero-title {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--text-white);
  animation: fadeInLeft 1s ease;
}

.hero-title span {
  color: var(--secondary-orange);
}

.hero-social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  animation: fadeInLeft 1.2s ease;
}

.social-circle {
  width: 42px;
  height: 42px;
  background: #0084ff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-circle:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* removed old hero-img styles to use hero-image-bg */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== SECTION TITLE ========== */
.section-title {
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.section-title::before {
  content: "";
  width: 6px;
  height: 45px;
  background: var(--secondary-orange);
  display: inline-block;
  border-radius: 10px;
}

.section-container {
  padding: 80px 0;
  position: relative;
}

/* ========== QUEM SOU SECTION ========== */
.section-quem-sou {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 100px 0;
}

.quem-sou-image-container {
  position: relative;
  transition: transform 0.4s ease;
}

.quem-sou-image-container:hover {
  transform: translateY(-10px);
}

.quem-sou-image-container img {
  border-radius: 40px;
  max-width: 340px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
}

.caption-text {
  font-weight: 700;
  color: #888;
  font-size: 0.9rem;
  max-width: 280px;
  margin: 15px auto 0;
  line-height: 1.3;
}

.quem-sou-content-wrapper {
  position: relative;
}

.quem-sou-accent-bar {
  width: 6px;
  background: var(--secondary-orange);
  border-radius: 50px;
  flex-shrink: 0;
}

.quem-sou-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.quem-sou-text p {
  margin-bottom: 1.5rem;
}

.quem-sou-text p:last-child {
  margin-bottom: 0;
}

.quem-sou-text strong {
  color: var(--primary-blue);
  font-weight: 800;
}

@media (max-width: 768px) {
  .quem-sou-content-wrapper {
    gap: 20px !important;
  }

  .quem-sou-text {
    font-size: 1.05rem;
  }

  .quem-sou-image-container img {
    max-width: 280px;
  }
}

/* removed orange and blue section accents */

/* ========== SECRETÁRIO SECTION ========== */
.section-secretario {
  background: var(--primary-blue);
  color: #fff;
  position: relative;
  z-index: 1;
}

.orange-accent-top-left {
  position: absolute;
  left: 20px;
  top: -30px;
  width: 120px;
  height: 80px;
  background: var(--secondary-orange);
  border-radius: 20px;
}

.secretario-content {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.secretario-content p {
  margin-bottom: 1.5rem;
}

/* ========== NOTÍCIAS SECTION ========== */
.section-noticias {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-noticias::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 90, 167, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-noticias::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 90, 167, 0.1);
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.noticia-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary-orange);
  display: flex;
  flex-direction: column;
}

.noticia-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.noticia-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.noticia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.noticia-card:hover .noticia-img {
  transform: scale(1.1);
}

.noticia-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(245, 130, 31, 0.3);
}

.noticia-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noticia-date {
  color: #888;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.noticia-date i {
  color: var(--secondary-orange);
}

.noticia-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.noticia-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-ler-mais {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.btn-ler-mais:hover {
  color: var(--secondary-orange);
  transform: translateX(5px);
}

.btn-ver-todas {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-orange) 0%, #e06b10 100%);
  color: #fff;
  border: none;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(245, 130, 31, 0.35);
}

.btn-ver-todas:hover {
  background: linear-gradient(135deg, #e06b10 0%, var(--secondary-orange) 100%);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245, 130, 31, 0.45);
}

/* ========== CONQUISTAS SECTION ========== */
.section-conquistas {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
}

.section-conquistas::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.conquista-card {
  background: #fff;
  border-radius: 30px;
  padding: 0;
  text-align: center;
  position: relative;
  margin-top: 30px;
  height: 100%;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.conquista-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.conquista-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.conquista-card:hover .conquista-img {
  transform: scale(1.1);
}

.conquista-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.conquista-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-orange);
  color: #fff;
  padding: 6px 15px;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(245, 130, 31, 0.4);
  z-index: 5;
}

.conquista-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding: 40px 25px 20px;
  text-align: left;
  flex: 1;
}

.conquista-content strong {
  color: var(--primary-blue);
}

.btn-continuar {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding: 0 25px 30px;
  transition: all 0.3s ease;
}

.btn-continuar:hover {
  color: var(--secondary-orange);
  gap: 10px;
}

.outras-conquistas-btn {
  background: var(--secondary-orange);
  color: #fff;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(245, 130, 31, 0.4);
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.outras-conquistas-btn:hover {
  background: #d66f0a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 130, 31, 0.6);
  color: #fff;
}

/* ========== PROJETOS SECTION ========== */
.section-projetos {
  background: #f8f9fa;
}

.projeto-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid var(--secondary-orange);
}

.projeto-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.projeto-numero {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.projeto-titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.projeto-descricao {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* ========== PISO SALARIAL SECTION ========== */
.section-piso {
  background: var(--bg-blue);
  padding: 80px 0;
}

.piso-container {
  background: #fff;
  border-radius: 80px;
  padding: 60px 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.piso-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 3rem;
  color: var(--secondary-orange);
}

.piso-title span {
  width: 4px;
  height: 40px;
  background: var(--primary-blue);
  display: block;
}

.piso-box {
  background: var(--primary-blue);
  border-radius: 50px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  cursor: pointer;
}

.piso-link {
  text-decoration: none !important;
  display: block;
  height: 100%;
}

.piso-box:hover {
  transform: scale(1.05);
  background: var(--bg-blue);
  box-shadow: 0 15px 40px rgba(0, 90, 167, 0.3);
}

.piso-box img {
  height: 120px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.piso-box h3 {
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.1;
  position: relative;
}

.piso-box h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: var(--primary-blue);
  margin: 10px auto 0;
}

/* ========== MAPA SECTION REDESIGN ========== */
.section-mapa {
  background: var(--bg-blue);
  padding: 80px 0;
}

.container-mapa-box {
  padding: 0;
}

.mapa-headline {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}

.mapa-headline span {
  color: var(--secondary-orange);
  position: relative;
  display: inline-block;
}

.mapa-headline span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 6px;
  background: var(--secondary-orange);
  border-radius: 10px;
}

.active-city-label {
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.active-city-label.visible {
  opacity: 1;
  visibility: visible;
}

.active-city-label small {
  font-weight: 700;
  letter-spacing: 1px;
}

.active-city-label h3 {
  font-size: 3.5rem;
  color: #0084ff;
  font-weight: 900;
  margin-top: -5px;
  letter-spacing: -1px;
}

.map-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 15px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info-card:hover {
  transform: translateY(-5px);
}

.card-label {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--secondary-orange);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-value {
  font-size: 1.15rem;
  /* Reduzido de 1.3rem para caber valores grandes */
  font-weight: 900;
  color: var(--primary-blue);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.1;
  margin-top: 5px;
}

.btn-acoes-mapa {
  background-color: var(--secondary-orange);
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(245, 130, 31, 0.4);
  transition: all 0.3s ease;
}

.btn-acoes-mapa:hover {
  transform: scale(1.05);
  background-color: #e6750f;
}

.mapa-grid-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mapa-content-wrapper {
  display: contents;
  /* No mobile, permite reordenar */
}

.mapa-header-area {
  order: 1;
}

.mapa-map-area {
  order: 2;
  position: relative;
}

.mapa-cards-area {
  order: 3;
}

@media (min-width: 992px) {
  .mapa-grid-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .mapa-content-wrapper {
    display: block;
    /* No desktop, volta a ser uma coluna única */
    width: 45%;
    order: 1;
  }

  .mapa-map-area {
    width: 55%;
    order: 2;
  }

  .mapa-header-area,
  .mapa-cards-area {
    order: unset;
    /* Reseta ordens dentro do wrapper */
  }
}

#map {
  background: transparent !important;
  border: none !important;
  width: 100%;
  height: 92vh;
  min-height: 400px;
  max-height: 950px;
  cursor: default;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  #map {
    width: 175%;
    height: 95vh;
    max-height: 1100px;
    margin-left: -37.5%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #map {
    width: 160%;
    height: 90vh;
    max-height: 950px;
    margin-left: -30%;
  }
}

@media (max-width: 991px) {
  #map {
    height: 65vh;
    max-height: 600px;
    margin-left: 0;
    width: 100%;
  }
}

.leaflet-control-container {
  display: none !important;
}

.leaflet-container {
  background: transparent !important;
  outline: 0;
}

/* ========== CONTATO SECTION ========== */
.section-contato {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
}

.contato-info h4 {
  color: var(--secondary-orange);
  margin-bottom: 20px;
}

.contato-info p {
  margin-bottom: 8px;
}

.contato-email {
  font-size: 1.5rem;
  color: var(--secondary-orange);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contato-email:hover {
  color: #fff;
}

/* ========== FOOTER ========== */
.footer-refined {
  background-color: #002d55;
  color: #fff;
  padding: 80px 0 20px 0;
}

/* ========== RODAPÉ REFINADO ========== */
.footer-refined {
  background-color: var(--bg-blue);
  padding: 100px 0 40px;
  color: #fff;
  position: relative;
}

.footer-refined-headline {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}

.footer-refined-socials {
  display: flex;
  gap: 15px;
}

.social-circle {
  width: 45px;
  height: 45px;
  background-color: #0076e0;
  /* Tom de azul ligeiramente diferente para destaque */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-circle:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-5px);
  color: #fff;
}

/* Logo Card no Rodapé */
.footer-card-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}

.footer-logo-img {
  height: 240px;
  margin-bottom: 0;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.footer-logo-text {
  text-align: center;
  color: var(--primary-blue);
}

.footer-logo-text .name {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.9;
}

.footer-logo-text .surname {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.footer-logo-text .office {
  background-color: var(--primary-blue);
  color: #fff;
  padding: 6px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 60px 0 30px;
}

.footer-bottom-text {
  font-size: 0.9rem;
}


/* ========== SECTION CONTATO FORM ========== */
.section-contato-form {
  background: #ebebeb;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-contato-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contato-form-card {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.contato-form-info {
  background-color: var(--primary-blue);
  color: #fff;
  padding: 60px 40px;
}

.form-title {
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.form-title span {
  color: var(--secondary-orange);
}

.contato-form-info p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contato-form-body {
  padding: 60px 40px;
  background-color: #fff;
}

.contato-form-body .form-label {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contato-form-body .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 2px solid #eee;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contato-form-body .form-control:focus {
  border-color: var(--secondary-orange);
  box-shadow: 0 0 0 0.25rem rgba(245, 130, 31, 0.1);
  outline: 0;
}

.btn-enviar {
  background-color: var(--secondary-orange);
  color: #fff;
  font-weight: 900;
  padding: 15px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-enviar:hover {
  background-color: #e6750f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 130, 31, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .contato-form-info {
    padding: 40px 30px;
    text-align: center;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .contato-form-body {
    padding: 30px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .navbar .container {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 15px;
  }

  .logo-card {
    position: static !important;
    margin-left: 0;
    order: 1;
  }

  .navbar-toggler {
    order: 2;
    padding: 4px 8px;
    font-size: 1rem;
  }

  .logo-card img {
    height: 60px !important;
  }

  .nav-pill-wrapper {
    margin-top: 1rem;
    border-radius: 20px;
    padding: 10px;
  }

  .nav-link {
    padding: 10px !important;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    text-align: right;
  }

  .hero-social-links {
    justify-content: flex-end;
  }

  .hero-title span {
    font-size: 3rem;
  }

  .section-title,
  .section-conquistas h2 {
    font-size: 1.8rem !important;
  }

  .section-title img,
  .section-conquistas h2 img {
    height: 30px !important;
  }

  .mapa-headline {
    font-size: 1.5rem;
    text-align: center;
  }

  .active-city-label {
    text-align: center;
    margin-top: 10px !important;
  }

  .active-city-label h3 {
    font-size: 1.5rem !important;
  }

  .piso-container {
    padding: 10px 8px;
    border-radius: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .piso-title {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.2rem;
    justify-content: center;
    gap: 8px;
  }

  .piso-title span {
    height: 25px;
    width: 3px;
  }

  .piso-box {
    border-radius: 15px;
    padding: 15px 10px;
  }

  .piso-box img {
    height: 60px;
    margin-bottom: 1rem;
  }

  .piso-box h3 {
    font-size: 1.1rem;
  }

  .piso-box h3::after {
    height: 2px;
    margin-top: 5px;
  }

  .conquista-card {
    margin: 0 auto 25px auto;
    padding: 15px 12px;
    border-radius: 20px;
    width: 85%;
  }

  .conquista-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    top: -12px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    min-width: auto;
  }

  .conquista-content {
    margin: 15px 0 10px;
  }

  .conquista-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .btn-continuar {
    margin-top: 10px;
    font-size: 0.8rem;
  }

  .outras-conquistas-btn {
    font-size: 1rem;
    padding: 12px 30px;
    margin-top: 30px;
  }

  .orange-accent-left,
  .blue-column-right {
    display: none;
  }

  .container-mapa-box {
    padding: 20px 15px;
  }
}

/* ========== SCROLL ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NOTÍCIAS CAROUSEL TWEAKS ========== */
.section-noticias {
  padding-bottom: 100px;
  /* Espaço para os indicadores */
}

#newsCarousel .carousel-control-prev,
#newsCarousel .carousel-control-next {
  opacity: 1;
  z-index: 10;
}

#newsCarousel .carousel-control-prev-icon,
#newsCarousel .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 50% 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#newsCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  opacity: 0.5;
}

#newsCarousel .carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #newsCarousel .carousel-item .col-md-4 {
    margin-bottom: 20px;
  }

  #newsCarousel .carousel-control-prev,
  #newsCarousel .carousel-control-next {
    display: none;
    /* Esconder setas no mobile para não poluir */
  }

  .section-noticias {
    padding-bottom: 60px;
  }
}

/* ========== CURIOSIDADES SECTION (Premium Polish) ========== */
.curiosidade-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.curiosidade-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.curiosidade-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 90, 167, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.curiosidade-list {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.curiosidade-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(0, 90, 167, 0.08);
  border-radius: 28px;
  margin-bottom: 30px;
  box-shadow:
    0 10px 30px rgba(0, 50, 100, 0.06),
    0 4px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.curiosidade-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 130, 31, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.curiosidade-item:hover::before {
  left: 100%;
}

.curiosidade-item:last-child {
  margin-bottom: 0;
}

.curiosidade-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 248, 1) 100%);
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 30px 60px rgba(0, 50, 100, 0.12),
    0 8px 15px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border-color: rgba(245, 130, 31, 0.25);
}

.curiosidade-item.active {
  background: linear-gradient(135deg, #fff 0%, #fffbf7 100%);
  border-color: var(--secondary-orange);
  box-shadow:
    0 35px 70px rgba(245, 130, 31, 0.18),
    0 15px 30px rgba(245, 130, 31, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.curiosidade-header {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.curiosidade-icon-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 90, 167, 0.1) 0%, rgba(0, 132, 255, 0.08) 100%);
  border: 2px solid rgba(0, 90, 167, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: var(--primary-blue);
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 90, 167, 0.08);
}

.curiosidade-item:hover .curiosidade-icon-small {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 90, 167, 0.15);
}

.curiosidade-item.active .curiosidade-icon-small {
  background: linear-gradient(135deg, var(--secondary-orange) 0%, #ff9d4d 100%);
  border-color: var(--secondary-orange);
  color: #fff;
  box-shadow:
    0 10px 25px rgba(245, 130, 31, 0.35),
    0 0 40px rgba(245, 130, 31, 0.2);
  transform: rotate(12deg) scale(1.1);
}

.curiosidade-title-row {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.curiosidade-item:hover .curiosidade-title-row {
  color: #004080;
  transform: translateX(3px);
}

.curiosidade-item.active .curiosidade-title-row {
  color: var(--secondary-orange);
  transform: translateX(5px);
}

.toggle-arrow {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #cbd5e0;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.curiosidade-item:hover .toggle-arrow {
  color: #a0aec0;
  transform: scale(1.1);
}

.curiosidade-item.active .toggle-arrow {
  transform: rotate(180deg) scale(1.15);
  color: var(--secondary-orange);
  filter: drop-shadow(0 4px 8px rgba(245, 130, 31, 0.3));
}

.curiosidade-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 40px 0 125px;
  opacity: 0;
  transform: translateY(15px);
}

.curiosidade-item.active .curiosidade-answer {
  max-height: 400px;
  padding-bottom: 42px;
  opacity: 1;
  transform: translateY(0);
}

.curiosidade-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 0;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.curiosidade-text strong {
  color: var(--primary-blue);
  font-weight: 800;
}

@media (max-width: 768px) {
  .curiosidade-section {
    padding: 80px 0;
  }

  .curiosidade-section::before,
  .curiosidade-section::after {
    display: none;
  }

  .curiosidade-item {
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .curiosidade-header {
    padding: 25px;
  }

  .curiosidade-icon-small {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    font-size: 1.3rem;
    border-radius: 16px;
  }

  .curiosidade-answer {
    padding: 0 25px 25px 88px;
  }

  .curiosidade-title-row {
    font-size: 1.1rem;
  }

  .curiosidade-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .curiosidade-item.active {
    transform: none;
  }

  .curiosidade-item:hover {
    transform: translateY(-5px);
  }
}

/* ========== SEARCH UI ========== */
.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

#news-search-input {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 15px 25px 15px 60px;
  font-size: 1.1rem;
  color: #2d3748;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

#news-search-input:focus {
  background: #fff;
  border-color: var(--secondary-orange);
  box-shadow: 0 15px 35px rgba(245, 130, 31, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.search-input-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #a0aec0;
  transition: color 0.3s ease;
}

#news-search-input:focus+.search-input-icon,
.search-wrapper:hover .search-input-icon {
  color: var(--secondary-orange);
}

.search-icon-nav {
  font-size: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-icon-nav:hover {
  color: var(--secondary-orange) !important;
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .search-icon-nav {
    margin: 10px 0;
    text-align: center;
    display: block;
  }
}

/* ========== GLOBAL SEARCH OVERLAY ========== */
.global-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 85, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.global-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-container {
  width: 90%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  position: relative;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.global-search-overlay.active .search-overlay-container {
  transform: translateY(0);
}

.close-search-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
}

.close-search-btn:hover {
  background: var(--secondary-orange);
  color: #fff;
  transform: rotate(90deg);
}

.search-input-section {
  margin-bottom: 40px;
  text-align: center;
}

.search-header-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.search-header-text p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.search-main-input-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.search-main-input-wrapper i {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--secondary-orange);
}

#global-search-input {
  width: 100%;
  background: #fff;
  border: 3px solid #edf2f7;
  border-radius: 60px;
  padding: 20px 30px 20px 75px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

#global-search-input:focus {
  outline: none;
  border-color: var(--secondary-orange);
  box-shadow: 0 15px 40px rgba(245, 130, 31, 0.15);
}

/* Results Content */
.search-results-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 15px;
}

.search-category-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0aec0;
  margin-bottom: 20px;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 10px;
  font-weight: 800;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.search-result-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  text-decoration: none !important;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}

.search-result-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-orange);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.search-result-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 90, 167, 0.05);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.search-result-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-type {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary-orange);
  display: block;
  margin-bottom: 2px;
}

.search-result-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.2;
}

.search-result-text {
  font-size: 0.85rem;
  color: #718096;
  margin: 5px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-no-results {
  text-align: center;
  padding: 60px 0;
  color: #a0aec0;
}

.search-no-results i {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.search-no-results p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Custom Scrollbar for Results */
.scrollable-refined::-webkit-scrollbar {
  width: 6px;
}

.scrollable-refined::-webkit-scrollbar-track {
  background: #f7fafc;
  border-radius: 10px;
}

.scrollable-refined::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 10px;
}

.scrollable-refined::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

@media (max-width: 768px) {
  .global-search-overlay {
    padding-top: 20px;
  }

  .search-overlay-container {
    padding: 40px 20px;
    max-height: 95vh;
    width: 95%;
  }

  .search-header-text h2 {
    font-size: 1.8rem;
  }

  #global-search-input {
    font-size: 1.1rem;
    padding: 15px 20px 15px 55px;
  }

  .search-main-input-wrapper i {
    left: 20px;
    font-size: 1.4rem;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ PAGE ========== */
.faq-hero {
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--primary-blue) 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.faq-hero-title i {
  color: var(--secondary-orange);
  font-size: 3.5rem;
}

.faq-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 700px;
  margin: 0 auto;
}

.section-faq {
  background: #f8f9fa;
  padding: 100px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 130, 31, 0.3);
}

.faq-item.active {
  border-color: var(--secondary-orange);
  box-shadow: 0 15px 40px rgba(245, 130, 31, 0.2);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
  cursor: pointer;
  user-select: none;
}

.faq-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0084ff 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 90, 167, 0.2);
}

.faq-item.active .faq-icon-small {
  background: linear-gradient(135deg, var(--secondary-orange) 0%, #ff9a3d 100%);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.3);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--secondary-orange);
}

.toggle-arrow {
  font-size: 1.5rem;
  color: #718096;
  transition: transform 0.4s ease, color 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-item.active .toggle-arrow {
  transform: rotate(180deg);
  color: var(--secondary-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
  padding: 0 35px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 30px 105px;
}

.faq-answer p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.faq-answer strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.faq-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0084ff 100%);
  border-radius: 30px;
  padding: 60px 40px;
  margin-top: 80px;
  box-shadow: 0 20px 50px rgba(0, 90, 167, 0.2);
}

.faq-cta h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .faq-hero {
    padding: 140px 0 80px;
  }

  .faq-hero-title {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 15px;
  }

  .faq-hero-title i {
    font-size: 2.5rem;
  }

  .faq-hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .faq-header {
    padding: 20px 20px;
    flex-wrap: wrap;
  }

  .faq-icon-small {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }

  .faq-question {
    font-size: 1.1rem;
    flex-basis: calc(100% - 100px);
  }

  .toggle-arrow {
    font-size: 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 25px 20px;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .faq-cta {
    padding: 40px 30px;
    margin-top: 60px;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }
}

/* ========== MODERN LIGHT FAQ (MLFLOW STYLE) ========== */
.section-faq-modern {
  background-color: #f8f9fa;
  padding: 100px 0;
  font-family: var(--font-main);
}

.faq-modern-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  text-transform: uppercase;
}

.faq-modern-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

.faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card-modern {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-card-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 90, 167, 0.2);
}

.faq-card-modern.active {
  border-color: var(--secondary-orange);
  box-shadow: 0 10px 30px rgba(245, 130, 31, 0.1);
}

.faq-header-modern {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-modern {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-icon-modern {
  width: 38px;
  height: 38px;
  background: #f0f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-card-modern.active .faq-icon-modern {
  background: var(--secondary-orange);
  color: #fff;
}

.faq-trigger-modern {
  font-size: 1.2rem;
  color: #888;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-card-modern.active .faq-trigger-modern {
  transform: rotate(180deg);
  color: var(--secondary-orange);
}

.faq-body-modern {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
}

.faq-card-modern.active .faq-body-modern {
  max-height: 1000px;
  padding-bottom: 25px;
}

.faq-answer-modern {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  padding-left: 53px;
}

@media (max-width: 768px) {
  .faq-modern-title {
    font-size: 2.2rem;
  }

  .faq-header-modern {
    padding: 18px 20px;
  }

  .faq-question-modern {
    font-size: 1rem;
    gap: 10px;
  }

  .faq-icon-modern {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .faq-answer-modern {
    padding-left: 42px;
  }
}

/* ========== FORTALEZA ACOES SECTION ========== */
.section-fortaleza {
  background: #fff;
  padding: 100px 0;
}

/* ========== PRE-FOOTER (GOV.BR STYLE) ========== */
.pre-footer-refined {
  background-color: var(--primary-blue);
  padding: 80px 0 20px;
  color: #fff;
  position: relative;
  z-index: 20;
}

.pre-footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.pre-footer-logo {
  height: 150px;
  width: auto;
  max-width: 100%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.pre-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pre-footer-links li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.pre-footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pre-footer-links li a:hover {
  color: var(--secondary-orange);
  padding-left: 5px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  color: #fff;
}

/* ========== FOOTER REFINED (MINIMAL) ========== */
.footer-refined {
  background-color: var(--primary-blue);
  padding: 0 0 40px 0;
  /* Reduced padding since it's merged */
  position: relative;
  z-index: 20;
}

.footer-bottom-text p {
  font-size: 0.85rem;
  opacity: 0.7;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pre-footer-refined {
    padding: 60px 0 40px;
    text-align: center;
  }

  .pre-footer-links li {
    justify-content: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

.fortaleza-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.fortaleza-slider-container {
  overflow-x: auto;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-orange) #f1f1f1;
}

.fortaleza-slider-container::-webkit-scrollbar {
  height: 8px;
}

.fortaleza-slider-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.fortaleza-slider-container::-webkit-scrollbar-thumb {
  background: var(--secondary-orange);
  border-radius: 10px;
}

.fortaleza-slider-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 20px;
}

.fortaleza-icon-card {
  width: 200px;
  height: 200px;
  background: #f8faff;
  border-radius: 30px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none !important;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.fortaleza-icon-card:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 90, 167, 0.2);
}

.fortaleza-icon-card i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--secondary-orange);
  transition: all 0.4s ease;
}

.fortaleza-icon-card:hover i {
  color: #fff;
  transform: scale(1.15) rotate(5deg);
}

.fortaleza-icon-card span {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  line-height: 1.3;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .fortaleza-icon-card {
    width: 160px;
    height: 160px;
    padding: 20px 10px;
    border-radius: 20px;
  }

  .fortaleza-icon-card i {
    font-size: 2.2rem;
  }

  .fortaleza-icon-card span {
    font-size: 0.75rem;
  }
}

/* ========== ARTIGOS SECTION ========== */
.section-artigos {
  background: #f0f4fb;
  padding: 100px 0;
  position: relative;
}

.artigos-slider-container {
  overflow-x: auto;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-orange) #dde3ef;
}

.artigos-slider-container::-webkit-scrollbar {
  height: 8px;
}

.artigos-slider-container::-webkit-scrollbar-track {
  background: #dde3ef;
  border-radius: 10px;
}

.artigos-slider-container::-webkit-scrollbar-thumb {
  background: var(--secondary-orange);
  border-radius: 10px;
}

.artigos-slider-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 20px;
}

.artigo-card {
  width: 300px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.artigo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(0, 90, 167, 0.18);
}

.artigo-card-img {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003d8f 100%);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.artigo-card-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.artigo-card-img i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.artigo-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artigo-category {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary-orange);
  background: rgba(245, 130, 31, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.artigo-title {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.45;
  margin-bottom: 8px;
}

.artigo-date {
  font-size: 0.77rem;
  color: #bbb;
  margin-bottom: 10px;
}

.artigo-date i {
  margin-right: 4px;
}

.artigo-excerpt {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}

.artigo-link {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.artigo-link:hover {
  color: var(--secondary-orange);
}

@media (max-width: 768px) {
  .artigo-card {
    width: 260px;
  }
}