html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #232a3d;
    line-height: 1.6;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  
  main {
    flex: 1;
    padding: 30px;
    background-color: #2f3b54;
  }
  
  footer {
    background-color: #1a1f2b;
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: auto;
  }

  footer p{
    margin-top: 30px;
  }
  
  .intro img{
    max-width: 400px;
    height: auto;
    padding-bottom: 40px;
  }

  .intro p{
    font-size: 25px;
  }

  .sobre img{
    max-width: 400px;
    height: auto;
    padding-bottom: 40px;
  }

  .sobre p{
    font-size: 25px;
  }

  .servicos img{
    max-width: 400px;
    height: auto;
    padding-bottom: 40px;
  }

  .servicos p{
    font-size: 25px;
  }
  
  .social-btn{
    font-size: 20px;
  }

  .navbar-custom {
    background-color: #248dc4;
}

.navbar-custom .nav-link {
    color: #ffffff;
}

.navbar-custom .nav-link:hover {
    color: #dceeff;
}

.navbar-toggler {
  border-color: white; /* Borda do botão branco (opcional) */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

 