/* ====== GERAL ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at 70% 30%, #004aad, #00152a);
  color: white;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ====== NAVBAR ====== */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 30, 0.4);
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px; /* aumente o tamanho da logo */
  width: auto; /* mantém proporção */
  object-fit: contain;
  margin-top: -8px; /* move levemente pra cima pra não empurrar o header */
  filter: drop-shadow(0 0 4px #00B0B9); /* brilho sutil */
}

.logo h1 {
  color: #00B0B9;
  font-size: 1.7rem; /* ligeiramente maior pra equilibrar com a logo */
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center; /* centraliza com a logo */
}

nav a {
  text-decoration: none;
  color: #aeefff;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00B0B9;
}


/* ====== HERO ====== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 160px 10% 80px;
  background: radial-gradient(circle at top left, #002d5a, #00152a);
  min-height: 100vh;
}

.hero-content {
  max-width: 550px;
}

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-content h2 span {
  color: #00B0B9;
}

.hero-content p {
  margin-top: 20px;
  color: #cde8ff;
  font-size: 1.1rem;
  max-width: 450px;
}

.btn {
  display: inline-block;
  background: #00B0B9;
  color: #00152a;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #00d4e0;
  transform: scale(1.05);
}

/* ====== HERO IMAGE ====== */
.hero-img img {
  width: 350px;
  filter: drop-shadow(0 0 20px #00B0B9);
  animation: float 4s ease-in-out infinite;
}

/* ====== ANIMAÇÃO ====== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ====== RESPONSIVO ====== */
@media (max-width: 900px) {
  .hero {
    text-align: center;
    flex-direction: column;
  }

  .hero-img img {
    margin-top: 40px;
  }

  nav ul {
    gap: 20px;
  }

  .hero-content h2 {
    font-size: 2.3rem;
  }
}
/* ===== COMO FUNCIONA ===== */
.steps {
  padding: 100px 10%;
  text-align: center;
  background: #00152a;
  color: white;
}

.steps h2 {
  color: #00B0B9;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.steps .subtitle {
  color: #b6dff0;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 4px 15px rgba(0, 176, 185, 0.15);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-8px);
  background: rgba(0, 176, 185, 0.1);
}

.step img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px #00B0B9);
}

.step h3 {
  color: #00B0B9;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step p {
  color: #cfeaff;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== PARA EMPREGADORES ===== */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: linear-gradient(160deg, #00152A, #002c4f);
  color: white;
  flex-wrap: wrap;
  gap: 40px;
}

.info-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.info-text h2 {
  color: #00B0B9;
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-text p {
  color: #cfeaff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefits {
  list-style: none;
  padding: 0;
}

.benefits li {
  margin-bottom: 10px;
  color: #b6eaff;
  font-weight: 500;
}

.info-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-img img {
  width: 380px;
  border-radius: 20px;
  filter: drop-shadow(0 0 20px #00B0B9);
  animation: float 4s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 900px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-img img {
    width: 280px;
  }
}

/* ===== PARA FREELANCERS ===== */
.info-section.reverse {
  flex-direction: row-reverse;
  background: linear-gradient(200deg, #00152A, #002c4f);
}

.info-section.reverse .info-text h2 {
  color: #00B0B9;
}

.info-section.reverse .info-img img {
  width: 380px;
  border-radius: 20px;
  filter: drop-shadow(0 0 20px #00B0B9);
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .info-section.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== AVALIAÇÕES ===== */
.reviews {
  text-align: center;
  padding: 100px 10%;
  background: linear-gradient(180deg, #00152A, #002c4f);
  color: white;
}

.reviews h2 {
  color: #00B0B9;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.reviews .subtitle {
  color: #b6dff0;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 176, 185, 0.15);
  transition: 0.3s;
}

.review:hover {
  transform: translateY(-8px);
  background: rgba(0, 176, 185, 0.1);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review p {
  color: #cfeaff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.review span {
  color: #00B0B9;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 900px) {
  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review {
    width: 90%;
  }
}

/* ===== RODAPÉ ===== */
.footer {
  background: linear-gradient(180deg, #00152A, #000C18);
  color: white;
  text-align: center;
  padding: 60px 10% 30px;
  border-top: 2px solid #00B0B9;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 45px;
}

.footer-logo h3 {
  color: #00B0B9;
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-text {
  color: #b6dff0;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 5px #00B0B9);
  transition: 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px #00EFFF);
}

.footer-copy {
  font-size: 0.9rem;
  color: #8bb3c9;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ===== MENU HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #00B0B9;
  cursor: pointer;
  user-select: none;
}

/* Quando o menu está aberto no mobile */
nav.active {
  display: block;
}

/* ===== RESPONSIVO (TELAS PEQUENAS) ===== */
@media (max-width: 900px) {
  nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px; /* altura do cabeçalho */
    left: 0;
    width: 100%;
    background: rgba(0, 21, 42, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }
}

