/* Reset e Estilos Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background-color: #121212;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Tipografia para Títulos e Botões */
h1,
h2,
h3,
.logo,
.btn {
  font-family: "Poppins", sans-serif;
}

/* Navegação */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #1f1f1f; /* Cor mais escura */
  position: fixed;
  width: 60%;
  left: 20%;
  top: 20px;
  z-index: 1000;
  border-radius: 15px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Links de Navegação */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #bb86fc; /* Cor de destaque */
}

/* Botão Toggle (Mobile) */
.toggle-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.toggle-button .bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Seção Hero */
.hero {
  background: linear-gradient(120deg, #1f1f1f, #2e2e2e, #121212);
  background-size: 600% 600%;
  animation: gradientAnimation 15s ease infinite;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 35px;
}

.btn {
  background-color: #bb86fc;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #9a6bcd;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(187, 134, 252, 0.4);
}

/* Seções */
section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
  color: #ffffff;
  position: relative;
}

h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #bb86fc;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

section h2 i {
  margin-right: 10px;
  color: #bb86fc;
}

/* Estilos da Seção Como Funciona */
.how-it-works {
  background-color: #080911;
  padding: 80px 0;
  text-align: center;
}

.how-it-works h2 {
  color: #ffffff;
  margin-bottom: 60px;
  position: relative;
}

.how-it-works h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #bb86fc;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

.steps {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}

.step {
  width: 30%;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
}

.step img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.step p {
  font-size: 16px;
  color: #cccccc;
}

/* Espaçamento adicionado entre as imagens adicionais */
.image-pair {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px; /* Espaçamento entre as imagens */
  margin-top: 40px; /* Espaçamento superior */
}

.image-pair img {
  width: 45%; /* Ajusta a largura para caber lado a lado */
  border-radius: 10px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 80%;
    margin-bottom: 40px;
  }

  .image-pair {
    flex-direction: column;
  }

  .image-pair img {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* Seção Benefícios */
.benefits {
  background-color: #2e2e2e;
}

.benefit-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.benefit-card {
  background-color: #1e1e1e;
  width: 30%;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
  font-size: 48px;
  color: #bb86fc;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 18px;
  color: #b0b0b0;
}

/* Seção Serviços */
.services {
  background-color: #1e1e1e;

  overflow: hidden;
}

.swiper-container {
  width: 40%;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0px; /* Reduzindo ainda mais o espaçamento entre os slides */
}

.swiper-slide img {
  width: 400px;
  height: 400px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .swiper-slide img {
    width: 400px;
    height: 400px; /* Ajusta a altura das imagens no mobile */
  }
}
@media (max-width: 480px) {
  .swiper-container {
    width: 100%; /* Usa toda a largura da tela no mobile */
  }
  .swiper-slide img {
    height: 350px; /* Ajusta a altura das imagens no mobile */
  }
}

/* Seção Preço */
.pricing {
  background-color: #2e2e2e;
  text-align: center;
}

.pricing p {
  font-size: 22px;
  color: #b0b0b0;
  margin-bottom: 30px;
}

.pricing .highlight {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 50px;
}

.price-card {
  background-color: #1e1e1e;
  display: inline-block;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 25px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}

.price-card ul li {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 56px;
  color: #bb86fc;
  margin-bottom: 25px;
}

.price-card .btn {
  background-color: #bb86fc;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.price-card .btn:hover {
  background-color: #9a6bcd;
}

/* Estilos da Seção Perguntas Frequentes */
.faq {
  background-color: #1e1e1e;
  padding: 100px 0;
}

.faq h2 {
  color: #ffffff;
  text-align: center;
}

.faq h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #bb86fc;
  margin: 20px auto 0;
}

.faq-item {
  border: 1px solid #333333;
  border-radius: 8px;
  background-color: #2e2e2e;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 60%; /* Tamanho ajustado para 60% */
  margin-left: 20%; /* Espaçamento à esquerda */
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  margin-left: 10px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  color: #b0b0b0;
  padding: 0 15px;
  display: none;
  margin-left: 15px; /* Inicialmente oculto */
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Ajuste conforme necessário */
  padding-top: 15px;
  display: block; /* Exibe a resposta */
  margin-left: 15px;
}

@media (max-width: 768px) {
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin-left: 15px;
    margin-right: 10px;
  }

  .faq-question i {
    transition: transform 0.3s ease;
  }
}
@media (max-width: 480px) {
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin-left: 15px;
  }

  .faq-question i {
    transition: transform 0.3s ease;
  }
}

/* Ícone do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Estilos da Seção Perguntas Frequentes */
.faq {
  background-color: #1e1e1e;
  padding: 100px 0;
}

.faq h2 {
  color: #ffffff;
}

.faq h2::after {
  background-color: #bb86fc;
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #333333;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #b0b0b0;
  padding: 0 0 15px 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Ajuste conforme necessário */
}

/* seção footer */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  margin: 20px;
  border-radius: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Permitir quebra de linha para dispositivos móveis */
}

.footer-section {
  flex: 1;
  margin: 0 10px;
}

.footer-section h3 {
  color: #ffffff;
}

.footer-section p {
  color: #b3b3b3;
}

/* Estilo para a logo */
.footer-logo {
  width: 300px; /* Tamanho padrão da logo */
  height: auto;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin: 10px 0;
    text-align: center;
  }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 480px) {
  footer {
    padding: 10px;
    margin: 10px;
  }

  .footer-section {
    flex: none;
    width: 100%;
    margin: 5px 0;
  }

  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section p {
    font-size: 14px;
  }

  /* Ajuste do tamanho da logo para dispositivos móveis */
  .footer-logo {
    width: 200px; /* Reduz o tamanho da logo em dispositivos móveis */
  }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 480px) {
  footer {
    padding: 10px;
    margin: 10px;
  }

  .footer-section {
    flex: none;
    width: 100%;
    margin: 5px 0;
  }

  .footer-section h2,
  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 90%;
    left: 5%;
    padding: 10px 5%;
    top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    width: 90%;
    background-color: rgba(31, 31, 31, 0.95);
    border-radius: 0 0 15px 15px;
    left: 5%;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .toggle-button {
    display: flex;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .step,
  .benefit-card {
    width: 100%;
  }

  .swiper-slide img {
    width: 90%;
  }

  .price-card {
    width: 90%;
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .step img {
    width: 80px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step p {
    font-size: 16px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .benefit-card p {
    font-size: 16px;
  }

  .price-card h3 {
    font-size: 26px;
  }

  .price-card .price {
    font-size: 42px;
  }
}
