* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.navbar {
  position: absolute;
  
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 60px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.navbar h2 {
  margin: 0;
  color: #60a5fa;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

.navbar a:hover {
  color: #60a5fa;
}

.hero {
  min-height: 7vh;
  text-align: center;
  padding: 120px 30px;
  background: linear-gradient(135deg, #2563eb, #9333ea, #ec4899);
}

.hero h1 {
  font-size: 64px;
  margin: 0;
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  margin: 25px auto;
}

.botao {
  display: inline-block;
  padding: 16px 34px;
  background: white;
  color: #2563eb;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.botao:hover {
  transform: scale(1.08);
  background: #dbeafe;
}

.conteudo {
  padding: 70px 60px;
}

.conteudo h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #1e293b;
  width: 320px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #334155;
}

.card h3 {
  padding: 20px 20px 0;
  margin: 0;
}

.card p {
  padding: 10px 20px;
  color: #cbd5e1;
}

.card a {
  display: block;
  padding: 0 20px 25px;
  color: #60a5fa;
  text-decoration: none;
  font-weight: bold;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  margin-top: 120px;

  background: rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  padding: 50px 20px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  max-width: 1200px;

  margin: auto;

  text-align: center;

  color: white;
}

.footer-logo {
  font-size: 42px;

  margin-bottom: 15px;

  color: #60a5fa;
}

.footer p {
  color: #cbd5e1;

  font-size: 18px;

  margin-bottom: 25px;
}

.footer-links {
  display: flex;

  justify-content: center;

  gap: 25px;

  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;

  text-decoration: none;

  font-weight: bold;

  transition: 0.3s;
}

.footer-links a:hover {
  color: rgb(144, 121, 237);
}

.footer-btn {
  display: flex;

  align-items: center;

  gap: 12px;

  background: rgba(255,255,255,0.08);

  padding: 14px 24px;

  border-radius: 999px;

  text-decoration: none;

  color: white;

  font-weight: bold;

  transition: 0.3s;
}

.footer-btn:hover {
  transform: scale(1.05);

  background: rgba(237, 234, 234, 0.15);
}

/* FOTO DOS ÍCONES */

.footer-btn img {

  width: 26px;

  height: 26px;

  object-fit: contain;

}

.footer-btn {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 24px;

  border-radius: 999px;

  width: fit-content;

}

/* IMAGEM */

.footer-logo-img {

  width: 50px;

  height: 50px;

  object-fit: contain;

  flex-shrink: 0;

}



/* ========================= */
/* LIGHTBOX */
/* ========================= */

.card {
  background: #1e293b;
  width: 320px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: 0.3s;
  text-decoration: none;
  color: white;
  cursor: pointer;
  display: block;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #334155;
}

.card h3 {
  padding: 20px 20px 0;
  margin: 0;
}

.card p {
  padding: 10px 20px;
  color: #cbd5e1;
}

.abrir-texto {
  display: block;
  padding: 0 20px 25px;
  color: #60a5fa;
  font-weight: bold;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.fechar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.fechar:hover {
  transform: scale(1.1);
  color: #60a5fa;
}









/* ========================= */
/* RESPONSIVIDADE CELULAR */
/* ========================= */

@media (max-width: 768px) {

  /* NAVBAR */

  .navbar {
    position: relative;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 18px 15px;

    gap: 18px;
  }

  .logo {
    font-size: 32px;

    margin: 0;
  }

  .menu {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;
  }

  .menu a {
    margin-left: 0;

    font-size: 17px;
  }

  /* HERO */

  .hero {
    padding: 60px 20px;

    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;

    line-height: 1.1;
  }

  .hero p {
    font-size: 18px;

    max-width: 100%;
  }

  .botao {
    width: 100%;

    max-width: 320px;

    text-align: center;
  }

  /* CONTEÚDO */

  .conteudo {
    padding: 50px 20px;
  }

  .conteudo h2 {
    font-size: 34px;
  }

  /* CARDS */

  .cards {
    flex-direction: column;

    align-items: center;

    gap: 25px;
  }

  .card {
    width: 100%;

    max-width: 340px;
  }

  .card img {
    height: auto;
  }

  /* FOOTER */

  .footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;

    gap: 12px;
  }

  .footer-logo {
    font-size: 34px;
  }

  .telegram-icon {
    width: 60px;

    height: 60px;
  }

  .footer-links {
    flex-direction: column;

    align-items: center;

    gap: 15px;
  }

  .footer-btn {
    width: 100%;

    max-width: 320px;

    justify-content: center;

    text-align: center;
  }

  .footer-btn img {
    width: 24px;

    height: 24px;
  }

}