/* Variáveis Globais */
:root {
  --preto-carbon: #0a0a0a;
  --preto-metal: #1a1a1a;
  --neon-verde: #00ff9d;
  --branco-tech: #f0f0f0;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  background: var(--preto-carbon);
  color: var(--branco-tech);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neon-verde);
}

.logo img {
  width: 50px; /* Mesmo tamanho da logo no footer */
  height: 50px; /* Mesmo tamanho da logo no footer */
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--branco-tech);
  font-weight: 300;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--neon-verde);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.auth-buttons button {
  margin-left: 1.5rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: 1px solid var(--neon-verde);
  background: transparent;
  color: var(--neon-verde);
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-buttons button:hover {
  background: var(--neon-verde);
  color: var(--preto-carbon);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--branco-tech);
  text-decoration: none;
  font-weight: 300;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--preto-metal);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--branco-tech);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--neon-verde);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 75% 30%, rgba(0, 255, 157, 0.1) 0%, transparent 40%), linear-gradient(215deg, var(--preto-carbon) 40%, var(--preto-metal));
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  width: 200vw;
  height: 200vh;
  background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 255, 157, 0.05) 5px, rgba(0, 255, 157, 0.05) 10px);
  transform: rotate(-25deg);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
  color: var(--neon-verde);
}

.hero-content p {
  font-size: 1.4rem;
  color: rgba(240, 240, 240, 0.9);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  background: var(--neon-verde);
  color: var(--preto-carbon);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.cta-button:hover:before {
  left: 100%;
}

/* Features Section */
.features {
  padding: 6rem 5%;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  background: var(--preto-metal);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 157, 0.1);
  position: relative;
}

.feature-card:nth-child(even) .feature-image {
  order: -1;
}

.feature-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--neon-verde);
}

.feature-content p {
  color: var(--branco-tech);
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.9;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content ul li {
  margin-bottom: 0.8rem;
  color: var(--branco-tech);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-content ul li i {
  color: var(--neon-verde);
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.feature-image i {
  font-size: 5rem;
  color: var(--neon-verde);
}

/* Sobre Nós */
.about {
  padding: 6rem 5%;
  text-align: center;
}

.about h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--neon-verde);
}

.about p {
  font-size: 1.2rem;
  color: var(--branco-tech);
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  color: var(--neon-verde);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Equipe */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.member-card {
  background: var(--preto-metal);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  width: 200px; /* Largura fixa para as cards */
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-10px);
}

.member-card img {
  width: 100px; /* Tamanho fixo para as imagens */
  height: 100px; /* Tamanho fixo para as imagens */
  border-radius: 50%; /* Formato circular */
  object-fit: cover; /* Garante que a imagem não distorça */
  margin-bottom: 1rem;
}

.member-card h3 {
  font-size: 1.2rem;
  color: var(--neon-verde);
  margin-bottom: 0.5rem;
}

.member-card p {
  font-size: 1rem;
  color: var(--branco-tech);
  opacity: 0.9;
}

/* Blog Tech */
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.post-card {
  background: var(--preto-metal);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  width: 300px; /* Largura fixa para as cards */
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-card img {
  width: 100%;
  height: 150px; /* Altura fixa para as imagens */
  object-fit: cover; /* Garante que a imagem não distorça */
  border-radius: 10px;
  margin-bottom: 1rem;
}

.post-card h3 {
  font-size: 1.4rem;
  color: var(--neon-verde);
  margin-bottom: 0.5rem;
}

.post-card p {
  font-size: 1rem;
  color: var(--branco-tech);
  opacity: 0.9;
}

.read-more {
  color: var(--neon-verde);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--branco-tech);
}

/* Carreiras */
.job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.job-card {
  background: var(--preto-metal);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  width: 300px; /* Largura fixa para as cards */
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-10px);
}

.job-card h3 {
  font-size: 1.4rem;
  color: var(--neon-verde);
  margin-bottom: 0.5rem;
}

.job-card p {
  font-size: 1rem;
  color: var(--branco-tech);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.apply-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--neon-verde);
  color: var(--preto-carbon);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background: var(--branco-tech);
  color: var(--neon-verde);
}

/* Footer */
footer {
  background: var(--preto-metal);
  padding: 5rem 5%;
  border-top: 1px solid rgba(0, 255, 157, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
}

.footer-logo span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neon-verde);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--neon-verde);
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-section h3 {
  margin-bottom: 2rem;
  color: var(--neon-verde);
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1.2rem;
}

.footer-section a {
  color: var(--branco-tech);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--neon-verde);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--branco-tech);
}

.footer-bottom i {
  color: var(--neon-verde);
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}
