:root {
  --bg-main:#0b0b10;
  --bg-card:#161622;
  --pink:#ff4fa3;
  --purple:#7a4cff;
  --gold:#e6c27a;
  --text:#f5f5f7;
}

* { box-sizing:border-box; margin:0; padding:0; }

body {
  font-family:Poppins,sans-serif;
  background:radial-gradient(circle at top,#1b1230,var(--bg-main));
  color:var(--text);
  scroll-behavior:smooth;
}

.hero { text-align:center; padding:60px 20px; }

.profile-ring {
  width:140px;
  height:140px;
  margin:auto;
  padding:4px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--pink),var(--purple));
}

.profile-ring img {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

.buttons {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:25px;
}

.btn {
  padding:14px 26px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.primary { background:linear-gradient(135deg,var(--pink),var(--purple)); }
.instagram,.tiktok,.pinterest { background:#1f1f2e; }

section {
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
}

.card-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card {
  background:var(--bg-card);
  padding:25px;
  border-radius:18px;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:16px;
}

.gallery-grid img {
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:18px;
}

/* AVALIAÇÕES */
.rating form {
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.rating input,
.rating textarea {
  padding:12px;
  border-radius:10px;
  border:none;
}

.stars {
  display:flex;
  gap:6px;
}

.stars i {
  font-size:1.6rem;
  color:#555;
  cursor:pointer;
}

.stars i.active {
  color:var(--gold);
}

.rating button {
  padding:12px;
  border:none;
  border-radius:25px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:white;
  font-weight:600;
}

.review {
  background:var(--bg-card);
  padding:15px;
  border-radius:14px;
  margin-top:15px;
}

/* ANIMAÇÃO (IGUAL À ANTIGA, FUNCIONAL) */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.reveal.active {
  opacity:1;
  transform:none;
}

.whatsapp-float {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  color:#fff;
}
/* ================= EFEITOS MÍSTICOS ANTIGOS (RESTAURADOS) ================= */

/* brilho suave pulsante */
@keyframes glowPulse {
  0% { box-shadow: 0 0 8px rgba(255,79,163,.4); }
  50% { box-shadow: 0 0 18px rgba(122,76,255,.8); }
  100% { box-shadow: 0 0 8px rgba(255,79,163,.4); }
}

.glow {
  animation: glowPulse 3s infinite ease-in-out;
}

/* cards com hover antigo */
.glow-hover {
  position: relative;
  transition: transform .5s ease, box-shadow .5s ease;
}

.glow-hover::before {
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  opacity:0;
  z-index:-1;
  transition:.5s;
}

.glow-hover:hover::before {
  opacity:1;
}

.glow-hover:hover {
  transform:translateY(-10px) scale(1.04);
  box-shadow:0 25px 50px rgba(0,0,0,.6);
}

/* botões com zoom + brilho */
.btn {
  transition:transform .4s ease, box-shadow .4s ease;
}

.btn:hover {
  transform:scale(1.08);
  box-shadow:0 0 20px rgba(255,79,163,.6);
}

/* imagens da galeria com efeito antigo */
.gallery-grid img {
  transition:transform .6s ease, box-shadow .6s ease;
}

.gallery-grid img:hover {
  transform:scale(1.08);
  box-shadow:0 0 30px rgba(122,76,255,.7);
}

/* ícones sociais com aura */
.buttons i,
.whatsapp-float i {
  animation: glowPulse 2.5s infinite;
}

/* estrelas com efeito mágico */
.stars i:hover {
  transform:scale(1.3);
  color:var(--gold);
}

/* ================= RESPONSIVIDADE MELHORADA ================= */

@media (max-width: 768px) {
  section {
    padding:60px 16px;
  }

  .gallery-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .card {
    padding:20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns:1fr;
  }

  .profile-ring {
    width:120px;
    height:120px;
  }

  .btn {
    width:100%;
    justify-content:center;
  }
}
/* ================= RESPONSIVIDADE GERAL ================= */

/* imagens nunca quebram */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* galeria mais compacta */
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.gallery-grid img {
  aspect-ratio: 3 / 4;
  transition: transform .5s ease, box-shadow .5s ease;
}

/* efeito antigo de zoom + glow */
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,79,163,.35);
}

/* cards com animação antiga */
.card {
  transition: transform .4s ease, box-shadow .4s ease;
  border: 1px solid rgba(255,255,255,.05);
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px rgba(122,76,255,.35);
}

/* botão glow antigo */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,79,163,.6);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  section {
    padding: 50px 16px;
  }

  .hero {
    padding: 50px 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .subtitle {
    font-size: .95rem;
  }

  .buttons {
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    aspect-ratio: 4 / 5;
  }

  .rating form {
    padding: 0 10px;
  }

  .review {
    font-size: .9rem;
  }

  /* WhatsApp não cobre imagem */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}
/* ===== RESUMO AVALIAÇÕES ===== */
.rating-summary {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-weight: 600;
}

.stars-display i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== COMENTÁRIO COM BOTÃO ADMIN ===== */
.review {
  position: relative;
}

.review button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: crimson;
  border: none;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: none;
}

/* Pammy vê botão */
.admin .review button {
  display: block;
}

/* ===== ANIMAÇÃO EXTRA ===== */
.review {
  transition: transform .4s ease, box-shadow .4s ease;
}

.review:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255,79,163,.25);
}
/* ⭐ RESUMO AVALIAÇÕES */
.rating-summary {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.stars-summary i {
  color: gold;
  font-size: 1.2rem;
}

/* ✨ HOVER ANTIGO */
.card, .review, .gallery-grid img {
  transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover,
.review:hover,
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,79,163,.4);
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  section {
    padding: 50px 15px;
  }

  .profile-ring {
    width: 110px;
    height: 110px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 20px;
    font-size: .9rem;
  }
}
