:root {
  --gold: #c5a059;
  --dark-grey: #333333;
  --soft-pink: #fdf5f6;
  --white: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--soft-pink);
  font-family: "Montserrat", sans-serif;
  color: var(--dark-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("/conviteHeloise/assets/image/fundo.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed; /* A imagem fica fixa ao rolar a página */
  background-size: cover; /* Faz a imagem cobrir tudo sem distorcer */
  height: 100vh;
}

.card {
  max-width: 450px;
  width: 90%;
  background: var(--white);
  margin: 40px 0;
  padding: 50px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
  border: 10px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-icon {
  width: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
}
h1 {
  font-family: "Playfair Display", serif;
  font-size: 35px;
  margin: 10px 0;
}

.info-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 25px 0;
  margin: 30px 0;
}

/* Estilo do Formulário Elegante */
.rsvp-form {
  text-align: left;
  margin-top: 30px;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 5px;
}

label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--gold);
}

input,
select {
  width: 100%;
  padding: 12px 0;
  margin: 8px 0 20px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: "Montserrat", sans-serif;
  outline: none;
  background: transparent;
}

.btn-submit,
.btn {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-submit:hover {
  background: var(--dark-grey);
}

.imagem-helo {
  width: 183px;
  height: 183px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  margin: 0 125px;
}

img {
  width: 100%;
  object-fit: cover;
}

.divider {
  padding-top: 5px;
  display: flex;
  text-align: center;
}

@media (max-width: 600px) {
  .card {
    width: 70%;
  }

  h1 {
    font-size: 28px;
  }

  .info-section {
    padding: 15px 0;
    margin: 20px 0;
  }
  body {
    background-position: left;
  }
}


