html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #a8dff1; /*COR DO FUNDO*/
  color: #000000; /*COR DO PRINCIPAL*/
}
header {
  background-color: #a8dff1; /* COR DO CAMPO INICIAL */
  color: rgb(255, 255, 255);
  padding: 2rem;
  text-align: center;
}
header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 2.8px;
  color: #000000; /* NOME NO TOPO */
  margin-bottom: 0.3rem;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* leve sombra */
  text-transform: uppercase; /* sem maiúsculas para suavizar */
}
header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff; /* Analista de Suporte e Desenvolvedor em formação */
  margin-top: 0.2rem;
  font-style: normal; /* sem itálico, mais direto */
  letter-spacing: 0.8px;
}

header h1, header p {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInTop 1.2s forwards ease-out;
}

@keyframes fadeInTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  background-color: rgb(255, 255, 255); /* Sobre Habilidades Certificados Contato*/
  display: flex;
  justify-content: center;
  padding: 1rem;
}
nav a {
  color: rgb(0, 0, 0); /*COR DA ESCRITA SOBRE/HABILIDADE/CERTIFICADOS/CONTATO*/
  margin: 0 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #efb730;
}

h2 {
  color: #000000; /* COR DOS TITULOS */
  font-size: 1.8rem;
  /*border-bottom: 2px solid #efb730; /* LINHAS QUE SEPARAM OS TEXTOS */
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.textoprincipal {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  max-width: 1000px;
  margin: 2rem auto;
}

.textoprincipal h2 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e2f;
}

.textoprincipal h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #efb730;
  margin-top: -5px;
  border-radius: 2px;
}

.textoprincipal p {
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #444;
}

.textoprincipal p strong {
  color: #1e1e2f;
  font-weight: 600;
}

footer { /* RODAPE */
  text-align: center;
  padding: 2rem;
  background-color: rgb(193, 233, 241);
  color: rgb(0, 0, 0); /* © 2025 Pedro Cícero. Todos os direitos reservados. */
  margin-top: 0.2rem;
}
a {
  color: #1e1e2f;
}
.contato-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 1rem;
}
.contato-card {
  flex: 1;
  min-width: 100px;
  background: rgb(193, 233, 241); /* FUNDO DOS ICONES WHATSAPP/EMAIL/LINKEDIN */
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.055);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contato-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px 4px rgba(239, 183, 48, 0.06);
}
.contato-card img {
  width: 40px;
}
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  nav a {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .contato-cards {
    flex-direction: column;
    align-items: center;
  }
  .contato-card {
    width: 80%;
  }
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
}
