/* ======================== 
    Página de Serviços 
======================== */
/* Fundo e container */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #374151;
  color: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
#container {
  width: 360px;
  min-height: 90vh;
  background: url("./assets/Nutricionista-image-fundo.jpg") no-repeat center
    center;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* Overlay */
#container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88); /* overlay escuro translúcido */
  border-radius: 16px;
  z-index: 0;
}
#container > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Cabeçalho */
#profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #16a34a;
  margin-bottom: 15px;
  object-fit: cover;
}
#profile h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}
#profile p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 25px;
} /* Título */
main h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 20px;
}

/* Lista de serviços */
main ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
main ul.menu li {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  color: #f1f5f9;
}
main ul.menu li:hover {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  transform: translateY(-3px);
}
main ul.menu li i {
  font-size: 1.2rem;
}

/* Botão CTA */
main a {
  display: inline-block;
  padding: 12px 20px;
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease; /* suaviza as animações */
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}
main a:hover {
  background: #15803d;
  cursor: pointer;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.6);
}

/* Rodapé */
footer {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsividade */
@media (max-width: 420px) {
  #container {
    padding: 18px;
    width: 100%;
  }
  #profile img {
    width: 90px;
    height: 90px;
  }
  #profile h2 {
    font-size: 1.2rem;
  }
}
