/*Configuraçõoes gerais*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  
}



/*Configurações gerais*/

/*tag*/
.tag {
  border: none;
  background: #f1f1f1;
  padding: 15px 25px;
  border-radius: 20px;
  cursor: default;
  color: black;
}

/*Botões*/
.btn {
  display: inline-block;
  background: linear-gradient(to right, #00aff0, #2720c8);
  color: white;
  font-size: 25px;
  padding: 18.5px 50px;
  border-radius: 40px;
  text-decoration: none;
  margin: 20px 0;
  transition: .2s ease-in-out;
  
}
.btn:hover{
  transform: scale(1.1);
}

/*header*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding: 20px;
  border: 1px solid #00a7ff;
  border-radius: 0 0 60px 60px;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  padding: 20px 6%;
  overflow: hidden;
}

.side-menu, .menu-toggle{
  display: none; /* Esconde o menu na versão desktop */
}

/* Responsividade: Menu lateral em dispositivos móveis */
@media (max-width: 768px) {
  .menu {
    display: none; /* Esconde o menu na versão desktop */
  }
  .side-menu{
    display: block;
  }
  .seta{
    display: none;
    visibility: hidden;
  }
  .cta-button{
    display: none;
  }
  header{
    position: fixed;
    background-color: #ffffffd0;
  }

  /* Botão de menu */
  .menu-toggle {
    display: block;
    color: #00a7ff;
    background-color: #23899600;
    font-size: 30px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 110000000;
  }

  /* Menu lateral */
  .side-menu {
    position: fixed;
    top: 0;
    left: -250px; /* Menu começa fora da tela */
    width: 250px;
    height: 100%;
    background-color: #0073ffe9;
    transition: left 0.3s ease;
    padding-top: 60px;
  }

  .side-menu ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
  }

  .side-menu li {
    margin: 20px 0;
  }

  .side-menu a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    padding: 10px;
    display: block;
  }

  .side-menu a:hover {
    background-color: #005c80; /* Cor de fundo ao passar o mouse */
  }

  /* Quando o menu lateral estiver visível */
  .side-menu.open {
    left: 0;
  }

  /* Mudança no botão do menu */
  .menu-toggle.open {
    color: #1c0080; /* Mudar cor do ícone ao abrir o menu */
  }
}


.logo {
  width: 150px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

section.hero nav ul li a {
  text-decoration: none;
  color: blue;
  transition: 0.2s ease-in-out;
}

section.hero header nav ul li a:hover{
  color: #00a7ff;
}

.cta-button {
  background: #00a7ff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 15px;
  transition: .2s ease-in-out;
}

.cta-button:hover{
  transform: scale(1.1);
}


/*SESSÃO HERO*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/background_hero.png') no-repeat center center;
  background-size: cover;
  text-align: left;
  padding: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 4%;
}

.hero-text {
  max-width: 100%;
}

h1 {
  font-size: 45px;
  margin: 15px 0;
  font-weight: 400;
}

.highlight {
  color: blue;
  
}

.arrow {
  color: rgb(0, 0, 255); 
  font-size: 65px;
}


.stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.stat-box {
  background: #00aff0;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.counter {
  font-size: 1.3rem;
  font-weight: bold;
}

.hero-image {
  position: relative;
  max-width: 50%;
}

.main-image {
  width: 100%;
  max-width: 600px;
}

@keyframes float {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); } /* Sobe */
  100% { transform: translateX(-50%) translateY(0); } /* Volta */
}

.arrow-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  animation: float 2s ease-in-out infinite; /* Animação contínua */
}



/*SESSÃO SOBRE A FORTAL*/

.sobre-fortal {
  overflow: hidden;
  padding: 2% 12% ;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  height: 100vh;
  margin: auto;
  background: url('../images/background_sessao2.png') no-repeat center center;
  background-size: cover;

}
.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


/* Título e destaque */
h2 {
  font-size: 45px;
  margin: 30px 0;
  font-weight: 400;
}
.highlight {
  color: #1a73e8;
  font-weight: bold;
}


/* Tabs */
.tabs-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
.tabs {
  display: flex;
  flex-direction: column;
}
.tab {
  background: #f1f1f1;
  padding: 15px 25px;
  border: none;
  margin: 10px 0;
  border-radius: 20px;
  cursor: pointer;
}
.tab.active {
  background: #1a73e8;
  color: white;
}

/* Conteúdo das abas */
.tab-content {
  display: none;
  background: #1a73e8;
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin-left: 30px;
  flex-grow: 1;
  text-align: center;
  align-items: center;
  height: 150px;
}
.tab-content.active {
  display: block;
}

/* Sessão Serviços*/

.servicos {
  overflow: hidden;
  width: 100%;
  height:auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url('../images/background_servicos.png') no-repeat center center;
  background-size: cover;
  padding: 0 10%;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items:center;
  text-align: left;
}

.itens {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.itens h3{
  font-weight: 550;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #1a73e8;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-align: left;
}

.item img {
  width: 80px;
  
}

.btn {
  margin-top: 20px;
}

/*adquiraja*/

.adquira {
  background: #0066D9;
  text-align: center;
  padding: 40px 20px;
  color: white;
  overflow: hidden;
}

.adquira h2 {
  font-size: 40px;
  font-weight: bold;
  border-bottom: 2px solid #82b8ff;
}

.cards-adquira {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card-adquira {
  position: relative;
  width: 380px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.card-adquira img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.overlay h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.overlay i {
  font-size: 30px;
  margin-bottom: 10px;
}

.overlay a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.overlay a:hover {
  background: white;
  color: #0066D9;
}

/* Responsividade */
@media (max-width: 768px) {
  .cards {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 90%;
      height: auto;
  }

  .overlay {
      padding: 30px;
  }

  .overlay h3 {
      font-size: 16px;
  }

  .overlay a {
      padding: 8px 16px;
      font-size: 14px;
  }
}
/* vantagenes*/

.vantagens {
  background: url('../images/background_vantagens.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 4%;
}
.container-vantagens{
  padding: 2% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.texto-vantagens h2 {
  font-size: 45px;
  color: white;
}
.texto-vantagens .personalizado {
  color: #38b6ff;
}
.texto-vantagens p {
  color: white;
  font-size: 14px;
}
.imagem-vantagens img {
  width: 320px;
  border-radius: 20px;
}

.linha {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
.botao-vantagem {
  background: #38b6ff;
  color: white;
  width: 500px;
  height: 64px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s, transform 0.2s;
}
.botoes-vantagens{
  text-align: center;

}
.botao-vantagem:hover {
  background: #2a9fd6;
  transform: scale(1.1);
}
.botao-cta {
  display: inline-flex; /* Mantém alinhamento adequado */
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Remove o sublinhado do link */
  text-align: center;
  background: none;
  border: 2px solid white;
  color: white;
  width: 280px;
  height: 64px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s, color 0.3s;
}

.botao-cta:hover {
  background: white;
  color: #0a56a5;
}



/*depoimentos*/

.depoimentos {
  background-color: #0fafdf;
  padding: 5% 10%;
  width: 100%;
  overflow: hidden;
  height: auto;
}

.title-depoimentos{
color: white;
}

h2 span {
  color: #33A8FF;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  color: black;
  width: 360px;
  height: 400px;
  padding: 2%;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stars {
  color: gold;
  margin-bottom: 10px;
}

.nome {
  font-weight: bold;
  margin-top: 15px;
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.profissao {
  font-size: 14px;
  color: gray;
  position: absolute;
  bottom: 30px;
  left: 20px
}

.aspas {
  font-size: 40px;
  color: #33A8FF;
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.depoimentos .cta{
  padding: 20px;
  text-align: center;
}


@media (max-width: 768px) {
  .cards {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 90%;
  }
}


/*CONTATO*/

.contato {

  width: 100%;
  height: auto;
  overflow: hidden;
  background: url('../images/background_contato.png') no-repeat center center;
  background-size: cover;
}

.container-contato {
  padding: 6% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.info-contato {
  max-width: 50%;
}

.btn-contatos {
  background: transparent;
  border: 2px solid gray;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

.contato-opcoes {
  margin-top: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  background: white;
  width: 480px;
  height: 100px;
  border-radius: 50px;
  margin-bottom: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.contato-item i {
  font-size: 30px;
  margin-right: 10px;
}

.whatsapp {
  border: 1px solid #ccc;
  color:#0055A4;
  padding: 0 4%;
}

.email {
  background: #0055A4;
  color: white;
  padding: 0 4%;
}

.formulario {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  width: 40%;
}

.formulario h3 {
  margin-bottom: 10px;
}

.formulario p {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

textarea {
  height: 80px;
  resize: none;
}

.btn-enviar {
  background: linear-gradient(to right, #007BFF, #004AAD);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
}



/*Footer*/

footer {
  background: white;
  border: 1px solid #00a7ff;
  border-radius: 60px 60px 0px 0px;
  padding: 2%;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.logo-footer  {
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 4%;
}

.logo-footer img{
  width: 200px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #1C36D9;
}

.footer-section p {
  font-size: 16px;
  color: #333;
}

.footer-section iframe {
  border-radius: 10px;
}

.footer-section a i {
  font-size: 30px;
  color: #1C36D9;
}

.footer-bottom {
  background: #0055A4;
  color: white;
  padding: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
 
  border-radius: 50px;
  max-width: 1200px;
  margin: 5px auto;
}

.footer-bottom p {
  margin: 5px;
}

.footer-bottom span {
  font-weight: bold;
  background: white;
  padding: 3px 8px;
  border-radius: 15px;
  color: #1C36D9;
}

.footer-bottom img{
  width: 150px;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      text-align: center;
  }

  .footer-section {
      margin-bottom: 20px;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
}

/*botão wtt*/
footer .logo-footer img{
  width: 200px;
}

#div-fixa{
  position: fixed;
  bottom: 10px;
  margin: 0 20px;
  cursor: pointer;  
  right: 80px; /* Adiciona esta linha */
  z-index: 999999999999999;
}
#div-fixa img{
  width: 50px;
  height: 50px;
}

#div-fixa a .flex-itens{
  display: flex;
  align-items:center;
  border: #800020;
}

#div-fixa a .flex-itens span{
  display: block;
  font-weight: bold;
  margin-left: 50px;


}
#div-fixa a{
  text-decoration: none;
  
}

.flutuar{
  z-index: 10000;
  animation-name: flutuar2;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


@keyframes flutuar2{
  form{
    transform: translate3d(0, 0, 0);
    filter: brightness(100%);
  }
  to{
    transform: translate3d(0, -8px, 0);
    filter: brightness(140%);

  }
}


/*Responsividade*/

/*Hero*/
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin: 60px;
  }

  .hero-text {
    max-width: 90%;
  }

  .stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 8% 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  .arrow {
    font-size: 50px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    max-width: 90%;
  }

  .main-image {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  .arrow {
    font-size: 40px;
  }

  .main-image {
    max-width: 300px;
  }

  .arrow-down {
    width: 40px;
  }
}
@media (max-width: 768px) {

  /*.hero-content{
   
    margin: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 4% 0;
  }

  .hero-content h1{
    font-size: 40px;
  }

  .hero-text{
    height: 100%;
    
  }

  .arrow{
    display: none;
  }
  .stats{
    gap: 5px;
    position: absolute;
    top: 45%;
    left: 0;
    flex-wrap:wrap;
    justify-content: center;
    padding: 5%;
  }

  .hero-image img{
    width: 200px;
  }

  .hero-image{
  
    position: absolute;
    top: 72%;
    left: 25%;
    
  }
    */
  

  /*SOBRE NOS*/
  .sobre-fortal {
    padding: 5% 8%;
    height: auto;
    text-align: center;
    align-items: center;
  }

  .top-content {
    flex-direction: column;
    gap: 15px;
  }

  h2 {
    font-size: 28px;
  }

  .tabs-container {
    flex-direction: column;
    align-items: center;
  }

  .tabs {
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    width: 100%;
  }

  .tab {
    padding: 10px 15px;
    font-size: 14px;
  }

  .tab-content {
    margin-left: 0;
    width: 100%;
    height: auto;
    padding: 15px;
  }

  /*serviços*/

  .servicos {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .container, .texto {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .image-servicos img {
    width: 80%;
    max-width: 300px;
  }

  .itens {
    align-items: center;
  }

  .item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item img {
    width: 60px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /*vantagens*/

  .container-vantagens {
    flex-direction: column;
    text-align: center;
    padding: 5%;
  }

  .texto-vantagens h2 {
    font-size: 32px;
  }

  .texto-vantagens p {
    font-size: 16px;
  }

  .imagem-vantagens img {
    width: 90%;
    max-width: 280px;
  }

  .linha {
    flex-direction: column;
    gap: 10px;
  }

  .botao-vantagem {
    width: 100%;
    max-width: 400px;
    height: 56px;
  }

  .botao-cta {
    width: 100%;
    max-width: 280px;
    height: 56px;
  }

  /*CONTATO*/

  .container-contato {
    flex-direction: column;
    padding: 8%;
    gap: 30px;
    text-align: center;
  }

  .info-contato {
    max-width: 100%;
  }

  .contato-opcoes {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contato-item {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 15px;
    border-radius: 20px;
    text-align: left;
  }

  .contato-item i {
    font-size: 24px;
  }

  .formulario {
    width: 100%;
    max-width: 380px;
    padding: 20px;
  }

  .btn-enviar {
    font-size: 16px;
    padding: 10px;
  }
}
