 * {
    min-height: 1vh;
    box-sizing: border-box;
   
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #aaaaaa;
    color: #333;
    background-image: url("https://www.transparenttextures.com/patterns/brick-wall.png");
    
   
  }

  header {
    background-color: #031388;
    color: #e4e59a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;

  }
  header div {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

header img {
    height: 40px;
    width: auto;
  }

menu li {

  font-size: 1rem;
  display: inline-block;
  margin: 5px;
}
menu a {
  color: #e4e59a;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

menu a::before,
menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #A6A6A6;
  transition: all 0.5s;
}

menu a::before {
  top: 0;
  left: 0;
}

menu a::after {
  bottom: 0;
  right: 0;
}

menu a:hover::before {
  width: 100%;
  transition: width 0.25s ease-in-out;
}

menu a:hover::after {
  width: 100%;
  transition: width 0.25s ease-in-out 0.25s;
}


  h1 {
    text-align: center;
    color:  #031388;
    margin-top: 2rem;
    font-size: 2.5rem;
  }

  p {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.1rem;
  }

  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }

  .services > div {
    background-color: #e4e59a;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    align-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .services > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .services img {
    
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
  }

  .services h3 {
    color: #031388;
    margin-bottom: 0.5rem;
  }

  .link {

    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #031388;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 1rem;
    transition: background 0.3s ease;

  }

  .link:hover {
    background-color: #606dd0;
  }
  .centralizar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  .separador {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 1rem 0;

  }

 
  .chaves {
    background-color: #e4e59a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    min-height: 350px;
    max-height: 500px;
    overflow-y: auto;
    align-content: start;
    text-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.5;
  }

  .tempo {
    
    background-color: #e4e59a;
    border-radius: 12px;
    padding: 1.5rem; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 350px;
    align-content: start;
    text-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    margin-top: 3rem;
  }

  @media (max-width: 768px) {
    .services {
      flex-direction: column;
      align-items: center;
    }
    .chaves, .tempo {
      width: 90%;
      max-width: 500px;
    }

  }

.whatsapp {
  display:block;
  width: 70px;
  height: 100px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  
}  

.whatsapp-button {
  position: fixed;
  bottom: auto;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

div p {
  color: #000000;
}

p {
  color:  #031388;
}

