:root {
  --bg:#fff;
  --accent:#ff6fa3;
  --accent-dark:#e85a92;
  --highlight:#ffdce8;
  --text:#333;
  --muted:#666;
  --container:1100px;
  --shadow:0 4px 10px rgba(0,0,0,0.1);
  font-family:"Poppins", sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg,#ff9dc2,#ff6fa3);
  color: white;
  padding: 60px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
  animation: fadeIn 1.2s ease;
}

.tagline {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero p a {
  display: inline-block;
  margin: 6px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  background: white;
  color: var(--accent-dark);
  transition: all .3s;
  box-shadow: var(--shadow);
}

.hero p a:hover {
  background: var(--highlight);
  transform: scale(1.05);
}

/* Sections */
section {
  margin: 40px 0;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-dark);
  text-align: center;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--accent);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid de itens */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}

.grid li {
  background: var(--highlight);
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  font-weight: 500;
  transition: transform .3s, background .3s;
}

.grid li:hover {
  transform: translateY(-6px);
  background: #ffeef6;
}

/* Links nos grids */
.grid li a {
  display: block;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
}

.grid li a:hover {
  text-decoration: underline;
}

/* Colunas responsivas */
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:720px){
  .columns {grid-template-columns: 1fr 1fr;}
}

/* Cartões */
.card {
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:var(--shadow);
  transition:transform .3s;
}

.card:hover {transform:translateY(-5px)}

.price {
  font-weight:700;
  color:var(--accent-dark);
  margin-top:12px;
  text-align:center;
}

/* Rodapé */
.footer {
  background:#ffeef6;
  text-align:center;
  padding:20px;
  font-size:14px;
  color:var(--muted);
  margin-top:40px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .3s ease, background .3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5c;
  transform: scale(1.1);
}

/* Animações */
@keyframes fadeIn {
  from {opacity:0}
  to {opacity:1}
}