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

body {
  font-family: 'Jost', sans-serif;
  height: 100vh;
}

body * {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero {
  background: url("consultoria de imagem website .jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}

.content {
  max-width: 520px;
  margin-left: 8%;
  align-items: center;
  text-align: center;
  color: #fff;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.notice {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 20px;
}

.small {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 25px;

}

.newsletter {
  //display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter input {
  padding: 10px 14px;
  border-radius: 30px;
  border: none;
  width: 220px;
  text-shadow: none !important;

}

.newsletter button {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: #2b2b2b;
  color: #fff;
  cursor: pointer;
  text-shadow: none !important;

}

/*.rgpd {
  font-size: 12px;
  opacity: 0.8;
}*/

.rgpd-wrapper {
  width: 100%;
  display: block;
  text-align: center; /* Centra o bloco da label */
  margin-top: 15px;
}

.rgpd {
  display: inline-flex; /* Faz com que a label ocupe apenas o espaço necessário */
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.8;
  cursor: pointer;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); /* Mantém a sombra do resto do site */
}

.rgpd input {
  margin-right: 8px; /* Controla o espaço exato entre a caixa e o texto */
  width: auto;
  cursor: pointer;
}

.rgpd span {
  display: inline-block;
  line-height: 1;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  justify-content: center;
}

.socials span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.copyright {
  //position: absolute;
  bottom: 18px;
  margin-top: 25px;
  //left: 50%;
  //transform: translateX(-50%);
  font-size: 11px;
  color: white;
  font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 767px) {
.content {
  margin-left: auto ! important;
  margin-right: auto ! important;

  max-width: 480px ! important;

}
