html, body {
  overflow-x: hidden;
}

.header {
  
  background-color: #FFE4B5;
  position: fixed;
  top:0;
  left:0;  
  width: 100%;
  z-index:1;
  float:left; 
  height: 150px;
}

.header ul {
  margin: 55px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #FFE4B5	;
  margin-right: 5px;
  display: inline-block;
}

@media (max-width: 600px) {
  .header ul {
    margin: 0px;
  }
}

.header li a {
  margin: 0px;
  display: block;
  padding: 0.7em 0.5em;
  text-decoration: none;
  transition:.3s;
  color:#000000;  
  font-size: 25px;
  font-family: 'Kristal';
}

.header li a:hover,
.header .btn-mobile:hover {
  transition: 1s;
  background-color: #ecd4a9;

}

.header .logo {
  margin: 15px;
  display: block;
  float: left;
  width: 190px;
  height: 110px;
}


.header .nav {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}


/* icone do menu */

.header .mobile-icone {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .mobile-icone .hamburguer {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .mobile-icone .hamburguer:before,
.header .mobile-icone .hamburguer:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .mobile-icone .hamburguer:before {
  top: 5px;
}

.header .mobile-icone .hamburguer:after {
  top: -5px;
}

/* menu btn */

.header .mobile-btn {
  display: none;
}

.header .mobile-btn:checked ~ .nav {
  max-height: 240px;
}

.header .mobile-btn:checked ~ .mobile-icone .hamburguer {
  background: transparent;
}

.header .mobile-btn:checked ~ .mobile-icone .hamburguer:before {
  transform: rotate(-45deg);
}

.header .mobile-btn:checked ~ .mobile-icone .hamburguer:after {
  transform: rotate(45deg);
}

.header .mobile-btn:checked ~ .mobile-icone:not(.steps) .hamburguer:before,
.header .mobile-btn:checked ~ .mobile-icone:not(.steps) .hamburguer:after {
  top: 0;
}

.container {

  width:100%;
  float:left;
  margin-top:100px;    

}

.content { 

  float:left; 
  width:92%; 
  margin:0 4%;  
 
}


/* responsivo cabeçalho */

@media (min-width: 48em) {
  
  .header li { float:left; }
  
  .header li a {
    
    padding: 15px 30px;
    margin-top: 10px;
    border-radius: 6px;
  
  }

  .header .nav {
    clear: none;
    float: right;
    max-height: none;
  }
  
  .header .mobile-icone { display:none; }

  .header li a {
  
    transition:.3s;
    border-bottom:0; 
  
  }

}

/*footer*/

footer{
    background-color: #FFE4B5;
    padding: 50px 0;
    width: 100%;
}

.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}

.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 50px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    font-family: 'Dragonlord PERSONAL USE ONLY';
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin: 10px 0;
}

.footer-col ul li a{
    font-size: 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: #6b6b6b;
    padding-left: 10px;
}

.footer-col .medias-socias{
    margin-top: 30px;
}

.footer-col .medias-socias a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    border-radius: 50%;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    transition: all 0.5s ease;
}

.footer-col .medias-socias a i{
    font-size: 20px;
}

.footer-col .medias-socias a:hover{
    color: #415aca;
    background-color: rgb(255, 255, 255);
}

.footer-col .form-sub input{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background-color: #ecd4a9;
}

.footer-col .form-sub input::placeholder{
    color: rgb(0, 0, 0);
}

.footer-col .form-sub button{
    width: 100%;
    margin-top: 10px;
    padding: 10px; 
    font-size: 17px;
    outline: none;
    border: 1px solid black;
    cursor: pointer;
    color: #000000;
    border-radius: 3px;
    font-weight: bold;
    background-color: #ecd4a9;        
}

/*manter um tamanho minimo para o conteudo*/

.menu-conteudo {
    margin-top: 150px; 
    padding: 20px;
    background-color: #fffabb; 
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.menu-conteudo h1 {
  font-family: 'Rosellia';
  text-align: center;
  font-size: 75px;
  display: block;
}

@media (min-width: 800px) {
  .menu-conteudo h1 {
    display: none;
  }
}

@media (max-width: 799px) {
  .menu-conteudo h1 {
    display: block;
  }
}

.container {
    width: 100%;
    float: left;
    padding-top: 150px; 
    padding-bottom: 50px; 
    background-color: #fff89c;
    min-height: 80vh;
}


/* responsivo do footer */

@media (max-width: 800px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }

}

@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }

}

/*home e afins*/

.containerbranco {
  border: solid 3px;
  border-radius: 20px;
  border-color: black;
   border-left: none;
  border-right: none;
  width: 1500px;
  height: 700px;
  margin: 0 auto;
}

 @media (max-width: 600px) {
  .containerbranco {
    width: 90%;      
    height: auto;     
    border-width: 2px; 
    border-radius: 10px;
  }
 }

.banner {
  text-align: center;
}

.primeirafoto {
  width: 1550px;
  height: 100%;
  margin: 15px;
  border-radius: 20px;
}

@media (max-width:800px) {
  .primeirafoto {
    display: none;
  }
}
/*botao padrao*/
.botao {
	border-radius: 30px;
	border: 1px solid #ffcb71;
	display: inline-block;
	cursor: pointer;
	color: #000000;
	font-family: 'Apple Garamond';
	font-size: 25px;
	padding: 10px 35px;
	text-decoration: none;
  margin: 10px;
}
.botao:hover {
	background-color: #ffc561;
  transition: 0.6s;
  text-decoration: none;
  color: black;
}
.botao:active {
	position:relative;
}
/*subtitulos*/
.subtitulo {
            text-align: center;
            font-size: 32px;
            font-family: 'Kristal';
          }

          .subtitulo2 {
            text-align: center;
            font-size: 32px;
            font-family: 'Kristal';
          }

          @media (max-width: 600px) {
  .subtitulo {
    font-size: 25px;
  }
}

          @media (min-width:  800px) {
            .subtitulo {
              display: none;
            }
          }
/*texto home*/
    .texto {
    font-size: 30px;
    font-family: 'Apple Garamond';
    margin: 5px;
    text-align: center;
  }

  @media (max-width: 600px) {
    .texto {
    font-size: 23px;
    }
  }

/*cards noticias*/

  .card-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.card {
  width: 400px;
  height: 550px;
  margin: 1rem auto;
  perspective: 1000px;
  cursor: pointer;
  background-color: #383838;
}

.imagemcard {
  width: 400px;
  height: 550px;
  border-radius: 0.5rem;
}

.card-inner {
  position: relative;
  width: 400px;
  height: 550px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 400px;
  height: 550px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.card-front {
  background: white;
  border: 1px solid #e5e7eb;
}

.card-back {
  background: #383838;
  color: white;
  transform: rotateY(180deg);
}

.card-back a {
  color: white;
  font-family: 'Rosallia';
  font-size: 25px;
  margin-left: 2px;
}

@media (max-width: 700px) {

  .card:hover .card-inner {
    transform: none;
  }


  .card-back {
    transform: none; 
    display: none;
  }
}

 a {
  text-decoration: none;
 }
/*img usuario*/
 .containerdasimg {
  text-align: center;
  font-size: 25px; 
}

.imgmoda {
  height: 550px;
  width: 20%;
  border-radius: 250px;
  margin: 30px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .containerdasimg {
    display: flex;         
    flex-direction: column; 
    align-items: center;    
  }

  .imgmoda {
    width: 75%;  
    height: auto; 
    margin: 15px 0;
  }
}

.textonoticiamedia a,
.textonoticiamedia a:link,
.textonoticiamedia a:visited,
.textonoticiamedia a:hover,
.textonoticiamedia a:active {
  font-family: 'Rosallia';
  font-size: 22px;
  text-decoration: none;
  color: black;
}

@media (min-width:  650px) {
  .textonoticiamedia {
    display: none;
  }
}

.ww2 {
  height: 400px;
  width: 90%;
}

@media (max-width: 700px) {
  .ww2 {
    width: 80%;
    height: 150px;
  }
}

          .escritopor p {
            font-size: 25px;
            margin: 5px;
            color: black;
          }

          .fotonoticia {
                height: 720px; 
                width: 720px;
                padding: 5px;
                margin: 0px;
                border-radius: 15px;
                object-fit: cover;
            }
        
            p {
                font-size: 25px;
                margin: 2px;
                padding: 1px;
            }

            @media (max-width:600px) {
              .fotonoticia {
                width: 500px;
                flex-direction: column;
                text-align: center; 
              }

              .p {
                font-size: 15px;
              }
            }

            .textobotao {
              text-align: center;
              font-size: 20px;
            }
        
            h1 {
                font-size: 30px;
                font-family: 'Kristal';
                margin: 10px;
           }
        
           .conteudo-noticia {
            border: 3px solid black;
            border-radius: 10px;
            border-left: none;
            border-right: none;
            background-color: white;
            width: 50%;          
            padding: 15px;
           }

           .conteudo-noticia h2 {
            font-family: 'Apple Garamond';
            font-size: 35px;
           }

           .conteudo-noticia p {
            font-size: 22px;
           }
           
           @media (max-width: 600px) {
  .conteudo-noticia {
    width: 80%;
  }
}

            .noticia {
    display: flex;
    align-items: center;  
    gap: 20px;            
}

@media (max-width: 768px) {
    .noticia {
        flex-direction: column;
        text-align: center;     
    }
}
        
                h2 {
                    text-align: center; 
                }

                 .textonoticiamedia {
  font-family: 'Rosallia';
  font-size: 22px;
  text-align: center;
}

 @media (min-width:  650px) {
  .textonoticiamedia {
    display: none;
    font-size: 25px;
  }
}

/*noticias*/

  .titulonoticias {
    text-align: center;
    font-size: 30px;
    font-family: 'Kristal';
  }

  @media (max-width:600px) {
    .titulonoticias {
      font-size: 25px;
    }
  }

  .cardnoticia {
    background-color: white;
    width: 420px;
    height: 480px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto; 
    box-shadow: 15px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;

  }

  small {
    display: flex;
    margin-left: 70px;
    margin-top: -20px;
    margin-right: auto;
  }

 .noticiafoto { 
  margin: 10px auto; 
  width: 400px;
  height: 330px;
  object-fit: cover; 
  border-radius: 5px; 
  border: 1px solid;
  border-color: black;
 }

 .containerdoscards {
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
 }

 .titulodacard {
  font-family: 'Apple Garamond';
  font-size: 22px;
 }

 .titulodacard a {
  color: #000000;
 }

 .rosto {
  border-radius: 60%;
  width: 60px;      
  height: 60px;
  display: block;
  margin-left: 5px; 
  margin-right: auto;
 }

 /*galeria*/

 .galeriatexto {
  font-size: 27px;
  width: 900px;
  margin: 10px;
  font-family: 'Apple Garamond';
  background-color: white;
  border: 3px solid;
  border-radius: 5px;
  border-color: black;
  border-left: none;
  border-right: none;
 }


.galeria1 {
  width: 600px;
  height: 650px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: 70px;
  margin-top: -700px;
  border-radius: 60px;
  border: 3px solid ;
  border-color: black;
  border-left: none;
  border-right: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width:600px) {
  .galeria1 {
    width: 95%;
    height: auto;
    margin-left: 5px;
    border-radius: 30px;
    margin-top: 20px; 
    position: static; 
    display: block; 
  }

  .galeriatexto {
    text-align: center; 
    width: 465px;
  }
}

.containerdagaleria {
  text-align: center;
}

.fotosgaleria {
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
  margin: 60px;
  height: 600px;
  width: 400px;
  transition: all 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .fotosgaleria:hover {
    transform: scale(1.05);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
  }
}

@media (max-width:600px) {
  .fotosgaleria {
    margin: 20px 0 0;
  }
}

.faq-container {
  width: 60%;
  margin: 20px;
  font-size: 28px;
  font-family: 'Apple Garamond';
  border: 2px solid black;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f4f4f4;
}


.faq-item {
  border-bottom: 1px solid black;
}


.faq-item:last-child {
  border-bottom: none;
}


.faq-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background-color: #f4f4f4;
  transition: background-color 0.3s ease;
}


.icon {
  font-weight: bold;
  font-size: 23px;
  transition: transform 0.3s ease;
}


.faq-content {
  display: none;
  padding: 0 20px 15px;
  background-color: #ffffff;
  border-top: 1px solid #ccc;
  font-size: 25px;
}


.faq-item.active .faq-content {
  display: block;
}


.faq-item.active .icon {
  transform: rotate(180deg);
}

/*denuncia*/

.form-container {
  background-color: #d9d9d9;
  width: 800px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 20px;
  font-family: 'Apple Garamond', Arial, sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.form-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
}

.formdenuncia {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 22px;
}

input, select, textarea {
  border: 2px solid #000;
  border-radius: 15px;
  padding: 10px;
  font-size: 20px;
  width: 100%;
  box-sizing: border-box;
}

 .form-container button {
  background-color: black;
  color: white;
  font-size: 22px;
  border: none;
  border-radius: 15px;
  padding: 12px 0;
  cursor: pointer;
  width: 200px;
  margin: 20px auto 0;
  display: block;
  transition: 0.3s;
}

 .form-container button:hover {
  background-color: #333;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .form-container {
    width: 90%;
    padding: 25px;
  }

  .form-container h2 {
    font-size: 30px;
  }

  label {
    font-size: 20px;
  }

  input, select, textarea {
    font-size: 18px;
    padding: 8px;
  }

  .form-container button {
    width: 160px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .form-container {
    width: 95%;
    padding: 20px;
  }

  .form-container h2 {
    font-size: 26px;
  }

  label {
    font-size: 18px;
  }

  input, select, textarea {
    font-size: 16px;
    padding: 8px;
  }

  .form-container button {
    width: 140px;
    font-size: 18px;
  }
}