:root{
  --bg: #0f0f12;         /* fundo da página */
  --paper: #ffffff;      /* cartões */
  --ink: #111111;        /* texto principal */
  --muted: #6f6f6f;      /* texto secundário */
  --brand: #f1ca7a;      /* amarelo usado no seu site */
  --line: #ececec;       /* linhas */
  --shadow: 0 20px 50px rgba(0,0,0,.15);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100% }
body{
  margin:0;
  background: 
    linear-gradient(180deg, rgba(15, 15, 18, 0.85) 0%, rgba(24, 24, 27, 0.85) 100%),
    url("Imagens/tatoo_02.png") center/cover no-repeat;
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  min-height: 50vh;
}

/* ====== container ====== */
.wrap{
  max-width: 980px;
  margin: clamp(16px, 5vw, 40px) auto;
  padding: 0 8px;
}

/* ====== header ====== */
.hero{
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(14px, 4vw, 30px);
  text-align: center;
  border: 1px solid var(--line);
}
.hero .badge{
  display: inline-block;
  background: var(--brand);
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  padding: .5em 1.2em;
  border-radius: 999px;
}
.hero h1{
  margin: 12px 0 6px;
  font-size: clamp(22px, 4.4vw, 40px);
  font-weight: 800;
}
.hero p{
  margin: 0;
  color: var(--muted);
}

/* ====== form ====== */
.form{
  margin-top: clamp(16px, 4vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.6vw, 36px);
}

.fs{
  border: none;
  padding: 0;
  margin: 0 0 26px 0;
}
.fs:last-of-type{ margin-bottom: 0; }

.fs > legend{
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 18px;
  display: block;
  color: #222;
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
  width: 100%;
}

/* grid de campos */
.grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  align-items: start;
}

.field{ 
  display: flex; 
  flex-direction: column;
  gap: 8px; 
  width: 100%;
}
.field--full{ 
  grid-column: 1 / -1; 
}

.field > span{
  font-weight: 600;
  font-size: .92rem;
  text-align: left;
  margin-bottom: 6px;
  display: block;
  color: #333;
  line-height: 1.3;
}

input, select, textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  min-height: 48px;
  box-sizing: border-box;
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(241,202,122,.25);
}

.hint{ 
  color: var(--muted); 
  font-size: .8rem; 
  margin-top: 4px;
  text-align: left;
  line-height: 1.3;
}
.counter{ color: var(--muted); font-size: .8rem; text-align: right; }

/* radios e checks */
.checks, .radios{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.checks label, .radios label{
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: .95rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
  min-height: 48px;
}

.checks label:hover, .radios label:hover{
  border-color: var(--brand);
  background: rgba(241, 202, 122, 0.1);
  transform: translateY(-1px);
}

.checks input[type="checkbox"], .radios input[type="radio"]{
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.checks input[type="checkbox"]:checked + span,
.radios input[type="radio"]:checked + span{
  font-weight: 600;
  color: var(--brand);
}

.checks input[type="checkbox"]:checked,
.radios input[type="radio"]:checked{
  accent-color: var(--brand);
}

/* Fallback para navegadores modernos */
.checks label:has(input:checked), .radios label:has(input:checked){
  border-color: var(--brand);
  background: rgba(241, 202, 122, 0.15);
  box-shadow: 0 2px 8px rgba(241, 202, 122, 0.2);
}

/* termos */
.agree{
  display: flex; 
  align-items: flex-start; 
  gap: 12px;
  margin: 16px 0;
  font-size: .95rem;
  line-height: 1.5;
  padding: 12px;
  border-radius: 8px;
  background: rgba(241, 202, 122, 0.1);
  border-left: 3px solid var(--brand);
}
.agree input[type="checkbox"]{
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}
.agree span{
  text-align: left;
}
.agree a{ 
  color: #0f62fe; 
  text-decoration: none; 
  font-weight: 600;
}
.agree a:hover{ text-decoration: underline; }

/* ações */
.actions{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 202, 122, 0.2);
}
.btn{
  background: var(--brand);
  color: #1a1a1a;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  min-width: 200px;
}
.btn:hover{ 
  transform: translateY(-2px); 
  opacity: .95;
  box-shadow: 0 8px 25px rgba(241, 202, 122, 0.3);
}

.success{
  margin: 0;
  color: #0a7a3e;
  font-weight: 600;
  background: rgba(10, 122, 62, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 3px solid #0a7a3e;
}

/* rodapé informativo */
.actions::before{
  content: "Seus dados estão seguros e serão usados apenas para contato profissional";
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  order: -1;
}

/* responsivo */
@media (max-width: 760px){
  .field{ grid-column: 1 / -1; }
}

/* --- Correção do espaçamento superior --- */
body, html {
  margin: 0;
  padding: 0;
}

.wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove espaços automáticos do tema/padrão WP */
.site, main, section, .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

<style>
/* --- imagem centralizada dentro do header --- */
.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto; /* cria espaço entre o título e a imagem */
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  max-width: 900px;   /* controla o tamanho máximo da imagem */
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  display: block;
}

/* Responsividade */
@media (max-width: 760px) {
  .hero__media {
    margin: 16px auto;
  }
  .hero__media img {
    max-width: 100%;
  }
}

/* Espaço extra antes do parágrafo */
.hero p {
  margin-top: 24px;
}
</style>