@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  background-color: #1e1f2b;
  color: #ffffff;
  line-height: 1.6;
  padding: 20px;
}

a {
  color: #4a90e2;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

i > img {
  display: inline-block;
  position: relative;
  top: 6px;
  left: -8px;

}

header {
  text-align: center;
  padding: 20px 0;
  background-color: #111;
  color: white;
}

header h1 {
  font-size: 2em;
  margin-bottom: 5px;
}

header p {
  font-size: 1.1em;
  color: #ccc;
}

.sobre-mim {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.sobre-mim img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

section {
  margin-top: 40px;
}

section h2 {
  font-size: 1.6em;
  color: #4a90e2;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  padding-left: 10px;
  border-top: 1px solid #444;
  text-align: left;
  font-size: 0.9em;
}

footer p {
  font-size: 1.3em;
  line-height: 1.3;
  margin-top: 10px;
}

footer a {
  font-size: 1em; 
  display: inline-block; 
  text-align: center; 
  margin-bottom: 10px; 
}

.cards-certificados {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.cert-card {
  display: block;
  background-color: #2c2e3e;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cert-card:hover {
  background-color: #4a90e2;
  transform: translateY(-3px);
  color: #fff;
}

.cards-projetos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.projeto-card {
  display: block;
  background-color: #2c2e3e;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.projeto-card:hover {
  background-color: #4a90e2;
  transform: translateY(-3px);
  color: #fff;
}
