/* =========================================
   CONFIGURAÇÕES GERAIS DO SITE
========================================= */
body {
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.body-no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Permite rolagem interna nos modais */
.FormatoModals .conteudo-form {
  max-height: 90vh;
  overflow-y: auto;
}



/* =========================================
   ESTRUTURA PADRÃO DAS SEÇÕES
========================================= */
section {
  padding: 0 20px;
}

.titulo-secao {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-secao h2 {
  text-align: left;
  padding-bottom: 20px;
  color: #0d6efd;
  font-size: 2rem;
  margin-bottom: 10px;
}



/* =========================================
   BOTÃO FORMULÁRIO DE DENÚNCIA
========================================= */
.botao-flutuante {
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0d6efd, #1755b2f1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.botao-flutuante:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1755b2f1, #0d6efd);
}



/* =========================================
   MENU MOBILE
========================================= */
#menuMobile {
  width: 50% !important;
  max-width: 50% !important;
}

#menuMobile .offcanvas-body {
  padding: 1.2rem;
}

.lista-sem-estilo-mobile li a {
  font-size: 1.1rem;
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #007bff;
  transition: 0.3s;
}

/* Hover azul mais escuro */
.lista-sem-estilo-mobile li a:hover {
  color: #0056b3;
}



/* =========================================
   CABEÇALHO (HEADER)
========================================= */
header.secao-cabecalho {
  background-color: #1755b2f1;
  color: white;
  padding: 15px 0;
}

header .container {
  width: 90%;
}

header .nome-do-site {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.lista-sem-estilo,
.lista-sem-estilo-mobile {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.lista-sem-estilo a,
.lista-sem-estilo-mobile a {
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.lista-sem-estilo a { color: white; }
.lista-sem-estilo-mobile a { color: rgb(0, 110, 255); }

.menu-navegacao a:hover,
.menu-navegacao a.ativo {
  text-decoration: underline;
}

#ico_menu {
  font-size: 2rem;
}



/* =========================================
   SEÇÃO SOBRE
========================================= */
.secao-sobre p {
  text-align: justify;
}

.secao-sobre .conteudo ul {
  list-style: none;
  padding: 0;
}

.secao-sobre .conteudo ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.secao-sobre .conteudo ul li i {
  color: #0d6efd;
  font-size: 1.2rem;
}



/* =========================================
   SEÇÃO BANNER
========================================= */
.secao-banner {
  background-image: url('../midia/banner_fundo01.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;    
  width: 100%;
  height: 100vh;
  text-align: center;
  color: white;
  position: relative;
}

.secao-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.secao-banner h2,
.secao-banner p {
  position: relative;
  z-index: 1;
}

.secao-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.secao-banner p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}



/* =========================================
   SEÇÃO TIPOS 
========================================= */
.secao-tipos {
  background: #f8f9fa;
  text-align: center;
}

.item-servico {
  min-height: 320px;
  max-height: 260px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
}

.item-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.item-servico i {
  font-size: 3rem;
  color: #0d6efd;
}

.item-servico h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 5px;
}

.item-servico p {
  color: #6c757d;
  font-size: 0.9rem;
  max-width: 190px;
  min-width: 190px;
  text-align: center;
}



/* =========================================
   MODAIS (FORMULÁRIOS E JANELAS)
========================================= */
.FormatoModals {
  display: none; 
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow-y: auto;
  padding: 20px;
}

.conteudo-form,
.conteudo-modal {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: aparecer 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  font-family: Arial, Helvetica, sans-serif;
}

.conteudo-form { text-align: left; }
.conteudo-modal { text-align: center; }

.FormatoModals .fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.FormatoModals .fechar:hover {
  color: #ff0000;
}

@keyframes aparecer {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.texto-explicativo h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 5px;
  text-align: left;
}

.texto-explicativo p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.texto-explicativo ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  color: #444;
  text-align: left;
}

.texto-explicativo ul li {
  margin-bottom: 8px;
}



/* =========================================
   SEÇÃO CAMPANHA 
========================================= */
.secao-campanha {
    padding: 60px 0;
}

#campanha-texto h1 {
  text-align: center;
}

#campanha-texto p {
  text-align: justify;
}

/* BOTÃO */
.btn-primary {
    background-color: #ff6b6b;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #ee5a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* IMAGEM */
.campanha-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Centralizar botão */
#botao-campanha {
    text-align: center;
}

/* MEDIA QUERIES OTIMIZADAS */

@media (max-width: 992px) {
    #campanha-texto h1 {
        font-size: 1.8rem;
    }
    #campanha-texto p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .campanha-img {
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .campanha-img {
        max-width: 350px;
    }
    #campanha-texto h1 {
        font-size: 1.4rem;
    }
    #campanha-texto p {
        font-size: 0.85rem;
    }
}



/* =========================================
   RODAPÉ
========================================= */
footer.rodape {
  background-color: #0b1e39;
  color: #d9e2f1;
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
}

footer .nome-do-site {
  color: white;
  font-weight: 600;
}

footer a {
  color: #5ea1ff;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  text-decoration: underline;
  color: #ffffff;
}