@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #0d0d0d; /* Preto suave */
  color: #fff;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #d16ba5; /* Rosa vibrante */
  text-align: center;
}

nav {
  background: #1a1a1a; /* Preto mais claro */
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  font-size: 18px;
  font-weight: bold;
  color: #d16ba5; /* Rosa */
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #cbb4d4; /* Lilás claro */
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: color 0.2s ease-in;
}

nav ul li a:hover {
  color: #a24ca6; /* Roxo vibrante */
}
/* Seção Hero (Início) */
/* Seção Hero (Início) */
.hero {
  background: 
    linear-gradient(rgba(161, 76, 166, 0.6), rgba(209, 107, 165, 0.6)), 
    url('https://img.freepik.com/fotos-premium/mulher-usando-computador-portatil-em-cafe_1048944-13614181.jpg?semt=ais_hybrid&w=740&q=80') 
    center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #f8e1f4; /* Rosa clarinho */
}
.hero-text p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #cbb4d4; /* Lilás claro */
}

/* Seção Sobre Mim */
.content {
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 50px 20px;
  text-align: center;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #a24ca6; /* Roxo */
}

.content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: #a24ca6; /* Roxo vibrante */
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d16ba5; /* Rosa */
}
/* Rodapé */
.footer {
  background: linear-gradient(135deg, #3a0944, #4c0e69); /* preto → roxo */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ff80c0;
}

.footer p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer a {
  color: #ffb3e6;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer a:hover {
  color: #fff;
  border-color: #ff80c0;
}

.footer .copy {
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 15px;
}
/* Responsividade */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
