* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: #eaf2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a2540;
  padding: 20px;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
}

h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}

h2 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5b7aa3;
  margin-bottom: 28px;
}

.divider {
  width: 40px;
  height: 2px;
  background: #5b7aa3;
  margin: 0 auto 28px;
}

/* IMAGEM DO PROJETO */
.project {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 10px;
}

.project-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact a {
  color: #0a2540;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.social img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social img:hover {
  opacity: 1;
  transform: scale(1.15);
}

footer {
  margin-top: 36px;
  font-size: 12px;
  color: #8aa0bd;
}

/* RESPONSIVO */
@media (max-width: 500px) {
  .card {
    padding: 30px 20px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 13px;
  }

  .project-img {
    max-height: 200px;
  }

  .logo {
    width: 120px;
  }
}
