/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Helvetica:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Menu Superior */
.menu-superior {
  background-color: #000;
  position: relative;
  z-index: 1001;
  text-align: end;
}

.icones {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0px;
  padding-right: 20px;
  margin-right: 10%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-link i {
  font-size: 18px;
}

.social-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
}

/* Garantir que todos os elementos dentro do link sejam clicáveis */
.social-link * {
  pointer-events: none;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  /* Espaça a logo e os itens de menu */
  justify-content: center;
}

.menu img {
  margin-top: 13%;
  margin-left: 230px;
  width: 220px;
  height: 50px;
  /* Ajuste conforme necessário */
}

.menu ul {
  color: rgb(255, 255, 255);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 3%;
}

.menu li {
  color: rgb(255, 255, 255);
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  /* text-decoration: underline #5c5252; */
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  position: relative;
  text-decoration: none !important;
  /* Remove sublinhado padrão */
}

.menu li.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  animation: underline 0.3s ease-out;
}

@keyframes underline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

.menu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.menu.scrolled li {
  color: black;
  margin-top: -3%;
}

.menu.scrolled a {
  color: black;
}

.menu.scrolled {
  background-color: rgb(255, 255, 255);
  opacity: 0.9;
  /* text-decoration: underline #5c5252; */
  margin: 0;
  /* Remove a margem */
  padding: 0;
  /* Remove o padding */
  display: flex;
  /* Alinha os itens em linha */
  justify-content: center;
  /* Alinha os itens ao centro horizontalmente */
  align-items: center;
  /* Alinha os itens ao centro verticalmente (opcional, dependendo do layout do menu) */
  margin-top: -2%;
  padding: 10px;
}

.menu a:visited {
  color: inherit;
  /* Mantém a mesma cor do link padrão */
  text-decoration: none;
  /* Remove qualquer sublinhado se necessário */
}

/* Esconder o botão no desktop */
.menu-toggle {
  display: none;
}

.menu-responsivo {
  background-color: rgb(255, 255, 255);
  position: fixed;
  width: 100%;
  height: 20%;
  padding: 10px;
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .menu.scrolled {
    background-color: rgb(255, 255, 255);
  }

  .menu-superior span {
    font-size: 8px;
  }

  /* Torna o menu lateral */
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    transition: left 0.3s ease-in-out, background 0.3s ease-in-out;
  }

  .menu.active {
    left: 0;
    color: rgb(0, 0, 0);
  }

  .menu img {
    margin: 0;
    margin-left: 20px;
    width: 180px;
    height: auto;
  }

  .menu.open {
    left: 0;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .menu li {
    font-size: 16px;
    color: rgb(0, 0, 0);
  }

  .menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    margin-left: 10%;
  }

  /* Mantém a logo visível */
  .menu img {
    position: fixed;
    top: 7%;
    left: 20%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1100;
  }

  .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: black;
    transition: 0.3s;
  }
}

/* Esconder a seção mobile por padrão */
.secao-celular {
  display: none;
}

/*===================================================================================================*/

.banners img {
  width: 100%;
  height: 500px;
}

.apresentacao {
  display: flex;
  padding: 50px 170px 0px 170px;
  gap: 50px;
  align-items: center;
}

.imagem-apresentacao img {
  width: 500px;
}

.texto-apresentacao {
  align-items: center;
  justify-content: center;
  font-size: 18px;
  display: flex;
}

.texto-apresentacao p {
  text-align: justify;
  line-height: 38.3px;
  color: #555555;
}

.secao-inicial {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px 0px;
}

.botao-apresentacao button {
  color: rgb(255, 255, 255);
  background-color: rgb(49, 49, 49);
  padding: 10px;
  border-radius: 8%;
  margin-left: 70%;
  font-size: 25px;
  border: 1px solid rgb(255, 255, 255);
  width: 10%;
  line-height: 32px;
  font-family: 'Helvetica', sans-serif;
}

.hr-estilo {
  width: 50%;
  border: 1px solid rgb(0, 0, 0);
  opacity: 0.1;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  display: block;
  margin: 0 auto;
  margin-top: 2%;
}

.texto-centralizado img {
  margin: 0 auto;
  display: block;
}

.texto-centralizado h1 {
  text-align: center;
  font-size: 20px;
  padding: 20px 0px 0px 0px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  color: #555555;
}

.texto-centralizado p {
  padding: 30px 200px 50px 200px;
  text-align: justify;
  font-size: 20px;
  line-height: 36px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 400;
  color: #555555;
}

.texto-principal h1 {
  text-align: center;
  font-size: 60px;
  color: #666666;
}

.texto-principal h2 {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: #666666;
}

.texto-principal h3 {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  font-family: Arial, sans-serif;
  color: #666666;
}

.redes-sociais {
  text-align: center;
  margin-top: 20px;
  gap: 100px;
  display: flex;
  justify-content: center;
}

.redes-sociais a {
  display: inline-block;
  margin: 10px;
  font-size: 30px;
  text-decoration: none;
  color: #333;
}

.redes-sociais i {
  font-size: 50px;
}

.footer {
  padding: 20px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.footer h1 {
  font-size: 12px;
  text-align: start;
  margin-left: 15%;
}

/* Container geral do slideshow */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Slides */
.slide {
  display: none;
  width: 100%;
}

.slide:first-child {
  display: block;
}

.slide img,
.slide video {
  width: 100%;
  display: block;
}

/* Navegação manual */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots de navegação */
.dots {
  text-align: center;
  position: absolute;
  /* Muda para absolute */
  bottom: 10px;
  /* Posiciona os dots dentro do slideshow */
  left: 50%;
  transform: translateX(-50%);
  transform: translateY(-700%);
  /* Centraliza os dots */
  z-index: 10;
  /* Garante que os dots fiquem acima do conteúdo */
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 5px 3px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  border-radius: 2px solid #555555;
}

.active-dot {
  background-color: #717171;
}

/* Contêiner das âncoras */
.anchor-container {
  position: fixed;
  top: 50%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateY(-50%);
}

/* Estilo das âncoras (esferas) */
.anchor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #33b5e5;
}

/* Efeito ao passar o mouse */
.anchor:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 1200px) {

  .apresentacao {
    padding-left: 100px;
    padding-right: 100px;
  }

  .texto-centralizado p {
    padding-left: 100px;
    padding-right: 100px;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .icones {
    justify-content: center;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .apresentacao {
    flex-direction: column;
    padding: 30px 50px;
  }

  .texto-apresentacao {
    font-size: 16px;
  }

  .texto-centralizado p {
    padding: 20px 50px;
    font-size: 20px;
  }

  .botao-apresentacao button {
    margin-left: 50%;
    width: 40%;
    font-size: 22px;
  }
}


@media (max-width: 768px) {
  .secao-inicial {
    display: none;
  }

  .secao-celular {
    display: block;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px 0px;
  }

  .apresentacao-celular {
    display: flex;
    align-items: center;
    padding: 20px 20px 0px 20px;
  }

  .imagem-celuklr img {
    width: 200px;
    flex-shrink: 0;
  }

  .texto-apresentacao-celular p {
    font-size: 18px;
    color: #555555;
    line-height: 38.3px;
  }

  .texto-apresentacao-celular2 p {
    font-size: 18px;
    color: #555555;
    line-height: 38.3px;
  }

  .texto-apresentacao-celular2 {
    text-align: justify;
    padding: 0px 20px 20px 20px;
  }

  .imagem-apresentacao img {
    width: 100px;
  }

  .apresentacao,
  .texto-centralizado p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
  }

  .texto-principal h1 {
    font-size: 40px;
  }

  .texto-principal h3 {
    line-height: 37.3px;
  }

  .redes-sociais {
    flex-direction: row;
    gap: 20px;
  }

  .anchor-container {
    display: none;
  }

  .slideshow-container {
    margin-top: 60px;
  }

  .prev,
  .next {
    font-size: 18px;
    padding: 10px;
  }

  .rede a {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .icones a {
    font-size: 12px;
  }

  .texto-centralizado p {
    font-size: 20px;
    padding: 20px 15px;
  }

  .texto-principal h1 {
    font-size: 30px;
  }

  .texto-principal h2 {
    font-size: 20px;
  }

  .texto-principal p {
    font-size: 16px;
  }

  .footer h1 {
    font-size: 10px;
  }

  .dots {
    display: none;
  }
}

/* Regras gerais para responsividade */
img {
  max-width: 100%;
  height: auto;
}

.slide img {
  height: auto;
  max-height: 70vh;
}

.texto-centralizado img {
  max-width: 90%;
}