/* Reset e Estilos Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif; /* nova fonte moderna */
}


body {
  line-height: 1.6;
  color: #333;
  padding-top: 80px; /* Espaço para o header fixo */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.container2{
  width: 100%;
  margin-left: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;

}


/* Responsividade */
@media (max-width: 768px) {
  body {
      padding-top: 60px;
  }
  
  .container {
      flex-direction: row;
      align-items: flex-start;
  }
  
  
  .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      display: none;
      margin-left: 15px;
  }
  
  .dropdown:hover .dropdown-menu {
      display: block;
  }
  
}

/* Botões */
.btn, .btn-large {
  display: inline-block;
  padding: 10px 20px;
  background-color: #02ab83;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-large {
  padding: 15px 30px;
  font-size: 18px;
}

.btn:hover, .btn-large:hover {
  background-color: #02ab83;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}



.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  height: 24px;
  width: 24px;
}



/* Ajustes para telas menores (smartphones) */
@media (max-width: 768px) {
  .hero-banner {
    height: 35vh; /* Reduz a altura para 70% da viewport em mobile */
    min-height: 300px; /* Garante uma altura mínima razoável para mobile */
    margin-top: 20px;
    /* Você pode ajustar o background-position para mobile se a imagem cortar muito */
    background-position: center center; /* Centraliza a imagem no mobile */
  }

  /* Ajusta o container2 para remover o margin-left que o afasta demais */
  .container2 {
    margin-left: 0;
    width: 100%;
    /* Adicione padding para dar um respiro nas laterais */
    padding: 0 20px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
  }

  .hero-title-group{
    margin-bottom: 148px;
  }

  .hero-line-1,
  .hero-line-3,
  .hero-line-5 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .hero-line-2,
  .hero-line-4,
  .hero-line-6{
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}


@media (max-width: 380px){
      .hero-banner {
        height: 23vh;
        min-height: 218px;
    }
}
/* Ajustes adicionais para telas ainda menores (smartphones pequenos) */
@media (max-width: 480px) {
  .hero-banner {
    height: 30vh; /* Pode reduzir ainda mais para telas muito pequenas */
    min-height: 250px;
  }
  .hero-title-group{
    margin-bottom: 138px;
  }

  .hero-line-1,
  .hero-line-3,
  .hero-line-5 {
    font-size: 0.7rem;
    margin-top: 2px;
  }

  .hero-line-2,
  .hero-line-4,
  .hero-line-6 {
    font-size: 1.6rem;

  }

  .hero-line-4{
    margin-bottom: 110px;
  }

  .hero-line-6{
    margin-left: 20px;
  }
    .hero-line-5{
    margin-bottom: 110px;
    margin-left: 20px;
  }
}

.btn-hero {
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: #333;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}


/* ESTILOS PARA O DROPDOWN COM CATEGORIAS */
.dropdown-menu {
  width: 280px;
  padding: 15px 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-title {
  color: #02ab83;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px 8px 25px;
  margin: 12px 0 5px 0;
  position: relative;
}

.dropdown-title:first-child {
  margin-top: 0;
}

.dropdown-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 16px;
  background: #02ab83;
  border-radius: 2px;
  position: absolute;
  left: 15px; /* Ajuste esta valor para alinhar verticalmente */
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0;
}

.dropdown-menu li a {
  padding: 10px 20px 10px 40px;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  align-items: center;
}

.dropdown-menu li a:hover {
  color: #02ab83;
  background-color: #f8faff;
  padding-left: 45px;
}

.dropdown-menu li a::before {
  content: "•";
  color: #02ab83;
  font-size: 1.2rem;
  position: absolute;
  left: 25px;
  opacity: 0;
  transition: all 0.25s ease;
}



/* Estado inicial: invisível */
.animate-on-scroll {
  opacity: 0.1;  /* Começa com opacidade baixa em vez de zero */
  transform: none;  /* Efeito sutil de zoom out */
  transition: 
    opacity 0.8s cubic-bezier(0.33, 0.85, 0.56, 1.05),
    transform 0.4s cubic-bezier(0.33, 0.85, 0.56, 1.05);
  will-change: opacity, transform;
}

/* Estado final animado */
.animate-on-scroll.animate {
  opacity: 1;  /* Opacidade total */
  transform: scale(1) translateY(0) translateX(0) rotate(0);  /* Reset de todas as transformações */
}



  /* Responsive */
  @media (max-width: 768px) {
    .timeline::before {
      left: 31px;
    }
    
  
  }

  /* ==================== */
/* MENU HAMBURGUER RESPONSIVO */
/* ==================== */

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #333;
  padding: 5px 10px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  color: #0066cc;
}



@media (max-width: 992px) {

  
  .container {
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 576px) {

  
  .logo-img {
    height: 40px;
  }
  
  
}

/* Corrige o container em mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 15px; /* Adiciona padding lateral */
  }
  
  .container2 {
    margin-left: 0;
    width: 100%;
  }
}

/* Garante que o body não tenha scroll horizontal */
html, body {
  overflow-x: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 576px) {
  
  .logo-img {
    height: 40px;
  }
  
  .mobile-menu-toggle {
    font-size: 1.5rem;
  }

}