* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
}

.hero {
  height: 100vh;
  background-image: url("https://cdn.landingpage.app.br/lp.bridesweddingrecife.com.br/1765202130/imagens/desktop/443671-594c6f074e3ad2d937c2a7d5b4827be7.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  padding: 40px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #fff;
}

.logo {
  width: 120px;
  margin-bottom: 40px;
}

h1 {
  font-size: 64px;
  font-weight: 500;
}

h2 {
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 30px;
}

p {
  font-size: 22px;
  max-width: 520px;
  margin-bottom: 12px;
}

.cta {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 34px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s;
}

.cta:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  p {
    font-size: 18px;
  }
}
