/* Estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #000;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Imagem de fundo do cabeçalho */
.header-background {
  background: url("https://maikoneugenio.adv.br/imagensrd/fundo") no-repeat
    center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  position: relative;
}

.header-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d6d6d5;
  opacity: 0.75;
  z-index: 1;
}

/* Estilos do logo */
.logo {
  max-width: 350px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Ajustes para o Título e Subtítulo */
.header-title {
  font-size: 3rem; /* Ajuste do tamanho */
  line-height: 1.3; /* Ajuste da altura da linha */
  font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  margin-bottom: 20px;
  margin-top: 55px;
  color: #000;
  text-align: center;
  font-weight: bold;
}

.header-subtitle {
  font-size: 1.2rem; /* Ajuste do tamanho */
  line-height: 1.2; /* Altura da linha ajustada */
   font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  margin-bottom: 50px;
  margin-top: 40px;
  margin-left: 100px;
  margin-right: 100px;
  color: #000;
  text-align: center;
}

/* Destaques em Negrito e Sublinhado */
.highlight {
  color: #000; /* Cor preta para o texto */
  padding: 2px 5px;
  font-weight: bold; /* Negrito */
  text-decoration: underline; /* Sublinhado */
}

/* Botões */
.btn-advogado,
.btn-whatsapp {
  padding: 20px 50px;
  background-color: #0a811f;
  color: white;
  font-size: 1rem;
  border: none;
  font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  margin-top: -50px;
  margin-bottom: -30px;
    display: inline-flex; /* Adiciona alinhamento flex para o ícone e texto */
    align-items: center; /* Centraliza o conteúdo do botão verticalmente */
}

.btn-advogado:hover,
.btn-whatsapp:hover {
  background-color: #39d354;
}

.whatsapp-icon {
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}


/* Estilos de responsividade */
@media (max-width: 768px) {
  .header-title {
    font-size: 2.2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 20px;
  }

  .benefits-container {
    flex-direction: column;
    align-items: center;
  }

  .benefit-item {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Estilos da seção de CTA */
.cta {
  background-color: #888888;
  padding: 30px 20px;
  text-align: center;
  font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  max-width: 1100px;
  margin: 0 auto;
}

.cta p {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.cta a {
  display: inline-flex;
  align-items: center;
  background-color: #cd0000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-top: 40px;
  margin-bottom: 20px;
}

.cta a:hover {
  background-color: #d12c2c;
}

/* Seção de Avaliações */
.testimonials-section {
  background-color: #fff;
  padding: 50px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.testimonials-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.testimonials-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  text-align: left;
}

.testimonial img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  float: left;
  margin-right: 15px;
}

.testimonial h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0;
}

.testimonial .stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  clear: both;
}

/* Botão de WhatsApp (opcional para a seção de Avaliações) */
.whatsapp-button {
  display: inline-block;
  background-color: #0a811f;
  color: white;
   font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  font-weight: bold;
  font-size: 1rem;
  padding: 20px 50px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 40px;
  margin-bottom: 30px;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #39d354;
}

.whatsapp-button img {
  vertical-align: middle;
  margin-right: 10px;
}

/* Responsividade para a seção de Avaliações */
@media (max-width: 768px) {
  .testimonial {
    width: 100%;
    margin-bottom: 20px;
  }

  .testimonial img {
    width: 50px;
    height: 50px;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Seção Quem Fará o Seu Atendimento */
.quem-atendimento {
  background-color: #e6e6e6;
  padding: 50px 0;
  font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
}

.quem-atendimento .container {
  max-width: 1200px;
  margin: 0 auto;
}

.quem-atendimento .title-section {
  text-align: center;
  margin-bottom: 20px;
  margin-top: -20px;
}

.quem-atendimento .title-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.quem-atendimento .title-section p {
  font-size: 14px;
}

/* Alinhamento e tamanhos flexíveis */
.quem-atendimento .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* Ajuste da imagem com opções de tamanhos proporcionais */
.quem-atendimento .image-section img {
  max-width: 1500px;
  width: 90%; /* Ajusta a imagem ao container */
  height: auto; /* Mantém a proporção da imagem */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Opções de margens manuais para ajustar */
.quem-atendimento .image-section {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 0px;
  max-width:50%;
}

.quem-atendimento .content-section {
  text-align: justify;
  font-size: 16px;
  margin-left: 20px; /* Ajuste de margem entre imagem e texto */
  margin-right: 20px;
  max-width:50%;
}

.quem-atendimento .content-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Botão de WhatsApp com alinhamento */
.quem-atendimento .btn-whatsapp {
  background-color: #0a811f;
  color: white;
  padding: 15px 80px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 40px auto 0; /* Alinhamento do botão centralizado */
}

.quem-atendimento .btn-whatsapp img {
  margin-right: 10px;
}

/* Hover no botão de WhatsApp */
.quem-atendimento .btn-whatsapp:hover {
  background-color: #39d354;
}

/* Responsividade */
@media (max-width: 768px) {
  .quem-atendimento .content-wrapper {
    flex-direction: column;
  }

  .quem-atendimento .image-section,
  .quem-atendimento .content-section {
    max-width: 100%;
  }

  .quem-atendimento .content-section {
    padding-top: 20px;
  }
}

/* Rodapé */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 0;
}

/* Estilos da seção de Texto Informativo*/
.informativos {
  background-color: #fff;
  padding: 60px 30px;
  text-align: center;
}

.informativos h2 {
   font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  font-size: 28px;
  color: #000;
  margin-bottom: 40px;
}

.informativos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.informativo-item {
  flex: 1 1 45%;
  text-align: left;
  margin: 20px;
  max-width: 500px;
}

.informativo-item h3 {
   font-family: Helvetica, sans-serif; /* Aplicação da fonte Helvetica */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.informativo-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.informativo-icon {
  font-size: 40px;
  color: black;
  margin-right: 10px;
  vertical-align: middle;
  }

/* Estilos de responsividade */
@media (max-width: 768px) {
  .header-title {
    font-size: 2.2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
    margin-left: 20px;
    margin-right: 20px;
  }

  .informativos-container {
    flex-direction: column;
    align-items: center;
  }

  .informativo-item {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Ajuste para a largura da .container em dispositivos menores */
@media (max-width: 480px) {
  .container {
    max-width: 100%;
    padding: 10px;
  }
  
  /* Ajuste no tamanho dos títulos e subtítulos */
  .header-title {
    font-size: 1.8rem; /* Reduz o tamanho da fonte */
    margin-top: 0;
  }

  .header-subtitle {
    font-size: 1rem;
    margin-left: 10px;
    margin-right: 10px;
  }

  /* Correção para os botões */
  .btn-advogado,
  .btn-whatsapp,
  .whatsapp-button {
    padding: 15px 30px;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* Ajustes específicos para telas de 768px ou menores */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 15px;
  }

  /* Tamanho da fonte e margens dos elementos de cabeçalho */
  .header-title {
    font-size: 2rem;
  }

  .header-subtitle {
    font-size: 1rem;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* Ajuste do tamanho do botão para uma melhor visualização */
  .btn-advogado,
  .btn-whatsapp,
  .whatsapp-button {
    padding: 15px 35px;
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  /* Seção de Avaliações */
  .testimonial {
    width: 90%;
    margin-bottom: 20px;
  }
}
