body {
  margin: 0;
  padding: 0;
  background-color: #0d1117;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.card-columns {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background-color: #ffffff;
  color: #0d1117;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #c9d1d9;
}

.footer {
  margin-top: 3rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1rem;
}

.footer {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.footer .copyright {
  color: #ffffff;
  font-size: 0.9rem;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(14deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.wave-hand {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave 2s infinite;
}
.home-icon {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2.4rem; /* Adjust this value to change size */
  text-decoration: none;
  z-index: 1000;
  animation: pulseHome 2s infinite;
  transition: transform 0.3s ease;
}

.home-icon:hover {
  transform: scale(1.2);
}

@keyframes pulseHome {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*animacao das palavras*/
.typed-text::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.tech-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.tech-icons img:hover {
  transform: scale(1.2);
}
.resume-display {
  margin-top: 2rem;
}

.resume-download {
  display: inline-block;
  padding: 0.6rem 1rem;
  margin-bottom: 1.2rem;
  background-color: #0d1117;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.resume-download:hover {
  background-color: #161b22;
}

.resume-content {
  color: #ddd;
  line-height: 1.6;
}

.resume-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.resume-content h4 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #fff;
}

.resume-content ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
}
.blog-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #ddd;
}

.blog-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #aaa;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.blog-card {
  background-color: #161b22;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.blog-card h2 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.blog-card p {
  color: #ccc;
  margin-bottom: 1rem;
}

.blog-card a {
  text-decoration: none;
  color: #58a6ff;
  font-weight: bold;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #ddd;
}

.contact-form h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-form p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #aaa;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

label {
  font-weight: bold;
  color: #bbb;
}

input,
select,
textarea {
  background-color: #0d1117;
  color: #fff;
  border: 1px solid #333;
  padding: 0.6rem;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #58a6ff;
  color: #0d1117;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1f6feb;
}
.shop-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #ddd;
}

.shop-intro {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  background-color: #161b22;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  max-width: 120px;
  margin-bottom: 1rem;
}

.product-card h2 {
  font-size: 1.2rem;
  color: #fff;
}

.product-card p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 1rem;
}

.product-card a {
  text-decoration: none;
  color: #58a6ff;
  font-weight: bold;
}


