/* style.css */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    line-height: 53px !important;
}

/* Corrigir cor dos ícones */
i.text-success {
    color: #6BBE6F !important;
  }
  
  /* Ajustar badges verdes */
  .badge.text-bg-success {
    background-color: #6BBE6F !important;
    color: #ffffff;
    font-weight: 500;
  }
  
  /* Títulos grandes ajustados */
  h1, h2 {
    font-weight: 700;
  }
  
  /* Scroll suave */
  html {
    scroll-behavior: smooth;
  }
  
  /* Círculos decorativos simples */
  .circle-decor {
    width: 15px;
    height: 15px;
    background-color: #6BBE6F;
    border-radius: 50%;
    position: absolute;
  }
  
  .circle-decor.black {
    background-color: #222831;
  }
  
  .circle-decor.light {
    background-color: #eeeeee;
  }
  
  /* Deixar as imagens principais com bordas arredondadas suaves */
  img.rounded-4 {
    border-radius: 1rem;
  }

  .navbar {
    background-color: rgb(248 249 250 / 85%) !important;
  }

  .navbar-brand {
    display: none;
  }

  .navbar-brand img {
    height: 40px;
    width: auto;
  }

  @media (max-width: 991px) {
    .navbar-brand {
      display: block;
    }

    #hero {
      background-image: none;
    }

    #contato {
      background-image: none;
    }

    #hero h1 {
      font-size: 48px;
      line-height: 1.2 !important;
    }
  }

  @media (max-width: 767px) {
    #hero h1 {
      font-size: 36px;
    }
  }

  #hero {
    background-image: url('images/hero.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
  }

  #hero h1 {
    font-size: 70px;
    line-height: 60px !important;
  }

  #contato {
    background-image: url('images/contato.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
  }

  /* Media Queries para Responsividade */
  @media (max-width: 991px) {
    #hero {
      background-image: none;
    }

    #contato {
      background-image: none;
    }

    #hero h1 {
      font-size: 48px;
      line-height: 1.2 !important;
    }
  }

  @media (max-width: 767px) {
    #hero h1 {
      font-size: 36px;
    }
  }