body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #021940;
    color: white;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #01132f;
  }
  
  .logo {
    font-weight: bold;
    font-size: 24px;
    color: #00ff88;
  }
  
  nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #00ff88;
  }
  
  .hero {
    text-align: center;
    padding: 60px 20px 40px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin: 20px 0 10px;
  }
  
  .hero h4 {
    color: #00ff88;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  .hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #cccccc;
  }
  
  .testes {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
  }
  
  .circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    padding-bottom: 80px;
  }
  
  .circle-wrapper:hover .circle-image {
    transform: translateY(-60px);
  }

  .circle-image {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.5s ease-in-out;
  }
  
  .circle-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 3s ease;
    font-size: 14px;
    color: white;
    text-align: center;
    max-width: 220px;
    line-height: 1.4;
    user-select: none;
     /* 👇 Aqui você controla o posicionamento */
  transform: translateY(-100px); /* começa mais pra baixo */
  }

  .circle-wrapper:hover .circle-description {
    opacity: 1;
    transform: translateY(-60);
  }

  .circle-image.moved {
    transform: translateY(-100px);
  }
  
  .circle.moved + .circle-label + .circle-description {
    opacity: 1;
  }

  .circle-description.show {
    opacity: 1;
    max-height: 200px;
  }

  .circle:hover {
    transform: scale(1.1);
  }
  
  .circle-label {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
  }
  
  .circle-label:hover {
    color: #ffffff;
  }

  /* ✅ Estilo para links do menu com fundo verde */
header nav a {
    background: linear-gradient(90deg, #00ff88, #00d478);
    color: #021940 !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  header nav a:hover {
    background: linear-gradient(90deg, #00d478, #00ff88);
  }
  
  /* ✅ Estilo para os textos abaixo dos círculos */
  .circle-label {
    background: linear-gradient(90deg, #00ff88, #00d478);
    color: #021940;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .circle-label:hover {
    background: linear-gradient(90deg, #00d478, #00ff88);
  }
  body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #01132f;
  color: white;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #01132f;
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
}

.modal {
  width: 100%;
  max-width: 360px;
  padding: 40px;
  border-radius: 8px;
  background-color: #021940;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal input {
  width: 100%;
  max-width: 100%;
  margin: 8px 0; /* Espaçamento vertical simétrico */
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  text-align: left; /* Texto centralizado horizontalmente */
  box-sizing: border-box;
}

.modal button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #00ff88, #00d478);
  color: #021940;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s ease;
}

.modal button:hover {
  background: linear-gradient(90deg, #00d478, #00ff88);
}

.modal form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

