* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*BOTÃO WHATSAPP*/
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}
.whatsapp-button svg {
  display: block;
}


body {
  font-family: 'Poppins', sans-serif, Arial;
  line-height: 1.6;


-webkit-user-select: none; /* Para Safari */
-moz-user-select: none; /* Para Firefox */
-ms-user-select: none; /* Para Internet Explorer/Edge */
user-select: none; /* Para navegadores modernos */
}


.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  /*background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(50px);*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.header::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(50px);
  z-index: -1;
}
.header::after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(14, 0, 136), transparent);
  transition: .5s;
}
.header:hover::after{
  left: 100%;

}
.header img{
  height: 60px;
}
.logo{
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

body header #animacaologo{
    height: 60px;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}

.navbar a{
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
}
#check{
  display: none;
}
.icons{
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px){
  .header{
    padding: 1.3rem 5%;
  }
}
@media(max-width: 768px){
  .icons{
    display: inline-flex;
  }
  #check:checked~.icons #menu-icon {
    display: none;
  }
  .icons #close-icon{
    display: none;
  }
  #check:checked~.icons #close-icon {
    display: block;
  }
  .navbar{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: .3s ease;
  }
  #check:checked~.navbar {
    height: 17.7rem;
  }
  .navbar a{
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: .3s ease;
  }
  #check:checked~.navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s * var(--i));
  }
}




.banner {
  background-image: url('img/bannerO.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* ou outro valor adequado ao design */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.amarela{
  height: 80px;
  width: 100vw;
  background-color: #f5b900;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;
  color: #fff;
}
/* Responsivo */
@media (max-width: 480px) {
  .amarela {
  height: 50px;
  width: 100%;
  }
}



/*

.sobre{
    background: #1F91FF;
    height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sobre h1{
    color: #fff;

    padding-bottom: 20px;
}
.sobre p{
    color: #fff;
    text-align: justify;
    width: 47vw;
}
*/


.sobre{
    background: #007aff;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
}
.white-text {
  color: white;
}
.highlight {
  color: #ffcc00;
}
.title-bar {
  background-color: #3399ff;
  border-radius: 4px;
  margin-bottom: 50px;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  
  margin-top: 40px;
}
.content-box {
  background-color: #007aff;
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding-bottom: 40px;
}
.content-box p {
  font-size: 24px;
  font-weight: 0;
  margin: 0;
  color: white;
  text-align: justify;
  width: 47vw;
}

@media (max-width: 768px){
  .content-box p{
    width: 80vw;
  }
}





.cards-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-top: 15px;
  padding-bottom: 15px;
  gap: 15px;
  background-color: #fff;
}
.cards-noticias-superior{
  display: flex;
  gap: 10px;
}
.cards-noticias-inferior{
  display: flex;
  gap: 10px;
}
@media (max-width: 768px){
  .cards-noticias-superior{
    display: flex;
    flex-direction: column;
  }
  .cards-noticias-inferior{
    display: flex;
    flex-direction: column;
  }
  .cards-noticias-superior .card-noticias{
    width: 80vw;
  }
  .cards-noticias-inferior .card-noticias{
    width: 80vw;
  }
}
.card-noticias {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease;

  border: 3px solid #ffc800; /* borda amarela fina */
}
.card-noticias:hover {
  transform: translateY(-5px);
}
.card-image {
  height: 180px;
  background-color: #0018ff;
  background-size: cover;
  background-position: center;
}
.card-content {
  padding: 20px;
  text-align: left;
}
.tag {
  display: inline-block;
  background-color: #f5b900;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  color: black;
  margin-bottom: 10px;
}
.card-title {
  font-size: 1rem;
  color: #0d0d5d;
  margin: 10px 0 5px;
}
.card-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #000000;
}


















.footer {
  background-color: #10006b;
  color: white;
  font-family: Arial, sans-serif;
}
.top-stripe {
  background-color: #f9c900;
  height: 6px;
  width: 100%;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 5px 1fr 5px 2fr 5px 2fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.logo img {
  width: 150px;
}
.divider {
  background-color: #2f4e9f;
  width: 2px;
  height: 100%;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  color: white;
  transition: transform 0.3s ease;
}
.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-btn.facebook {
  background-color: #1877F2;
}
.social-btn.whatsapp {
  background-color: #25D366;
}
.social-btn:hover {
  transform: scale(1.1);
}
.icon-img {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  transition: transform 0.3s;
}
.icon-img:hover {
  transform: scale(1.1);
}
.map iframe {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.footer-bottom {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #bfcce0;
  border-top: 1px solid #2e478f;
}
.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
/* RESPONSIVO PARA TELAS PEQUENAS */
@media (max-width: 768px) {
  footer {
    display: flex;
    flex-direction: column;

  }
  .footer-container{
    display: flex;
    flex-direction: column;
  }
  .map iframe{
    width: 90vw;
  }
}


@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    text-align: center;
  }
  /*IMAGEM BANNER PARA DISPOSITIVOS MOVEIS*/
  .banner {
    background-image: url('img/bannerMoveisO.jpg');
    height: 300px; /* pode ajustar se necessário */
  }
}