    body {
      margin: 0;
      padding: 0;
      height: 100dvh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background: linear-gradient(90deg, #00B065 10%, #004A2B 100%);
      font-family: 'Bree Serif', serif;
      position: relative;
    }

    .button-img {
      background-color: transparent;
      border: none;
      cursor: pointer;  
    }

    .menu-button {
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .buttons-down {
      position: absolute;
      bottom: 20px;
      right: 20px;
      gap: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .buttons-down a {
      text-decoration: none;
      color: white;
      font-size: .9rem;
      padding: 10px 20px;
      border-radius: 5px;
      background-color: rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .buttons-down a:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transition: background-color 0.2s ease;
      transform: scale(1.05);
      transition: transform 0.2s ease;
    }

    .teste-gratis {
      background-color: #00B065 !important;
    }

    h1 {
      color: white;
      font-size: 3em;
      font-family: 'Braah One', sans-serif;
      margin: 0;
    }

    h1:hover {
      font-size: 3.5em;
      cursor: default;
      transition: font-size 0.3s ease;
    }

    p {
      color: white;
      text-align: center;
      margin: 8px 0;
      cursor: default;
    }

    .centro {
        text-align: center;
    }

    .buttons-download {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        margin-top: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        gap: 10px;
        padding: 8px 12px; /* espaço interno opcional */
    }

    .button-img img {
        vertical-align: middle;
    }

    .button-img img:hover {
        transform: scale(1.2);
        transition: transform 0.3s ease;
    }

    .top-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.top-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 11;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
  gap: 20px;
  transform: translateY(-100%);
  animation: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.top-modal a {
  font-size: 1.2rem;
  color: #004A2B;
  font-family: 'Bree Serif', serif;
  text-decoration: none;
  transition: color 0.2s;
}

.top-modal a:hover {
  color: #00B065;
}

.slide-down {
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.popup-container {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  font-family: 'Bree Serif', serif;
}

.popup-content p {
  margin: 0 0 20px;
  font-size: 1rem;
  color: #004A2B;
}

.popup-content button {
  background-color: #00B065;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Bree Serif', serif;
}

.popup-content button:hover {
  background-color: #00985b;
}
