* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

hr{
  opacity: 0.5;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.grif h3{
color: #85e0d7;
}

.hero {
  background: url('assets/6.jpeg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

.btn-ab{
  margin-top: 6%;
}

.btn {
  padding: 14px 30px;
  background-color: #00c8b4;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  transition: 0.3s;

}

.btn:hover {
  background-color: #00a89a;
}

.sobre {
  background-color: #222;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.sobre .texto {
  max-width: 600px;
}

.sobre h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.sobre h2 span {
  color: #00c8b4;
}

.sobre p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.sobre img {
  max-width: 400px;
  border: 4px solid #00c8b4;
  border-radius: 10px;
}

.programas {
  background-color: #111;
  text-align: center;
  padding: 60px 0;
}

.programas h2 {
  font-size: 2.5em;
  color: #00c8b4;
}

/* .cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  padding: 15px;
  background-color: #00c8b4;
  color: #000;
}
 */

 /* _____________________________________________________________________________________________ */
 
 
 /* _____________________________________________________________________________________________ */
 
 
.beneficios {
  padding: 60px 20px;
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.titulo h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 10px;
}

.titulo p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 80px;
  margin-top: 40px;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.box {
  border-left: 1px solid #22ffe0;
  padding-left: 20px;
  position: relative;
}

.box img {
  width: 30px;
  margin-bottom: 15px;
}

.box h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.box p {
  font-size: 14px;
  color: #ccc;
}

.botao {
   padding: 14px 30px;
  margin-top: 80px;
}

button {
  padding: 14px 30px;
  background-color: #00c8b4;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background-color: #1bd6b8;
}

 /* _____________________________________________________________________________________________ */
 
 
 /* _____________________________________________________________________________________________ */
 
 
 
.testimonials {
  text-align: center;
  padding: 50px 20px;
}

.testimonials h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.card {
  background: white;
  color: black;
  border-radius: 10px;
  width: 250px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.avatar, .avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.avatar {
  background-color: #1a73e8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.avatar.orange {
  background-color: #ea4335;
}

.avatar-img {
  object-fit: cover;
}

.info {
  flex-grow: 1;
  margin-left: 10px;
  font-size: 0.9em;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.stars {
  color: gold;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.card a {
  color: gray;
  font-size: 0.8em;
  text-decoration: none;
}

.nav-btn {
  background: transparent;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

.cta {
  margin-top: 40px;
}

.cta button {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta button:hover {
  background: #009e8b;
}

 
 /* _____________________________________________________________________________________________ */

/* Estilização base para toda a seção */
.about-section {
    background-color: #333; /* Cor de fundo de exemplo, ajuste conforme necessário */
    color: white; /* Cor de texto padrão para a seção */
}

.about {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    padding: 5% 10%; /* Preenchimento ajustado para melhor equilíbrio visual */
    justify-content: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente */
    gap: 30px; /* Espaço entre a imagem e o conteúdo de texto */
}

.imageA {
    flex: 1; /* Permite que o contêiner da imagem cresça e encolha */
    min-width: 300px; /* Largura mínima antes de quebrar a linha */
    text-align: center; /* Centraliza a imagem horizontalmente se ela não ocupar toda a largura */
}

.imageA img {
    padding: 5%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block; /* Remove espaço extra abaixo da imagem */
    margin: 0 auto; /* Centraliza a imagem dentro de seu contêiner */
}

.textContent {
    flex: 2; /* Permite que o conteúdo de texto ocupe mais espaço */
    min-width: 300px; /* Largura mínima antes de quebrar a linha */
    padding: 2% 0; /* Preenchimento ajustado, controlado pelo preenchimento do pai */
}

.textContent h2 {
    font-size: 2.5em; /* Título maior */
    color: #00a89a; /* Cor de destaque para o título */
    margin-bottom: 20px;
    text-align: center; /* Centraliza o título em telas menores */
}

.textContent p {
    font-size: 1.1em;
    line-height: 1.6;
    color: white;
    margin-bottom: 15px;
    text-align: justify; /* Justifica o texto para melhor legibilidade */
}

.learn-more {
    display: inline-block; /* Permite que preenchimento e margem sejam aplicados */
    background-color: #00a89a; /* Cor de fundo do botão */
    color: white;
    padding: 10px 20px;
    text-decoration: none; /* Remove sublinhado */
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease; /* Transição suave ao passar o mouse */
}

.learn-more:hover {
    background-color: #008f82; /* Tom mais escuro ao passar o mouse */
}

.btn-about{
  margin-top: 7%;
}



/* --- Media Queries para Responsividade --- */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Empilha os itens verticalmente em telas menores */
        padding: 8% 5%; /* Ajusta o preenchimento para telas menores */
    }

    .imageA,
    .textContent {
        min-width: unset; /* Remove largura mínima para permitir flexibilidade total */
        width: 100%; /* Ocupa largura total */
    }

    .textContent h2,
    .textContent p {
        text-align: center; /* Centraliza o texto para dispositivos móveis */
    }

    .learn-more {
        display: block; /* Torna o botão um elemento de bloco */
        margin-left: auto; /* Centraliza o botão */
        margin-right: auto; /* Centraliza o botão */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .textContent h2 {
        font-size: 2em; /* Título menor para telas muito pequenas */
    }

    .textContent p {
        font-size: 1em; /* Texto de parágrafo menor para telas muito pequenas */
    }
}


 /* _____________________________________________________________________________________________ */

 
.servicos {
  max-width: 1200px;
  margin: auto;
  padding: auto;
  padding-bottom: 3%
}

.header-servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.header-servicos h2 {
  font-size: 28px;
}

.btn-card{
  display: flex;
  justify-content: center;
  margin-top: 3%;
}

.btn-veja-mais {
  margin-top: 1%;
  text-decoration: none;
  color: #00c8b4;
  border: 1px solid #00c8b4;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;

}

.btn-veja-mais:hover {
  background-color: #00c8b4;
  color: #fff;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card h3 {
  margin-top: 0;
  color: #000;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 10px 0 20px;
}

.card a {
  text-decoration: none;
  color: #008f82;
  font-weight: bold;
  font-size: 14px;
}

.contato {
  background-color: #222;
  text-align: center;
  padding: 60px 0;
}

.contato h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00c8b4;
}

.contato form {
  max-width: 500px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato input {
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-size: 1em;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2em;
    text-align: center;
    padding: 0 10px;
  }

  .hero p {
    font-size: 0.9em;
    text-align: center;
    padding: 0 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .sobre .container {
    flex-direction: column;
    text-align: center;
  }

  .sobre img {
    margin-top: 20px;
    width: 200px;
    height: 200px;
  }

  .grid-beneficios {
    grid-template-columns: 1fr;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 100%;
  }

  .testimonials h2 {
    font-size: 1.8em;
  }

  .cards-container {
    flex-direction: column;
  }

  .contato h2 {
    font-size: 2em;
  }

  footer p {
    font-size: 0.8em;
  }
}



@media (min-width: 481px) and (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
    text-align: center;
    padding: 0 20px;
  }

  .sobre .container {
    flex-direction: column;
    text-align: center;
  }

  .sobre img {
    margin-top: 20px;
    width: 250px;
    height: 250px;
  }

  .grid-beneficios {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    justify-content: center;
    gap: 30px;
  }

  .card {
    width: 45%;
  }

  .testimonials h2 {
    font-size: 2em;
  }

  .cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 3em;
  }

  .sobre img {
    max-width: 300px;
    height: auto;
  }

  .grid-beneficios {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    justify-content: center;
    gap: 40px;
  }

  .card {
    width: 280px;
  }
}


@media (min-width: 1025px) {
  .hero h1 {
    font-size: 4em;
  }

  .sobre img {
    max-width: 350px;
  }

  .grid-beneficios {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards {
    gap: 50px;
  }
}
