@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: #1d4276;
  color: white;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.header {
  background-color: #1F497D;
  padding: 1.3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;

}

.logo {
  max-height: 48px;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-desktop a,
.menu-mobile a {
  color: #f7f7f7;
  text-decoration: none;

  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-desktop a span{
  color: #e86f00;
}

.rdenuncia {
  padding: 5px 9px;
  background-color: #e86f00;
  border-radius: 10px;
}



.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #FF7F00;
  border-radius: 2px;
}

#menu-toggle {
  display: none;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  right: 5%;
  background-color: #11325C;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

#menu-toggle:checked+.menu-icon+.menu-mobile {
  display: flex;
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  background-color: #1F497D;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  line-height: 1.2;
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-text h1 span {
  color: #FF7F00;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.2;
  color: #f2f2f2;
  max-width: 500px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.btn-orange {
  background: #FF7F00;
  color: white;
  border: none;
}

.btn {
  background: transparent;
  color: #FF7F00;
  border: 2px solid #FF7F00;
}

.btn:hover,
.btn-orange:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.mosquito {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.hero img {
  display: none;
}


/* Carrossel */
.carrossel {
  background: #11325C;
  overflow: hidden;
  padding: 0.5rem 0;
}

.container1 {
  display: flex;
  animation: scroll 20s linear infinite;
}

.item {
  color: #FF7F00;
  padding: 10px 30px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: bold;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.section img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.section-text {
  max-width: 600px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.section-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  color: #FF7F00;
}

.section-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.steps-text {
  max-width: 600px;
}

.steps-text h2 {
  font-size: 1.8rem;
  color: #FF7F00;
  margin-bottom: 1.5rem;
}

.step {
  font-size: 1rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.steps img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}


.mapa {
  padding: 3rem 1.5rem;
  background-color: #1F497D;
  color: white;
  text-align: center;
}

.mapa h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #FF7F00;
}

.mapa-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.estatisticas {
  padding: 3rem 1.5rem;
  background-color: #11325C;
  color: white;
  text-align: center;
}

.estatisticas h2 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: #FF7F00;
}

.estatisticas-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;

}

/* CARD */
.estatisticas .card {
  background: #1F497D;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-height: 140px;
}

.estatisticas .card h3 {
  font-size: 2rem;
  color: #FF7F00;
  margin-bottom: 0.5rem;
}

.estatisticas .card p {
  font-size: 1.1rem;
  color: #ffffff;
}

.faq {
  padding: 3rem 1.5rem;
  background-color: #1d4276;
  color: white;
}

.faq h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #FF7F00;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #11325C;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #FF7F00;
  margin-bottom: 0.8rem;
}

.faq-item p {
  font-size: 1rem;
  color: #f2f2f2;
  line-height: 1.5;
}

.parceria {
  background-color: #11325C;
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}

.parceria h2 {
  font-size: 1.8rem;
  color: #FF7F00;
  margin-bottom: 2rem;
}

.parceria-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.parceria-logo {
  max-width: 180px;
  height: auto;
}

.parceria-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f2f2f2;
  padding: 0 1rem;
}

.contato {
  background-color: #1F497D;
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}

.contato h2 {
  font-size: 1.8rem;
  color: #FF7F00;
  margin-bottom: 2rem;
}

.formulario-contato {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.formulario-contato label {
  font-weight: bold;
  color: #FF7F00;
}

.formulario-contato input,
.formulario-contato textarea {
  padding: 12px;
  border: 2px solid #FF7F00;
  background-color: #11325C;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.formulario-contato input:focus,
.formulario-contato textarea:focus {
  border-color: #ffa740;
  outline: none;
}

.formulario-contato button {
  background-color: #FF7F00;
  color: white;
  padding: 14px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.formulario-contato button:hover {
  background-color: #e86f00;
}

.footer {
  background-color: #11325C;
  color: white;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.footer-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logofo,
.logo-prefeitura {
  max-height: 60px;
  height: auto;
}

.footer-parceria {
  font-size: 1rem;
  color: #f2f2f2;
  max-width: 600px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #FF7F00;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffa740;
}

@media (min-width: 768px) {
  .menu-icon {
    display: none;
  }

  .menu-mobile {
    display: none !important;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons a {
    margin: 0;
  }


  .section {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 4rem 5%;
  }

  .section img {
    flex: 1;
    max-width: 400px;
  }

  .section-text {
    flex: 1;
    padding-left: 2rem;
  }

  .section-text h2 {
    font-size: 2rem;
  }

  .section-text p {
    font-size: 1.1rem;
  }

  .steps {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4rem 5%;
    text-align: left;
  }

  .steps-text {
    flex: 1;
  }

  .steps img {
    flex: 1;
    max-width: 400px;
  }

  .steps-text h2 {
    font-size: 2rem;
  }

  .step {
    font-size: 1.1rem;
  }



  .mapa {
    padding: 4rem 5%;
  }

  .mapa h2 {
    font-size: 2rem;
  }

  .mapa iframe {
    height: 480px;
  }

  .estatisticas-cards {
    flex-direction: row;
    justify-content: center;
  }

  .estatisticas .card {
    flex: 1 1 250px;
    min-height: 180px;
  }

  .estatisticas h2 {
    font-size: 2.2rem;
  }

  .estatisticas .card h3 {
    font-size: 2.4rem;
  }

  .estatisticas .card p {
    font-size: 1.2rem;
  }

  .faq {
    padding: 4rem 5%;
  }

  .faq h2 {
    font-size: 2.2rem;
  }

  .faq-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-item {
    flex: 1 1 300px;
    max-width: 400px;
  }

  .faq-item h3 {
    font-size: 1.4rem;
  }

  .faq-item p {
    font-size: 1.1rem;
  }

  .contato h2 {
    font-size: 2rem;
  }

  .formulario-contato input,
  .formulario-contato textarea {
    font-size: 1.1rem;
  }


  .video-container {
    width: 410px;
  }
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 5rem 5%;
  }

  .hero-text {
    flex: 1 1 50%;
    max-width: 600px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.2rem;
    margin: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .mosquito {
    flex: 1 1 40%;
    max-width: 400px;
  }

  .hero img {
    display: block;
  }


  .item {
    font-size: 1.2rem;
  }

  .section {
    gap: 4rem;
  }

  .section-text h2 {
    font-size: 2.4rem;
  }

  .section-text p {
    font-size: 1.2rem;
  }

  .steps {
    gap: 4rem;
  }

  .steps-text h2 {
    font-size: 2.4rem;
  }

  .step {
    font-size: 1.2rem;
  }

  .info-box {
    padding: 2.5rem;
  }

  .info-box h2 {
    font-size: 2rem;
  }

  .info-box p {
    font-size: 1.2rem;
  }
}