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

body {
  background-color: #030412;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
  max-width: 1100px;
  max-height: 70vh;
  margin: 0 auto; 
  padding: 0 20px;
}

/* cabeçaho */
header {
  background: transparent;
  padding: 20px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
}

nav .nav-links li a {
  font-size: 16px;
  transition: color 0.3s;
}
nav .nav-links li a:hover {
  color: #198CFF;
}

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

.mobile-menu.active {
  display: flex;
}

.mobile-menu div {
  width: 25px;
  height: 3px;
  background-color: white;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-image: 
    url('../images/bg2.png'), 
    url('../images/bg.png');

  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}


.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


.hero-content {
  color: white;
  max-width: 500px;
}

.hero-content h1 {
  font-family:plus jakarta;
  font-size: 32px;
  line-height: 1.4;
}

.hero-content span {
  color: #198CFF;
}

/* Botões */
.hero-actions {
  margin-top: 20px;
}
.btn-cta{
    background: transparent;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    border: solid white;
   
}

.btn-cta:hover {
  background: #007bff;
  color: #ffffff;
  border: solid #007bff;
  transition: 0.3s;
}

.btn-primary {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-left: 10px;
}


.hero-image img {
  max-width: 400px;
  width: 100%;
}

/* Seção de projetos */
.projetos {
  padding: 80px 10%;
  display: flex;
  justify-content: center; 
  background-color: white;
  height: 80vh;
}
.projetos .container {
  display: flex;
  align-items: center;
  max-height: 40rem;
  gap: 40px;
}
.projetos .met-left {
  max-width: 300px;
  background-color: white;
}
.projetos .met-left h2 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
  color: black;
}
.projetos .met-left p {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
}
.projetos .met-left button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.projetos .met-left button:hover {
  opacity: 0.8;
}

.projetos .divider {
  width: 3px;
  height: 200px;
  background: #00c6ff;
}

.projetos .met-card {
  background: linear-gradient(145deg, rgba(20, 30, 60, 0.7), rgba(10, 15, 30, 0.9));
  padding: 30px;
  border-radius: 20px;
  min-width: 500px;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
}
.projetos .met-item {
  margin-bottom: 0px;
}
.projetos .met-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}
.projetos iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/*seção equipe*/
.team {
  padding: 80px 0;
  background: linear-gradient(to bottom, #020617, #030b1a);
  text-align: center;
  color: white;
}
.team .container {
  display: flex;
  flex-direction: column; 
  align-items: center; 
}


.section-title {
  margin-bottom: 50px;
  font-size: 28px;
  letter-spacing: 2px;
  text-align: center;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  justify-content: center; 
}

.team-card {
  background: #0b1a3a;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center; 
  justify-self: unset;
  justify-content: center;
  align-items: center;
  width: 240px;

}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 16px;
  opacity: 0.7;
}

.team-card .redes-sociais {
  margin-top: 10px;
}
.team-card .redes-sociais a {
  margin: 0 5px;
  display: inline-block;
}
.team-card .redes-sociais a img {
  width: 26px;
  height: 26px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050816;
  color: #fff;
}

/* Seção */
.metodologias {
  padding: 80px 10%;
  display: flex;
  justify-content: center; 

}

.container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.met-left {
  max-width: 300px;
}

.met-left h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.met-left p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.met-left button {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.met-left button:hover {
  opacity: 0.8;
}

/* Linha azul */
.divider {
  width: 3px;
  height: 200px;
  background: #00c6ff;
}

/* Card */
.met-card {
  background: linear-gradient(145deg, rgba(20, 30, 60, 0.7), rgba(10, 15, 30, 0.9));
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
}

/* Itens */
.met-item {
  margin-bottom: 25px;
}

.met-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.met-item p {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.5;
}


.footer {
  background: #050816;
  padding: 60px 10% 20px;
  border-top: 1px solid rgba(0, 150, 255, 0.2);
}

/* Container principal */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Marca */
.footer-brand h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
  max-width: 250px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00c6ff;
}

.footer-contact p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/*** Responsividade */
@media (max-width: 768px) {

  .hero .container {
    flex-direction: column;
    text-align: center;
  } 
  .hero-image {
    display: none;
  }
  .projetos {
    height: auto;
  }
  .projetos .divider {
    display: none;
  }
  .projetos .container {
    flex-direction: column;
    text-align: center;
  }
  .team {
    padding: 40px 10%;
    height: auto;
  }
  .team .container {
    flex-direction: column;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .metodologias {
    margin-top: 20rem;
    padding: 40px 10%;
  }
  .metodologias .container {
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  .metodologias .divider {
    display: none;
  }

  .footer {
    padding: 40px 10%;
    height: auto;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .footer-container .footer-brand p {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metodologias .container {
    flex-direction: column;
    text-align: center;
  }

  .metodologias .divider {
    display: none;
  }

  .footer {
    padding: 40px 10%;
    height: auto;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .footer-container .footer-brand p {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .container .logo {
    max-width: 60px;
    height: auto;
  }
  .btn-cta {
    display: none;
  }
  /* Menu mobile */
  .mobile-menu {
    display: flex;
    background-image: url('../images/menu-aberto.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 50px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 1000;
  }

  .mobile-menu .mobile-nav{
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: none;
  }


  .desktop-nav {
    display: none;
  }

  
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metodologias .container {
    flex-direction: column;
    text-align: center;
  }

}