/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Container principal */
body {
  background: #f0fdfa; /* fundo leve, natural */
  color: #065f46; /* verde escuro */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Card principal */
#container {
  width: 360px;
  min-height: 90vh;
  background: url('./assets/Recanto-so-lazer-fundo-escuro.jpeg') no-repeat center center;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  padding: 24px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay suave */
#container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.65),
    rgba(245, 254, 250, 0.35)
  );
  border-radius: 16px;
  z-index: 0;
}

#container > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Perfil */
#profile {
  margin-bottom: 30px;
}

#profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #10b981; /* verde água */
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(16,185,129,0.7);
}

#profile h2 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000; /* verde escuro */
  margin-bottom: 6px;
}

#profile p {
  font-size: 0.95rem;
  color: #000000; /* verde médio */
}

/* Menu de contato / links */
nav {
  margin-bottom: 30px;
  width: 100%;
}

nav .menu li {
  list-style: none;
  margin: 10px 0;
}

nav .menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #d1fae5; /* verde claro */
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid #10b981;
}

nav .menu a:hover {
  background: #10b981; /* verde água mais vivo */
  color: #fff;
  border-color: #065f46;
  transform: translateY(-2px);
}

/* Redes sociais */
#social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  width: 100%;
}

#social-links a {
  color: #000000;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

#social-links a:hover {
  color: #065f46;
  transform: scale(1.2);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #000000; /* cinza */
}

/* Responsividade */
@media (max-width: 420px) {
  #container {
    padding: 18px;
    width: 100%;
  }

  #profile img {
    width: 90px;
    height: 90px;
  }

  #profile h2 {
    font-size: 1.1rem;
  }

  nav .menu a {
    font-size: 0.95rem;
    padding: 10px;
  }
}
