* {
  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%;
  }
}


.indicacoes {
  padding: 2rem;
  text-align: center;
}
.cards-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  transition: filter 0.3s ease;
}
.card {
  border: 5px solid #f5b900;
  padding: 0.2rem;
  width: 200px;
  background: white;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
/* Quando estiver hover em algum card */
.cards.hovering .card:not(:hover) {
  filter: brightness(0.7); /* escurece os que não estão com hover */
}
/* Card com hover aumenta */
.card:hover {
  transform: scale(1.05);
  z-index: 1; /* para ficar sobre os outros */
  filter: brightness(1);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}
.card .desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}





.dupla-box {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #1F91FF;
  padding: 2rem;
  flex-wrap: wrap;
}
.box {
  flex: 1 1 300px;
  max-width: 400px;
}
.dupla-box .box img{
  width: 400px;
  height: 400px;
  border-radius: 20px;
}
@media (max-width: 768px){
  .dupla-box{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dupla-box .box img{
    width: 80vw;
    height: auto;
  }
  .dupla-box .termometro-box{
    width: 80vw;
  }
}



.termometro-box {
  background-color: #10006b;
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.termometro-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4em;
  line-height: 1.2;
}
.item {
  margin-bottom: 18px;
}
.item span {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 0.95em;
}
.barra {
  background-color: #b8b8b8;
  border-radius: 10px;
  height: 12px; /* altura reduzida */
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 4px;
}
.preenchimento {
  height: 100%;
  width: var(--percent, 0%);
  border-radius: 10px;
  transition: width 1.5s ease-out;
  min-width: 1px;
  animation: preencher 1.5s ease-out forwards;
}
@keyframes preencher {
  from {
    width: 0%;
  }
  to {
    width: var(--percent, 0%);
  }
}
.azul {
  background-color: #1F91FF;
}
.branco {
  background-color: #ffffff;
}
.amarelo {
  background-color: #facc15;
}
.quantidade {
  font-size: 1.1em;
  font-weight: bold;
  text-align: right;
  display: block;
}
/* Responsivo */
@media (max-width: 480px) {
  .termometro-box {
    padding: 16px 20px;
  }
  .item span {
    font-size: 0.9em;
  }
  .quantidade {
    text-align: left;
  }
}







.slider-container {
  width: 100vw;
  height: auto;
  overflow: hidden;
  position: relative;
}
.slider {
  display: flex;
  width: max-content;
  animation: scroll 80s linear infinite;

  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.slider img {
  width: 400px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
/* Animação que move da direita para a esquerda */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}






.localizacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f5b900;
  padding: 2rem;
  gap: 110px;
}
.localizacao .imagemFinal img{
  width: 100%;
  height: 150px;
}
.imagem {
  flex: 1 1 300px;
  max-width: 400px;
}
.imagem img {
  width: auto;
  height: 200px;
  border-radius: 10px;
}
@media (max-width: 768px){
  .localizacao{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .localizacao .imagemFinal img{
    width: 60%;
    height: auto;
  }
  .imagem{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .imagemFinal{
    display: flex;
    align-items: center;
    justify-content: center;

  }
}





.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-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 */
  }
  .dupla-box,
  .cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
  }
  .card {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .cards-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .carrossel-container {
    animation: deslizar-mobile 20s linear infinite;
  }
  @keyframes deslizar-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}







