/* CSS para página Território */

.territorio-page {
  padding-top: 80px;
}

/* Hero Section */
.territorio-page .hero {
  background: var(--branco);
  padding: 60px 0 10px;
}

.territorio-page .hero h1 {
  color: var(--azul-principal);
  font-size: 48px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}

/* Seção de Introdução */
.territorio-intro {
  background: var(--branco);
  padding: 15px 0 60px;
}

.hero-subtitle {
  color: var(--texto);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.2s forwards;
}

.texto-conteudo {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.texto-conteudo strong {
  font-weight: 700;
  color: var(--azul-principal);
}

.texto-conteudo p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--texto);
}

/* Seção do Mapa */
.mapa-section {
  background: var(--cinza-claro);
  padding: 40px 0 60px;
}

.mapa-section h2 {
  color: var(--azul-principal);
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.mapa-aviso {
  text-align: center;
  color: var(--texto);
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 500;
}

.mapa-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.mapa-iframe {
  border: none;
  width: 100%;
  min-height: 550px;
  display: block;
  margin-top: -50px;
}

.mapa-nota {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 15px;
  font-style: italic;
}

/* Animação scroll float */
@keyframes scrollFloat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .territorio-page .hero h1 {
    font-size: 32px;
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .texto-conteudo p {
    font-size: 16px;
    text-align: left;
  }

  .mapa-section h2 {
    font-size: 28px;
    padding: 0 20px;
  }

  .mapa-iframe {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .territorio-page .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .texto-conteudo p {
    font-size: 15px;
  }

  .mapa-section h2 {
    font-size: 24px;
  }
}