/* Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(ellipse 60% 30% at center top, rgb(51,51,51),rgb(27,27,27));
  color: white;
}

/* Navbar */
header #navbar {
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0 auto;
  gap: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

header #navbar .buttons-menu a {
  color: rgb(201, 201, 201);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

header #navbar .buttons-menu a:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

header #navbar .buttons-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 2px;
  background-color: rgb(0, 145, 255);
  border-radius: 1px;
}

.navflex {
  display: flex;
  align-items: center;
  padding: 0 5rem;
  margin: 0 auto;
  gap: 20px;
}

header #navbar .buttons-menu {
  font-size: 1.7rem;
  font-weight: 500;
  color: white;
  padding: 0 5rem;
  gap: 20px;
}

.btn-fale {
  margin-left: 20px;
}

header #navbar .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgb(0, 145, 255);
  border-radius: 10px;
  font-weight: 600;
  padding: 1rem 1.2rem;
}

header #navbar .nav-list a {
  color: white;
  text-decoration: none;
}

header #navbar .nav-list:hover {
  background: #0026ff;
  text-decoration: none;
}

/* Título principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
  margin-top: 130px;
}

.main-title {
  text-align: center;
  justify-content: center;
}

.text1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.yellow-title {
  color: rgb(0, 145, 255);
}

.text2 {
  font-size: 20px;
  line-height: 1.5;
  color: rgb(200, 200, 200);
  text-align: center;
}

.buttons-container {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 30px;
}

.button1 {
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgb(0, 145, 255);
  border-radius: 20px;
  font-weight: 600;
  padding: 1.5rem 2rem;
  text-decoration: none;
}

.button1 a {
  color: white;
  text-decoration: none;
}

.button1 a:hover {
  color: white;
  text-decoration: none;
}

.button1:hover {
  background:#0026ff;
  text-decoration: none;
}

.button2 {
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 20px;
  border: 2px solid white;
  font-weight: 600;
  padding: 1.5rem 2rem;
  text-decoration: none;
}

.button2 a {
  color: white;
  text-decoration: none;
}

.button2 a:hover {
  text-decoration: none;
  color: white;
}

.button2:hover {
  background: rgba(255, 255, 255, 0.15); 
  text-decoration: none;
}

/* Seção 3 */
.main-content {
  margin-bottom: 150px;
  margin-left: 80px;
  margin-right: 80px;
}

.system-demo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px
}

/* Seção 4 */
.container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
  margin-bottom: 100px;
}

.main-title2 {
  text-align: center;
  justify-content: center;
}

.text3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}

.blue-title {
  color: rgb(0, 145, 255);
}

/* BOX com textos */
.features-section {
    width: 100%;
    max-width: 1200px; /* Ajuste conforme necessário */
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os boxes */
    justify-content: center;
}

.feature-box {
    border-radius: 8px;
    padding: 25px;
    width: calc(33.333% - 40px); /* Para 3 colunas, considerando o gap */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha itens à esquerda dentro do box */
    min-height: 220px; /* Altura mínima para consistência */
}

.icon-wrapper {
    background-color: rgb(0, 145, 255);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-wrapper i {
    color: #ffffff;
    font-size: 24px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.6;
    color:  rgb(200, 200, 200);
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
  .feature-box {
      width: calc(50% - 30px); /* 2 colunas em telas médias */
  }
}

@media (max-width: 768px) {
  .feature-box {
      width: 100%; /* 1 coluna em telas pequenas */
      min-height: auto; /* Remove altura mínima para melhor fluxo */
  }
  .features-container {
      gap: 15px;
  }
  .feature-box {
      padding: 20px;
  }
  .main-content {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Seção 4 */
.container3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 150px;
  margin-left: 100px;
  margin-right: 100px;
}

.main-title3 {
  justify-content: center;
  text-align: center;
}

.text4 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.text5 {
  font-size: 20px;
  line-height: 1.5;
  color: rgb(200, 200, 200);
  text-align: center;
}

.accordion {
  border-left: 4px solid rgb(0, 145, 255);
  padding-left: 16px;
  width: 100%;
  margin-top: 40px;
}

.accordion-item {
  margin-bottom: 16px;
}

.accordion-header {
  background: none;
  border: none;
  color: rgb(0, 145, 255);
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: 0.3s ease;
}

.accordion-header:hover {
  color: #0026ff;
}

.accordion-content {
  background-color: #1e2a38;
  margin-top: 8px;
  padding: 16px;
  border-radius: 10px;
  display: none;
  font-weight: normal;
  color: rgb(200, 200, 200);
  font-size: 16px;
}

.accordion-header i {
  font-size: 18px;
  color: rgb(0, 145, 255);
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(45deg);
}

.accordion-header.active + .accordion-content {
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: linear-gradient(to right, rgb(51,51,51),rgb(27,27,27));
  border-top: 2px solid rgb(0, 145, 255);
  border-radius: 16px 16px 0 0;
  margin-top: 40px;
}

.footer-left {
  max-width: 60%;
}

.footer-left p {
  color: rgb(200, 200, 200);
  font-size: 16px;
  margin-top: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-right a {
  color: rgb(200, 200, 200);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: rgb(0, 145, 255);
}

.footer-right .link-text {
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  color:rgb(200, 200, 200);
}

/* Responsivo */
@media (max-width: 768px) {
  .container3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left, .footer-right {
    max-width: 100%;
  }

  .footer-right {
    justify-content: center;
  }
}

/* Hamburger */
.hambuger-menu {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Menu suspenso */
.hamburger-menu-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  gap: 1rem;
  z-index: 999;
  width: 250px;
  animation: dropFade 0.3s ease;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
}

/* Botões do menu */
.menu-btn {
  background: linear-gradient(90deg, #0026ff, rgb(0, 145, 255));
  color: white;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
}

.menu-btn:hover {
  background: linear-gradient(90deg, #0044ff, rgb(0, 195, 255));
  transform: translateY(-2px);
  color: white;
}

.translate-div {
  background: none !important;
  padding: 0 !important;
}

/* Efeito de transição suave */
@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo: ativa menu só em telas menores */
@media (max-width: 1024px) {
  .menu-bar{
    display: none;
  }
  .hambuger-menu {
    display: flex;
  }
  .menu-icon {
    display: flex;
  }
}

.certificados-section{
  margin-bottom: 30px;
  margin-top: 30px;
}

.certificados-wrapper {
  width: 100%;
  text-align: center;
}

.titulo-certificados {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.certificados-barra {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  background-color: transparent;
  gap: 70px;
  flex-wrap: wrap;
}

.certificado {
  text-align: center;
  max-width: 120px;
}

.certificado img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.certificado p {
  margin-top: 8px;
  font-size: 14px;
  color: rgb(200,200,200);
}
