/* Momentos Memoráveis — Landing Page */
:root {
  --rosa-claro: #fdf0f3;
  --rosa:       #f6c9d4;
  --vinho:      #7b2d3b;
  --vinho-esc:  #5c1f2b;
  --bege:       #faf6f0;
  --dourado:    #c9a96a;
  --texto:      #4a3b3e;
  --branco:     #ffffff;
}

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

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: var(--bege);
  color: var(--texto);
  line-height: 1.7;
}

.alert-cancelado {
  background: #fff3cd;
  color: #856404;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .9rem;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--rosa-claro), var(--rosa) 120%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--vinho);
  margin-bottom: .8rem;
}
.hero-sub {
  font-size: clamp(.95rem, 3vw, 1.15rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* Catálogo */
.catalogo {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.catalogo-titulo {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--vinho);
  margin-bottom: 2rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.momento-card {
  background: var(--branco);
  border-radius: 1.2rem;
  box-shadow: 0 8px 24px rgba(123,45,59,.12);
  padding: 2rem 1.8rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
}
.momento-icone { font-size: 3rem; margin-bottom: .6rem; }
.momento-nome  { font-size: 1.3rem; font-weight: 600; color: var(--vinho); margin-bottom: .5rem; }
.momento-desc  { font-size: .9rem; font-weight: 300; margin-bottom: 1rem; }
.momento-inclui {
  list-style: none;
  text-align: left;
  font-size: .88rem;
  margin-bottom: 1.2rem;
}
.momento-inclui li::before { content: '✓ '; color: var(--vinho); font-weight: 600; }
.momento-preco {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--vinho);
  margin-bottom: 1.2rem;
}
.campo-email {
  margin-bottom: 1rem;
  text-align: left;
}
.campo-email label {
  display: block;
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: .3rem;
  color: var(--texto);
}
.campo-email input[type="email"] {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid #ddd;
  border-radius: .5rem;
  font-family: inherit;
  font-size: .9rem;
  color: var(--texto);
  background: var(--bege);
  transition: border-color .2s;
}
.campo-email input[type="email"]:focus {
  outline: none;
  border-color: var(--vinho);
}
.campo-email small {
  display: block;
  font-size: .75rem;
  color: #888;
  margin-top: .25rem;
}
.obrig { color: #e03; }

.btn-comprar {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  background: linear-gradient(135deg, var(--vinho), var(--vinho-esc));
  border: none;
  border-radius: 999px;
  padding: 1rem 2.2rem;
  cursor: pointer;
  width: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(123,45,59,.25);
}
.btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(123,45,59,.3); }

.rodape-info {
  margin-top: 2rem;
  font-size: .82rem;
  color: #888;
}

/* Como funciona */
.como-funciona {
  background: var(--rosa-claro);
  padding: 3rem 1.5rem;
  text-align: center;
}
.como-funciona h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--vinho);
  margin-bottom: 2rem;
}
.passos {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.passos li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}
.passos li span {
  background: var(--vinho);
  color: var(--branco);
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: .85rem;
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: #aaa;
}
