/* === ESTILOS PARA O HEADER === */
/* Importação da fonte Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

/* === ESTILOS PARA O HEADER === */
/* Importação da fonte Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');


/* Estilos gerais do header e da barra de navegação */
header {
  background-color: #647465; /* Cor de fundo do header */
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 12%;
}

/* Estilo do logo no header */
.logo-img {
  height: 100px; /* Altura do logo, ajustando-se à imagem enviada */
  width: auto; /* A largura será ajustada automaticamente para manter a proporção */
  margin-left: 30%;
  object-fit: contain;
}

/* Container do header para garantir a altura e o alinhamento vertical */
.header-container {
  height: 80px; /* Altura do header em resoluções maiores */
}

/* Estilo para os links da navegação */
.nav-link {
  color: #eff0f0; /* Cor do texto dos links */
  font-weight: 500;
  padding: 0 1rem; /* Adiciona espaçamento entre os links */
  margin-right: 30x;
  transition: color 0.3s ease-in-out; /* Transição suave na cor */
}

/* Estilo para o link ativo e hover */
.nav-link.active,
.nav-link:hover {
  color: #FFF; /* Cor do texto no hover e ativo */
}


/* Estilo para o botão do menu hamburger */
.navbar-toggler {
  border-color: #eff0f0; /* Cor da borda do botão */
}

/* Estilo para o ícone do menu hamburger */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28239, 240, 240, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Media query para telas menores (colapsa o menu e alinha itens) */
@media (max-width: 991.98px) {
  .header-container {
    height:  auto; /* Altura automática em telas menores */
    text-align: center;
    padding: 25px;
  }
  .navbar-brand {
    padding: 0.5rem 0; /* Espaçamento padrão para o logo em telas menores */
  }
  .navbar-nav {
    padding-left: 5rem; /* Alinha os itens do menu hamburger à esquerda */
  }

  .nav-link{
    padding: 15px;
  }
}

/* === ESTILOS PARA O HERO SECTION === */
/* Importação da fonte Georgia e Roboto Bold */
@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Roboto:wght@700&display=swap');

.hero-section {
  background: url('hero.png') no-repeat center center/cover;
  height: 100vh; /* Altura total da viewport */
  color: #eff0f0; /* Cor do texto padrão */
  padding-top: 110px;
  display: flex;
  align-items: center; /* Garante que o conteúdo fique centralizado verticalmente */
}

/* Estilo do título */
.hero-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra no texto */
  font-size: 3.5rem; /* Tamanho base do título */
}

/* Estilo do subtítulo */
.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra no texto */
  font-size: 1.5rem; /* Tamanho base do subtítulo */
}

/* Estilo do botão */
.hero-btn {
  font-weight: 700;
  border-radius: 0;
  border: 2px solid #eff0f0;
  color: #eff0f0;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease-in-out;
  font-size: 1.1rem; /* Tamanho base do botão */
}

/* Efeito hover do botão */
.hero-btn:hover {
  background-color: #eff0f0; /* Fundo branco no hover */
  color: #647465; /* Cor do texto no hover */
  border-color: #eff0f0;
}

/* === MEDIA QUERIES PARA RESPONSIVIDADE DO HERO === */

/* Telas menores que 576px (extra-small) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
  }
}

/* Telas entre 576px e 767.98px (small) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* Telas entre 768px e 991.98px (medium) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* Telas menores (geral para a troca do background) */
@media (max-width: 768px) {
  .hero-section {
    background: url('hero.png') no-repeat right right/cover;
    background-color: #647465;
    height: auto;
    padding-top: 80px;
    padding-bottom: 3rem;
    align-items: flex-start; /* Alinha o conteúdo ao topo em telas menores */
  }
}

/* === ESTILOS PARA A SEÇÃO SOBRE MIM === */
/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Roboto:wght@400&display=swap');

.about-section {
  background-color: #647465; /* Cor de fundo da seção */
  color: #eff0f0; /* Cor do texto padrão */
}

/* Estilo do título */
.about-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #eff0f0; /* Cor do título */
}

/* Estilo do texto */
.about-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.8; /* Espaçamento entre linhas para melhor leitura */
  color: #eff0f0; /* Cor do texto */
}

/* Estilo da imagem com borda arredondada e sombra */
.about-section .img-fluid {
  max-width: 100%;
  height: auto;
}

/* === ESTILOS PARA O RODAPÉ (FOOTER) === */
.footer {
  background-color: #647465; /* Cor de fundo do rodapé */
  color: #eff0f0; /* Cor do texto padrão */
}

/* Estilo do logo no footer */
.footer-logo img {
  height: 40px; /* Altura do logo */
  width: auto;
}

.footer-logo .logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #eff0f0;
}

/* Estilo dos títulos das seções */
.footer-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

/* === ESTILOS PARA O RODAPÉ (FOOTER) === */
.footer {
  background-color: #3e5367; /* Cor de fundo do rodapé */
  color: #eff0f0; /* Cor do texto padrão */
}

/* Estilo do logo no footer */
.footer-logo img {
  height: 95px; /* Altura do logo, ajustando-se à imagem enviada */
  width: auto; /* A largura será ajustada automaticamente para manter a proporção */
  object-fit: contain;
}

.footer-logo .logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #eff0f0;
}

/* Estilo dos títulos das seções */
.footer-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

/* Estilo dos links no footer */
.footer-link {
  color: #eff0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

/* Estilo dos ícones de contato */
.list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.list-unstyled i {
  color: #fff;
}

/* Estilo dos ícones de redes sociais */
.social-icons .social-icon {
  font-size: 1.5rem;
  color: #eff0f0;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons .social-icon:hover {
  color: #fff;
}

.whatsapp-button {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
width: 60px;
height: 60px;
background-color: #25D366;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
width: 40px;
height: 40px;
}

/* === ESTILOS PARA A SEÇÃO DE BENEFÍCIOS === */
/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Roboto:wght@400&display=swap');

.benefits-section {
  background-color: #eff0f0; /* Fundo branco para contraste com as outras seções */
  color: #647465;
}

.py-5{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Título da seção */
.benefits-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #647465;
}

/* Estilo para a lista de benefícios */
.benefits-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/* Estilo para cada item da lista */
.benefits-item {
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Estilo para o ícone de check */
.benefits-item i {
  color: #647465; /* Cor do ícone */
  font-size: 1.5rem;
}

/* === ESTILOS PARA A SEÇÃO DE PÚBLICO-ALVO === */
.target-audience-section {
  background-color: #647465; /* Fundo branco para contraste */
  color: #eff0f0;
}

.section-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #eff0f0;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #eff0f0;
}

.target-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 3rem;
  color: #647465;
}

.card-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #647465;
}

.card-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #647465;
}

/* === ESTILOS PARA A SEÇÃO SOBRE A TCC === */
.tcc-section {
  background-color: #eff0f0; /* Fundo cinza claro */
  color: #647465;
}

.tcc-section .section-title,
.tcc-section .section-subtitle {
  color: #647465;
}

.tcc-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tcc-card .card-icon {
  font-size: 3rem;
  color: #647465;
}

.tcc-card .card-title {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #647465;
}

.tcc-card .card-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #647465;
}


/* === ESTILOS PARA A SEÇÃO DE DEPOIMENTOS === */
.testimonials-section {
  background-color: #647465; /* Fundo branco para destaque */
  color: #eff0f0;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: #eff0f0;
}

.testimonial-card {
  max-width: 700px; /* Limita a largura do card para melhor leitura */
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 4px solid #eff0f0;
}

.testimonial-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #eff0f0;
}

.testimonial-author {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #eff0f0;
  margin-top: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #647465;
  border-radius: 50%;
  padding: 1rem;
}

/* === ESTILOS PARA A SEÇÃO FAQ === */
.faq-section {
  background-color: #eff0f0; /* Fundo cinza claro */
  color: #647465;
}

.faq-section .section-title,
.faq-section .section-subtitle {
  color: #647465;
}

.accordion-item {
  border: 1px solid #647465;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #647465;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: #647465;
  background-color: #d1d9d1; /* Cor de fundo quando expandido */
  box-shadow: none;
}

.accordion-body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #647465;
}