/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(to right, #001f3f, #000814);
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #000c1f;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.menu a:hover {
  color: #00c3ff;
}

.btn-contato {
  border: 2px solid #00c3ff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: #00c3ff;
  transition: 0.3s;
}

.btn-contato:hover {
  background-color: #00c3ff;
  color: black;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px 10% 100px 10%;
  min-height: 100vh;
}

.hero-text h1 {
  font-size: 48px;
  color: #00c3ff;
  margin: 10px 0;
}

.hero-text h3 {
  margin-bottom: 10px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: #00c3ff;
  padding: 10px 20px;
  border-radius: 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  border: 2px solid #00c3ff;
  padding: 10px 20px;
  border-radius: 20px;
  color: #00c3ff;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary:hover {
  background-color: #00c3ff;
  color: black;
}

/* HERO IMAGE */
.hero-img img {
  width: 350px;
  border-radius: 20px;
}

/* SECTIONS */
section {
  padding: 100px 10%;
}

/* SOBRE */
#sobre p {
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.6;
}

/* PROJETOS */
#projetos {
    padding: 120px 10%;
    text-align: center;
}

#projetos h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #00c3ff;
}

/* GRID PROFISSIONAL */
#projetos {
    display: flex;
    flex-direction: column;
}

#projetos .projeto-card {
    background: linear-gradient(145deg, #0a1d37, #12294d);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    width: 100%;
}

.projeto-card {
    margin-bottom: 30px;
}

.projeto-card:hover {
    transform: translateY(-8px);
}

.projeto-card h3 {
    margin-bottom: 15px;
    color: #00c3ff;
}

.projeto-card p {
    margin-bottom: 20px;
    color: #ccc;
}

/* BOTÕES */
.projeto-botoes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.projeto-botoes a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    background: #00c3ff;
    color: black;
    transition: 0.3s;
}

.projeto-botoes a:hover {
    transform: scale(1.05);
    background: #0099cc;
}


/* CONTATO */
.contact-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact-buttons a {
  background-color: #00c3ff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.contact-buttons a:hover {
  transform: scale(1.05);
}

/* SCROLL SUAVE */
html {
  scroll-behavior: smooth;
}


#projetos {
    padding: 80px 8%;
}

.projeto-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.projeto-card:hover {
    transform: translateY(-5px);
}

.projeto-card h3 {
    margin-bottom: 10px;
    color: #00ff88;
}

.projeto-card p {
    margin-bottom: 15px;
    color: #ccc;
}

.projeto-botoes a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    background: #00ff88;
    color: black;
    transition: 0.3s;
}

.projeto-botoes a:hover {
    background: #00cc6a;
}



