/* ===== CONFIGURAÇÕES GERAIS ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a0f1f;
  color: #fff;
  overflow-x: hidden;
}
html{
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

:root {
  --azul-principal: #0077b6; /* azul oceano */
  --amarelo-destaque: #f8d33e; /* amarelo dourado da logo */
  --azul-fundo: #0a0f1f;
  --cinza-texto: #ccc;
}
/* ===== TOPO ===== */
.topo {
  /* background-color: #000; */
  background-color: var(--azul-fundo);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 5%;
  display: flex;
  justify-content: center;
}

.topo .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img{
  width: 120px;
  height: 120px;
}
.logo i {
  /* color: #00b4d8; */
  color: var(--azul-principal);
  font-size: 1.6rem;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 700;
}

.logo span {
  /* color: #00b4d8; */
  color: var(--azul-principal);
}

.infos {
  text-align: right;
  font-size: 0.9rem;
  color: #bbb;
}

.infos i {
  color: #00b4d8;
  margin-right: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5%;
  background: linear-gradient(135deg, #001f3f 60%, rgba(255, 200, 0, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3), transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.hero-content h2 span {
  /* color: #00b4d8; */
  color: var(--amarelo-destaque);
}

.hero-content p {
  /* color: #ccc; */
  color: var(--cinza-texto);
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
}
.video {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--azul-fundo);
}

/* Título */
.video-titulo {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.video-titulo h2 {
  font-size: 2rem;
}

.video-titulo span {
  color: var(--amarelo-destaque, #ffc107);
}

.video-titulo p {
  color: var(--cinza-texto, #666);
  font-size: 1rem;
  margin-top: 10px;
}

/* Container dos vídeos */
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

/* Vídeos */
.view-video {
  width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.view-video:hover {
  transform: scale(1.03);
}

/* ----------- RESPONSIVIDADE ----------- */

/* 📱 Celulares */
@media (max-width: 600px) {
  .video-titulo h2 {
    font-size: 1.5rem;
  }

  .view-video {
    width: 90%;
    max-width: 350px;
  }

  .video-container {
    gap: 15px;
  }
}

/* 📲 Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .view-video {
    width: 45%;
  }
}

/* 💻 Notebooks e monitores grandes */
@media (min-width: 1025px) {
  .view-video {
    width: 22%;
  }
}

/* ===== BOTÃO WHATSAPP ===== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  /* background: linear-gradient(135deg, #25D366, #1ebe5d); */
  /* background: rgb(248, 211, 62); */
  background: var(--amarelo-destaque);
  padding: 14px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(211, 199, 37, 0.4);
  margin-top: 25px;
  transition: all 0.3s ease;
}

.btn-whatsapp i {
  font-size: 1.3rem;
  margin-right: 8px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(211, 199, 37, 0.7);
}

/* ===== IMAGEM HERO ===== */
.hero-img img {
  width: 430px;
  max-width: 90%;
  z-index: 1;
  position: relative;
  animation: flutuar 4s ease-in-out infinite alternate;
}

@keyframes flutuar {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .infos {
    text-align: center;
    margin-top: 10px;
  }
}

/* ===== SEÇÃO NOSSOS SERVIÇOS ===== */
.servicos {
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.servicos .container {
  max-width: 1200px;
  margin: auto;
}

.servicos h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}

.servicos h2 span {
  color: var(--amarelo-destaque);
}

.servicos .subtitulo {
  color: #aaa;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* GRID RESPONSIVO */
.servicos-grid {
  display: flex;
  flex-wrap: wrap; /* permite quebrar linha em telas menores */
  justify-content: center; /* centraliza horizontalmente */
  gap: 20px; /* espaçamento entre cards */
  margin: 0 auto;
}

/* CARDS */
.servico-card {
  flex: 1 1 260px; /* largura mínima 260px, cresce conforme espaço */
  max-width: 300px;
  background: #0c0c0c;
  border-radius: 18px;
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 rgba(0, 180, 216, 0);
  transition: all 0.4s ease;
  text-align: center;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(252, 248, 3, 0.349);
  border-color: var(--amarelo-destaque);
}

.servico-card img {
  width: 100%; /* imagem ocupa todo o card */
  height: auto;
  max-width: 240px; /* limita o tamanho máximo */
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.servico-card:hover img {
  transform: scale(1.08);
}

.servico-card h3 {
  color: var(--amarelo-destaque);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  background: var(--amarelo-destaque);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(252, 248, 3, 0.349);
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(252, 248, 3, 0.7);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .servico-card {
    flex: 1 1 220px;
  }
}

@media (max-width: 768px) {
  .servico-card {
    flex: 1 1 45%; /* dois cards por linha em tablets */
  }
}

@media (max-width: 480px) {
  .servico-card {
    flex: 1 1 90%; /* um card por linha em celulares */
  }
  .servicos h2 {
    font-size: 1.8rem;
  }
  .servicos .subtitulo {
    font-size: 16px;
  }
}



/* ===== SEÇÃO DIFERENCIAIS ===== */
.diferenciais {
   background:
   radial-gradient(circle at bottom right, #0f0f0faf 40%, #001f3f 30%, transparent 30%), 
    /* radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.3), transparent 20%),
    radial-gradient(circle at 70% 40%, rgba(248, 211, 62, 0.25), transparent 40%),
    radial-gradient(circle at 40% 70%, rgba(0, 119, 182, 0.2), transparent 20%), */
    #0a0f1f; 
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.diferenciais .container {
  max-width: 1200px;
  margin: auto;
}

.diferenciais h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diferenciais h2 span {
  /* color: #00b4d8; */
  color: var(--amarelo-destaque);
}

.diferenciais .subtitulo {
  color: #ccc;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 50px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.diferencial-item {
  background: #111;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 180, 216, 0);
  position: relative;
}

.diferencial-item:hover {
  transform: translateY(-8px);
  /* border: 1px solid #00b4d8; */
  border: 1px solid var(--amarelo-destaque);
  box-shadow: 0 0 25px rgba(252, 248, 3, 0.349);
  background: linear-gradient(180deg, #0b0b0b, #111);
}

.diferencial-item i {
  color: #00b4d8;
  font-size: 40px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.diferencial-item:hover i {
  transform: scale(1.15);
}

.diferencial-item h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.diferencial-item p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 600px) {
  .diferenciais h2 {
    font-size: 1.8rem;
  }

  .diferencial-item {
    padding: 25px 20px;
  }
}
/* ===== SEÇÃO DIFERENCIAIS -- FIM===== */

/* ======= SEÇÃO NOSSA LOJA - INICIO ======= */
.nossa-loja {
  padding: 80px 20px;
  text-align: center;
  background: 
    radial-gradient(circle at top right, #0f0f0faf 40.5%, #001f3f 30%, transparent 30%),
    radial-gradient(circle at bottom left, #111111ce 40%, #001f3f 30%, transparent 30%),
    #0a0f1f;
}

.nossa-loja h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.nossa-loja h2 span {
  color: var(--amarelo-destaque);
}

.nossa-loja .subtitulo {
  margin-bottom: 40px;
  font-size: 18px;
}

.loja-grid {
  display: flex;
  flex-wrap: wrap; /* permite empilhar em telas menores */
  justify-content: center; /* centraliza horizontalmente */
  gap: 20px; /* espaçamento entre cards */
}

.loja-item {
  flex: 1 1 260px; /* mínimo 260px, cresce conforme espaço */
  max-width: 300px;
  aspect-ratio: 3/5; /* mantém proporção largura x altura */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loja-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.loja-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.loja-item:hover img {
  transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .loja-item {
    flex: 1 1 220px; /* ocupa menos espaço em tablets */
  }
}

@media (max-width: 768px) {
  .nossa-loja h2 {
    font-size: 1.8rem;
  }
  .nossa-loja .subtitulo {
    font-size: 16px;
  }
  .loja-item {
    flex: 1 1 45%; /* dois cards por linha */
  }
}

@media (max-width: 480px) {
  .loja-item {
    flex: 1 1 90%; /* um card por linha em celulares */
  }
  .nossa-loja h2 {
    font-size: 1.6rem;
  }
  .nossa-loja .subtitulo {
    font-size: 14px;
  }
}
.geolocalizacao {
  background: 
    radial-gradient(circle at top right, #111 20%, transparent 50%, #001f3f 30%, transparent 30%),
    radial-gradient(circle at bottom left, #111111 20%, #001f3f 30%, transparent 80%),
    #000;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

/* ===== Cabeçalho ===== */
.geolocalizacao-cabecalho {
  width: 100%;
  max-width: 1200px;
  height: auto;
  text-align: center;
  margin-bottom: 20px;
}

.geolocalizacao-cabecalho h2 {
  font-size: 32px;
}

.geolocalizacao-cabecalho span {
  color: var(--amarelo-destaque);
}

.geolocalizacao-cabecalho p {
  font-size: 18px;
}

.geolocalizacao-subtitulo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.geolocalizacao-subtitulo i {
  color: #00b4d8;
}

/* ===== Container do iframe ===== */
.geolocalizacao-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.geolocalizacao-iframe {
  width: 80%;
  max-width: 600px;
  height: 450px;
  border: none;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets */
@media (max-width: 900px) {
  .geolocalizacao-iframe {
    width: 90%;
    height: 400px;
  }

  .geolocalizacao-cabecalho h2 {
    font-size: 28px;
  }

  .geolocalizacao-cabecalho p {
    font-size: 16px;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .geolocalizacao {
    min-height: auto;
    padding: 10px;
  }

  .geolocalizacao-iframe {
    width: 90%;
    height: 300px;
  }

  .geolocalizacao-cabecalho h2 {
    font-size: 24px;
  }

  .geolocalizacao-cabecalho p {
    font-size: 14px;
  }

  .geolocalizacao-subtitulo {
    flex-direction: column;
    gap: 10px;
  }
}



/* GOOGLE MAPS  */

/* ===== MAPA ===== */
/* ===== CONTAINER ===== */
.mapa {
  display: flex;
  /* flex-wrap: wrap; */
  /* align-items: stretch; */
  /* justify-content: space-around; */
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f 40%, #1a1a1a 100%);
  color: #fff;
}

.mapa-informacao {
  width: 600px;
  height: 450px;
  /* flex: 1 1 400px; */
  padding: 40px;
  background: #111;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    & h1{
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 15px;
      color: #00b4d8;
    }
    & p{
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #ddd;
    }
    & .mapa-dados {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
        & li{
          margin-bottom: 10px;
          font-size: 1rem;
        }
        & i{
          color: #00b4d8;
          margin-right: 10px;
        }
    }
    & .botao-mapa {
      display: inline-block;
      background: var(--amarelo-destaque);
      color: #1c1c1c;
      /* color: #fff; */
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(211, 199, 37, 0.4);
      }
      & .botao-mapa:hover {
  /* background: #008bb0; */
      box-shadow: 0 0 20px rgba(211, 199, 37, 0.7);
      transform: translateY(-3px);
     
}
}

.mapa-conteiner {
  width: 700px;
  height: 530px;
  /* flex: 1 1 500px; */
  /* overflow: hidden; */
  border-radius: 0 20px 20px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.maps {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===== SEÇÃO DE AVALIAÇÕES (GOOGLE REVIEWS) ===== */
.reviews-section {
  background: radial-gradient(circle at top right, #111 0%, #000 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0,180,216,0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  /* color: #00b4d8; */
  color: var(--amarelo-destaque);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-header p {
  color: #ccc;
  font-size: 18px;
}

.reviews-widget {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-widget:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 0 35px rgba(0,180,216,0.4); */
  box-shadow: 0 0 35px rgba(252, 248, 3, 0.349);
}

/* BOTÃO "Ver todas as avaliações" */
.reviews-footer {
  text-align: center;
  margin-top: 30px;
}

.btn-ver-mais {
  display: inline-block;
  padding: 12px 30px;
  /* background: #00b4d8; */
  background: var(--amarelo-destaque);
  /* color: #fff; */
  color: #1c1c1c;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.35s;
}

.btn-ver-mais:hover {
  transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }

  .reviews-header h2 {
    font-size: 1.8rem;
  }

  .reviews-widget {
    padding: 15px;
  }
}

/* ===== MAPA ===== */
.mapa{
  /* margin: 25px 0px 25px 0px; */
  display: flex;
  width: 100%;
  justify-content: space-around;
  /* background-color: red; */
  background: 
  radial-gradient(circle at top right, #111 20%, transparent 50%, #001f3f 30%, transparent 30%),
  radial-gradient(circle at bottom left, #111111 20%, #001f3f 30%, transparent 80%),
  #000;
    & .mapa-informacao{
      width: 600px;
      height: 450px;
      background-color: #111;
    }
    & .maps{
      display: block;
      margin: 0 auto;
      border-radius: 12px; /* opcional, deixa com cantos arredondados */
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  
}
}
/* ===== MAPA / FIM ===== */

/* botão whatsapp flutuante -- inicio */

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Tooltip */
.whatsapp-tooltip {
  background: #1ebe5d;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
  position: absolute;
  bottom: 75px;
  right: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de pulsação */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .whatsapp-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

/* botão whatsapp flutuante -- FIM */


/* ===== FOOTER ===== */
.footer {
  background: var(--azul-fundo);
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Logo */
.footer-logo h2 {
  color: #fff;
  margin-bottom: 10px;
}

/* Títulos links e redes sociais */
.footer-links h3,
.footer-social h3 {
  color: #fff;
  margin-bottom: 15px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00b4d8;
}

/* Ícones sociais */
.social-icons {
  user-select: none;
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: var(--amarelo-destaque);
  font-size: 22px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b4d8;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* distribui os itens horizontalmente */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 10px;
  font-size: 14px;
  color: #ddd;
  gap: 10px;
}

.footer-bottom div:first-child {
  flex: 1; /* ocupa espaço à esquerda */
  display: flex;
  justify-content: flex-start; /* mantém a primeira mensagem à esquerda */
}

.footer-bottom div:nth-child(2) {
  flex: 1;
  display: flex;
  justify-content: center; /* centraliza a segunda mensagem */
}

.footer-bottom div:last-child {
  flex: 1; /* ocupa espaço à direita */
}

.footer-bottom img {
  width: 30px;
  height: 30px;
}

.footer-bottom .direitos {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .footer .container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr; /* colunas empilhadas em tablets menores */
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column; /* elementos empilhados no bottom */
  }

  .footer-bottom .direitos {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .social-icons a {
    font-size: 20px;
  }
}



/* --------------------------------------------------------------------- */
/*=[ SCROLL ]======================================*/
/* --------------------------------------------------------------------- */

::-webkit-scrollbar {
  width: 6px;
  height: 1px;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  /* background: #716afa; */
  background: var(--azul-principal);
  border-radius: 10px;
}

/* ===== SECTION ANIMADA ===== */
.section-animada {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  
  /* Gradiente animado */
  background: linear-gradient(270deg, #0077b6, #f8d33e, #001f3f);
  background-size: 600% 600%;
  animation: gradienteAnim 20s ease infinite;
}

.section-animada .conteudo {
  position: relative;
  z-index: 2; /* para ficar acima das partículas */
}

.section-animada h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f8d33e; /* amarelo da logo */
}

.section-animada p {
  font-size: 1.2rem;
  color: #fff;
}

/* ===== PARTICULAS FLUTUANTES ===== */
.section-animada::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background:
    radial-gradient(circle at 10% 20%, rgba(248,211,62,0.25), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0,119,182,0.2), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,180,216,0.15), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(248,211,62,0.2), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0,119,182,0.15), transparent 50%);
  z-index: 1;
  animation: flutuar-multiplos 20s linear infinite;
}