.header-topo {
  padding: 10px 10px;
  background: #000;
  border: unset;
  border-radius: unset; 
}

.a-branco{
  color: #fff;
}
.header-topo-container {
  display: flex;
  justify-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 85%;
}

.header-topo-container img {
  width: 80px;
}

.header-topo-container li {
  padding-left: 10px;
}

.login-btn {
  background: #fff;
  color: #000;
  border-radius: 5px;
  width: 100px;
  margin-left: 30px;
}

.header-topo-container .btn-topo {
  padding: 10px 0px;
}

.ai-legal-section,
#modal {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

.flex-content-home {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
}

.container-buttons-menu {
  margin-top: 15px;
}

.ai-legal-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      #494949 0%,
      #4d4d4d 25%,
      #312f2f 45%,
      #272727 65%,
      #2e2a2a 100%);
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.ai-legal-content {
  max-width: 720px;
  text-align: center;
  z-index: 2;
}

.h40 {
  margin-top: 20px;
  height: auto;
  padding: 2rem;
  padding-bottom: 4rem;
}


.badge-ia {
  display: inline-block;
  padding: 8px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  background: linear-gradient(135deg,
      #f5f5f5 0%,
      #bdbdbd 25%,
      #ffffff 45%,
      #9e9e9e 65%,
      #f0f0f0 100%);

  color: #000;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.4);

  border: 1px solid rgba(0, 0, 0, 0.25);

  vertical-align: middle;
}

.ai-legal-content h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.description {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-button {
  outline: none;
  border: none;
  background: linear-gradient(135deg, #ffffff, #dcdcdc);
  color: #000;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;

}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.beneficios {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.beneficio {
  font-size: 16px;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  gap: 6px;
}

.beneficio::before {
  content: "✔";
  font-size: 12px;
  color: #ffffff;
}

@media (max-width: 480px) {
  .beneficios {
    flex-direction: column;
    gap: 10px;
  }
}

.fundo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ia-modal {
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
  animation: fadeIn .25s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  background: rgba(243, 53, 53, 0.7);
}

.container-hero-ia {
  padding: 20px;
  height: 100vh;
  width: 100%;
}

@media screen and (max-width: 748px) {

  .ai-legal-section {
    height: 100%;
    margin-top: 0px;
  }

  .ai-legal-content {
    height: 100%;
  }

  .ai-legal-content h1 {
    font-size: 26px;
  }

  .h40 {
    height: unset;
  }

  .description {
    font-size: 18px;
  }

  .badge-ia {
    font-size: 20px;
    margin-bottom: 10px;
    padding: 4px 8px;
  }

  .beneficios {
    align-items: center;
  }

  .beneficio {
    font-size: 18px;
  }

  .modal-close {
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(.95);
  }

  to {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes pulse {
  from {
    transform: scale(1.05);

  }

  to {
    transform: scale(1);
  }
}