@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #f4bfd3;
}

.topo h1 {
  font-family: 'Playfair Display', serif;
  color: #d63384;
  font-size: 1.8rem;
}

.topo nav a {
  color: #555;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.topo nav a:hover {
  color: #d63384;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 182, 193, 0.65), rgba(214, 51, 132, 0.70)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  color: #fff;
}

.hero-content {
  max-width: 850px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  margin: 6px;
  transition: 0.3s;
}

.btn-primary {
  background: #d63384;
  color: #fff;
}

.btn-primary:hover {
  background: #b92b70;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #d63384;
  color: #d63384;
  background: #fff;
}

.btn-outline:hover {
  background: #d63384;
  color: #fff;
  transform: translateY(-3px);
}

section {
  padding: 110px 60px;
}

.container {
  max-width: 1150px;
  margin: auto;
}

.titulo {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  color: #d63384;
}

.subtitulo {
  text-align: center;
  color: #777;
  margin: 0 auto 50px;
  max-width: 760px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #f4bfd3;
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.10);
  transition: 0.3s;
  animation: subir 0.8s ease forwards;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #d63384;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.card img:hover {
  transform: scale(1.03);
}

.card h3 {
  margin-bottom: 10px;
  color: #d63384;
  font-size: 1.35rem;
}

.card p {
  color: #555;
}

.preco {
  display: inline-block;
  margin: 18px 0;
  font-weight: 700;
  color: #d63384;
  background: #fff0f6;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 1.1rem;
}

.contato {
  text-align: center;
}

.contato p {
  margin: 10px 0;
  color: #555;
}

.whatsapp-fixo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-fixo:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

footer {
  background: #fce4ec;
  text-align: center;
  padding: 35px 20px;
  color: #555;
}

footer p:first-child {
  color: #d63384;
  font-weight: 700;
}

@keyframes subir {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 768px) {
  .topo {
    flex-direction: column;
    padding: 18px 20px;
  }

  .topo nav {
    margin-top: 12px;
    text-align: center;
  }

  .topo nav a {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  section {
    padding: 75px 20px;
  }

  .card img {
    height: 210px;
  }

  .whatsapp-fixo {
    right: 15px;
    bottom: 15px;
    padding: 13px 16px;
    font-size: 0.9rem;
  }
}
