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

body {
  font-family: Poppins, sans-serif;
  background:
    radial-gradient(circle at top left, #dcd7bb 0, #f8f3ea 18%),
    radial-gradient(circle at bottom right, #dcd7bb 0, #f8f3ea 18%), #f8f3ea;
  color: #3f5532;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px;
}

.container {
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo {
  display: block;
  width: min(80vw, 520px);
  height: auto;
  object-fit: contain;
}

.subtitulo {
  letter-spacing: 8px;
  color: #4c5b3d;

  font-size: 0.95rem;

  margin-bottom: 18px;
}

h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 4rem;

  line-height: 1;

  color: #3f5532;

  margin-bottom: 20px;
}

p {
  font-size: 1.05rem;

  line-height: 1.8;

  color: #5f6b55;

  margin-bottom: 35px;
}

.card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #d8d3b7;
  padding: 20px 30px;
  border-radius: 18px;
  margin-bottom: 28px;
}

.icone {
  font-size: 34px;
}

.card-texto {
  text-align: left;
}

.card-texto strong {
  display: block;

  font-size: 1rem;

  color: #3f5532;
}

.card-texto span {
  font-size: 0.92rem;
  color: #56644a;
}
.botoes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.whatsapp {
  background: #35552d;
  color: white;
  transition: all 0.25s ease;
}

.whatsapp:hover {
  filter: brightness(1.05);
}

.instagram {
  background: transparent;
  color: #35552d;
  border: 2px solid #35552d;
  transition: all 0.2s ease;
}

.instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(53, 85, 45, 0.12);
}

.rodape {
  margin-top: 28px;
  color: #d0811d;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }

  .card {
    flex-direction: column;
    text-align: center;
  }

  .card-texto {
    text-align: center;
  }
}
