/* ======================== 
   Página de Serviços – Nails
   PADRÃO SOFTPOWER
======================== */

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* =========================
   VARIÁVEIS (SOFTPOWER)
========================= */
:root {
  --primary-color: #4f46e5;
  --primary-light: #6366f1;
  --accent: #00ffd5;

  --primary: linear-gradient(135deg, #4f46e5, #6366f1);

  --bg-light: #f5f7ff;
  --text-dark: #111827;
  --text-muted: #6b7280;

  --shadow-primary: rgba(79, 70, 229, 0.35);
}

/* =========================
   BODY
========================= */
body {
  background: var(--bg-light);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* =========================
   CONTAINER
========================= */
#container {
  width: 360px;
  min-height: 90vh;
  background: url("./assets/unhas-gel-fundo.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow-primary);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Overlay */
#container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(245, 247, 255, 0.85),
    rgba(99, 102, 241, 0.35)
  );
  border-radius: 20px;
  z-index: 0;
}

#container > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* =========================
   PERFIL
========================= */
#profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin-bottom: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px var(--shadow-primary);
}

#profile h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
}

#profile p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* =========================
   TÍTULO SEÇÃO
========================= */
main h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* =========================
   LISTA DE SERVIÇOS
========================= */
main ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

main ul.menu li {
  background: rgba(99, 102, 241, 0.15);
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  color: var(--text-muted);
}

main ul.menu li i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: var(--primary-color);
}

main ul.menu li:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 18px var(--shadow-primary);
}

main ul.menu li:hover i {
  color: #ffffff;
}

/* =========================
   BOTÃO CTA
========================= */
main a {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px var(--shadow-primary);
}

main a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 26px rgba(79, 70, 229, 0.55);
}

/* =========================
   FOOTER
========================= */
footer {
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 420px) {
  #container {
    padding: 18px;
    width: 100%;
  }

  #profile img {
    width: 90px;
    height: 90px;
  }

  #profile h2 {
    font-size: 1.2rem;
  }
}

/* =========================
   CATÁLOGO ESTILO APP
========================= */

.menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card */
.card-servico {
  background: rgba(99, 102, 241, 0.12);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}

/* Estrutura interna */
.servico-topo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.servico-topo h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Ícone */
.icone {
  font-size: 1.6rem;
}

/* Preço */
.preco-box {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.apartir {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.preco {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* 🔥 Animação suave no preço */
.card-servico:hover .preco {
  transform: scale(1.1);
}

/* 💎 Efeito brilho */
.card-servico:hover {
  background: var(--primary);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px var(--shadow-primary);
  border-color: var(--primary-color);
}

.card-servico:hover .preco,
.card-servico:hover h4,
.card-servico:hover .apartir {
  color: #ffffff;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  background: var(--primary-color);
  color: white;
  padding: 3px 8px;
  border-radius: 8px;
  margin-top: 4px;
}