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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(135deg, #ff758c, #ff7eb3, #ffd6e0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 15px;
  color: #333;
}

.container {
  width: 100%;
  max-width: 850px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 35px;
  padding: 45px 38px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(120, 20, 60, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "❤";
  position: absolute;
  top: -25px;
  left: 25px;
  font-size: 120px;
  color: rgba(255, 105, 150, 0.12);
}

.card::after {
  content: "❤";
  position: absolute;
  bottom: -35px;
  right: 30px;
  font-size: 140px;
  color: rgba(255, 105, 150, 0.12);
}

h1 {
  color: #c9184a;
  font-size: 2.7rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.subtitulo {
  color: #8a2846;
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.foto {
  width: 100%;
  max-width: 430px;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  margin: 20px auto 30px;
  display: block;
  border: 8px solid #fff;
  box-shadow: 0 18px 35px rgba(201, 24, 74, 0.35);
  position: relative;
  z-index: 1;
}

.destaque {
  color: #c9184a;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

p {
  font-size: 1.12rem;
  line-height: 1.8;
  margin: 16px auto;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.frase {
  background: linear-gradient(135deg, #fff0f4, #ffe3ec);
  border-left: 5px solid #ff4d6d;
  padding: 18px 22px;
  border-radius: 18px;
  margin-top: 24px;
  color: #6d1a36;
  font-style: italic;
}

h2 {
  color: #d6336c;
  margin-top: 32px;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.botao-amor {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(201, 24, 74, 0.35);
  position: relative;
  z-index: 1;
}

footer {
  margin-top: 30px;
  color: #777;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .card {
    padding: 30px 22px;
    border-radius: 25px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  .foto {
    max-width: 100%;
  }
}
