/* ==========================================================================
   SINDBELEZAMG — estilos do site
   Reproduz o visual do site antigo (Elementor) com CSS próprio.
   ========================================================================== */

:root {
  --gold: #CFAB68;          /* primária */
  --gold-soft: #E4C181;
  --purple: #3E4095;        /* secundária */
  --purple-hover: #383AA7;
  --purple-mid: #6365B3;
  --lavender: #DCDCF4;      /* fundo das páginas */
  --white: #FFFFFF;
  --ink: #3E4095;
  --line: #7A7A7A;

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1140px;
  --gutter: 15px;
  --radius: 10px;
  --shadow-header: 0 4px 17px -9px rgba(0, 0, 0, .26);
  --shadow-btn: 0 4px 18px -8px var(--purple);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--lavender);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.2; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.ico { width: 1em; height: 1em; flex: none; }
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.center { text-align: center; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--purple); color: #fff; padding: 10px 16px; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-decoration: underline;
  background: var(--purple);
  border-radius: var(--radius);
  box-shadow: var(--shadow-btn);
  transition: background .2s;
}
.btn:hover, .btn:focus-visible { background: var(--purple-hover); }
.btn--gold { background: var(--gold); box-shadow: none; }
.btn--gold:hover, .btn--gold:focus-visible { background: #c29c57; }

/* ---------- Títulos ---------- */
.title-gold { color: var(--gold); font-size: 33px; font-weight: 800; }

/* Faixa roxa com título dourado */
.band { background: var(--purple); padding: 5px var(--gutter); text-align: center; }
.band h2 { color: var(--gold); font-size: 30px; font-weight: 700; letter-spacing: .2px; line-height: 1.6; }

.section { padding-block: 50px; }

/* ==========================================================================
   Header + menu
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-header);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; gap: 24px; }
.brand img { width: 170px; }

.nav-list { display: flex; align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: block;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  position: relative;
  cursor: pointer;
}
/* sublinhado do item ativo/hover (pointer "underline" do Elementor) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--purple);
  opacity: 0;
  transition: opacity .2s;
}
.nav-item:hover > .nav-link::after,
.nav-item.is-active > .nav-link::after { opacity: 1; }
.has-sub .nav-link { padding-right: 4px; }
.has-sub .nav-link::after { right: -22px; }

.sub-toggle {
  display: grid; place-items: center;
  width: 22px; height: 44px;
  padding: 0; margin-right: 8px;
  border: 0; background: none;
  color: var(--purple);
  font-size: 13px;
  cursor: pointer;
}
.sub-toggle .ico { transition: transform .2s; }

.sub {
  position: absolute;
  top: 100%; left: 0;
  min-width: 250px;
  background: var(--white);
  box-shadow: 0 14px 27px -8px rgba(0, 0, 0, .2);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.sub a {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}
.sub a:hover, .sub a[aria-current="page"] { background: var(--lavender); }

@media (hover: hover) and (min-width: 1025px) {
  .has-sub:hover > .sub, .has-sub:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
}
.has-sub.is-open > .sub { opacity: 1; visibility: visible; transform: none; }
.has-sub.is-open > .sub-toggle .ico { transform: rotate(180deg); }

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 0; border-radius: 4px;
  background: var(--purple);
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
}
.nav-toggle:hover { background: var(--purple-mid); }
.nav-toggle .when-open { display: none; }
.nav-toggle[aria-expanded="true"] .when-open { display: contents; }
.nav-toggle[aria-expanded="true"] .when-closed { display: none; }
.nav-toggle > span { display: contents; }

@media (max-width: 1024px) {
  .header-inner { min-height: 76px; }
  .brand img { width: 150px; }
  .nav-toggle { display: grid; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 14px 27px -8px rgba(0, 0, 0, .2);
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.is-open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; padding-block: 8px; }
  .nav-item { flex-wrap: wrap; }
  .nav-link { flex: 1; padding: 14px 20px; font-size: 16px; }
  .nav-link::after { display: none; }
  .nav-item.is-active > .nav-link { background: var(--lavender); }
  .sub-toggle { width: 52px; height: 48px; margin: 0; font-size: 16px; }
  .sub {
    position: static; flex-basis: 100%;
    min-width: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    background: #f4f4fc;
  }
  .has-sub.is-open > .sub { display: block; }
  .sub a { padding: 13px 20px 13px 36px; font-size: 16px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--purple); color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 30px;
  padding-block: 50px;
  text-align: center;
}
.footer-brand img { width: 280px; margin: 10px auto 0; }
.footer-title { color: var(--gold); font-size: 26px; font-weight: 700; }
.icon-list { margin-top: 15px; display: grid; gap: 9px; justify-items: center; }
.icon-list a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.icon-list .ico { font-size: 20px; }
.icon-list a:hover { color: var(--lavender); }
.footer-address { margin: 15px 0 0; font-size: 17px; font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--line); padding: 15px var(--gutter) 20px; text-align: center; font-weight: 600; }
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: var(--gold); font-weight: 800; }

@media (max-width: 1024px) {
  .icon-list a, .footer-address { font-size: 15px; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; padding-block: 30px; gap: 24px; }
  .footer-brand img { width: 240px; }
}

/* ==========================================================================
   Home
   ========================================================================== */

/* Banner / slider */
.hero { padding-top: 10px; }
.slider { position: relative; overflow: hidden; background: #001C46; aspect-ratio: 2 / 1; }
.slider-track { position: relative; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility .7s;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide a, .slide img { display: block; width: 100%; height: 100%; }
.slide img { object-fit: cover; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  padding: 0; border: 0; background: none;
  color: var(--white); font-size: 28px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
  cursor: pointer; z-index: 2;
}
.slider-btn.prev { left: 6px; }
.slider-btn.next { right: 6px; }
.slider-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider-dots button[aria-selected="true"] { background: var(--white); transform: scale(1.15); }

/* Imagem + texto lado a lado */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; }
.split-body .btn { margin-top: 15px; }
.split-body .title-gold { margin-bottom: 0; }

/* Cards de benefícios (o roxo translúcido já vem na imagem) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.benefit-card {
  position: relative;
  aspect-ratio: 383 / 481;
  background-size: cover;
  background-position: center top;
  color: var(--white);
}
.benefit-body { position: absolute; left: 15px; right: 15px; top: 48%; }
.benefit-card h3 { font-size: 16px; font-weight: 700; line-height: 18px; letter-spacing: .5px; margin-bottom: 14px; }
.benefit-card p { font-size: 14px; line-height: 19px; margin: 0; }

/* Logos de parceiros */
.partner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 30px;
  padding-block: 20px 40px;
}
.partner-row img { width: 150px; max-height: 90px; object-fit: contain; transition: transform .2s; }
.partner-row a:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { max-width: 383px; width: 100%; justify-self: center; }
}
@media (max-width: 767px) {
  .section { padding-block: 30px; }
  .title-gold { font-size: 29px; }
  .band h2 { font-size: 24px; }
  .split { grid-template-columns: 1fr; }
  .split-body .btn { font-size: 13px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; gap: 24px; padding-block: 10px 30px; }
  .partner-row img { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Páginas internas
   ========================================================================== */

/* Faixa de título da página (h1) — mesma faixa roxa da Home */
.band h1 { color: var(--gold); font-size: 30px; font-weight: 700; letter-spacing: .2px; line-height: 1.6; }
@media (max-width: 767px) { .band h1 { font-size: 24px; } }

.lead-purple { color: var(--purple); font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: .2px; text-align: center; max-width: 840px; margin: 0 auto; }
.subhead { color: var(--purple); font-size: 22px; font-weight: 700; text-align: center; margin: 0 0 10px; }
@media (max-width: 767px) {
  .lead-purple { font-size: 15px; line-height: 1.6; }
  .subhead { font-size: 19px; }
}

/* ---------- O Presidente ---------- */
.president { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; }
.president-text { text-align: justify; color: var(--purple); font-size: 16px; font-weight: 600; line-height: 20px; }
.president-text p { margin: 0 0 14px; }
.president-sign { margin-top: 24px !important; }
.president-photo img { width: 62%; margin-inline: auto; border: 4px solid var(--purple); }
@media (max-width: 1024px) {
  .president-text { font-size: 15px; }
  .president-photo img { width: 83%; }
}
@media (max-width: 767px) {
  .president { grid-template-columns: 1fr; }
  .president-photo img { width: 100%; }
}

/* ---------- Grade de artes clicáveis (Lei Salão Parceiro, Central) ---------- */
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; padding-block: 20px; }
.art-grid a, .art-grid .art { display: block; width: 85%; margin-inline: auto; border-radius: 15px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.art-grid a:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(62, 64, 149, .55); }
.art-grid img { width: 100%; }
@media (max-width: 767px) { .art-grid { grid-template-columns: 1fr; } .art-grid a { width: 100%; } }

.central-hero { display: block; width: 85%; margin: 0 auto 30px; transition: opacity .2s; }
.central-hero:hover { opacity: .92; }
.central-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; max-width: 820px; margin-inline: auto; }
.central-grid a, .central-grid .art { display: block; transition: transform .2s; }
.central-grid a:hover { transform: translateY(-3px); }
.central-grid img { width: 100%; }
@media (max-width: 1024px) { .central-hero { width: 90%; } }
@media (max-width: 767px) { .central-hero { width: 100%; } .central-grid { grid-template-columns: 1fr; } }

/* ---------- Convenção coletiva ---------- */
.convencao {
  background: url('/assets/img/paginas/convencao-fundo.webp') center / cover no-repeat;
  padding-block: 50px;
}
.doc-list { display: grid; gap: 15px; justify-items: center; }
.btn-doc {
  display: inline-block;
  min-width: min(100%, 460px);
  padding: 15px 30px;
  font-size: 18px; font-weight: 600; letter-spacing: .4px; text-align: center;
  color: var(--white); text-decoration: underline;
  background: var(--purple);
  border-radius: 5px;
  box-shadow: 0 9px 17px -5px rgba(0, 0, 0, .16);
  transition: background .2s;
}
a.btn-doc:hover { background: var(--purple-hover); }
.btn-doc.is-off { background: #8d8fb8; text-decoration: none; cursor: not-allowed; }
@media (max-width: 767px) { .btn-doc { font-size: 15px; line-height: 1.3; } }

/* ---------- Grade de logos ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; justify-items: center; padding-block: 40px; }
.logo-grid img { width: 100%; max-width: 220px; border-radius: 50%; }
.logo-grid a { display: block; transition: transform .2s; }
.logo-grid a:hover { transform: scale(1.04); }
@media (max-width: 767px) { .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-block: 30px; } }

/* ---------- Benefícios ---------- */
.benefit-group { padding-bottom: 30px; }
.benefit-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 50px; margin-top: 10px; }
.benefit-item { flex: 0 1 230px; text-align: center; color: var(--purple); }
.benefit-item img { width: 65%; margin: 0 auto 6px; border-radius: 50%; }
.benefit-item a { display: block; transition: transform .2s; }
.benefit-item a:hover { transform: scale(1.03); }
.benefit-item p { font-size: 17px; font-weight: 600; line-height: 20px; margin: 0; }
.benefit-item ul { font-size: 16px; font-weight: 600; line-height: 20px; }
.benefit-item li + li { margin-top: 4px; }
@media (max-width: 767px) {
  .benefit-items { gap: 24px 16px; }
  .benefit-item { flex-basis: calc(50% - 8px); }
  .benefit-item img { width: 100%; }
  .benefit-item p, .benefit-item ul { font-size: 14px; }
}

/* ---------- Planos ---------- */
.plans-head { background: var(--purple); color: var(--white); text-align: center; padding: 40px var(--gutter); }
.plans-head .kicker { font-size: 18px; font-weight: 700; }
.plans-head h1, .plans-head h2.plans-title { color: var(--gold); font-size: 43px; font-weight: 700; letter-spacing: .2px; margin-top: 4px; }
.plans-head .divider { width: 20%; height: 2px; background: var(--gold); margin: 14px auto; border: 0; }
.plans-head .intro { font-size: 19px; font-weight: 500; line-height: 1.3; letter-spacing: .5px; max-width: 560px; margin: 0 auto 12px; }
.plans-head .intro:last-child { margin-bottom: 0; }

.plans { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding-block: 50px 30px; }
.plan {
  flex: 0 1 calc((100% - 80px) / 3);
  min-width: 280px;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 3px solid var(--purple);
  padding: 30px;
  text-align: center;
  color: #000;
}
.plans--2 .plan { flex-basis: calc((100% - 40px) / 2); max-width: 520px; }
.plan h3 { color: var(--purple); font-size: 40px; font-weight: 700; margin-bottom: 14px; }
.plan-pitch { font-size: 16px; font-weight: 600; }
.plan-price { color: var(--purple); font-size: 40px; font-weight: 700; line-height: 1.1; margin-top: 10px; }
.plan-period { font-size: 16px; font-weight: 600; margin: 2px 0 0; line-height: 1.35; }
.plan-period small { display: block; font-size: 16px; }
.plan-includes { font-weight: 700; margin: 22px 0 10px; }
.check-list { text-align: left; font-weight: 500; display: grid; gap: 6px; }
.check-list li { display: flex; gap: 8px; align-items: baseline; }
.check-list .ico { color: var(--purple); font-size: 14px; transform: translateY(2px); }
.plan .btn { margin-top: auto; align-self: center; }
.plan .check-list { margin-bottom: 30px; }
.plans-note { color: var(--purple); font-size: 23px; font-weight: 700; letter-spacing: .2px; text-align: center; padding: 10px var(--gutter) 60px; margin: 0; }
@media (max-width: 1024px) {
  .plans { gap: 30px; }
  .plan { flex-basis: calc((100% - 30px) / 2); padding: 20px; }
  .plan h3 { font-size: 28px; }
  .plan-price { font-size: 30px; }
  .plans-head .intro { font-size: 17px; }
  .plans-note { font-size: 17px; }
}
@media (max-width: 767px) {
  .plans-head h1, .plans-head h2.plans-title { font-size: 28px; }
  .plans-head .divider { width: 44%; }
  .plan { flex-basis: 100%; min-width: 0; }
  .plans--2 .plan { flex-basis: 100%; }
  .plan h3 { font-size: 30px; }
  .plan-price { font-size: 33px; }
  .plans-note { font-size: 15px; }
}

/* ---------- Documentos necessários ---------- */
.docs { max-width: 900px; margin-inline: auto; color: #222; }
.docs h1 { color: var(--gold); font-size: 33px; font-weight: 800; text-align: center; }
.docs h2 { color: var(--purple); font-size: 23px; font-weight: 600; margin: 30px 0 12px; }
.docs ul { font-size: 22px; line-height: 1.5; }
.docs .note { text-align: center; font-size: 17px; font-weight: 700; margin-top: 30px; }
@media (max-width: 1024px) { .docs ul { font-size: 19px; } }
@media (max-width: 767px) { .docs h1 { font-size: 29px; } .docs h2 { font-size: 22px; } .docs ul { font-size: 17px; } .docs .note { font-size: 14px; } }

/* ---------- Seja um associado (hub) ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.hub-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white);
  border: 3px solid var(--purple);
  padding: 28px 24px;
  text-decoration: none; color: #000;
  transition: transform .2s, box-shadow .2s;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(62, 64, 149, .55); }
.hub-card h2 { color: var(--purple); font-size: 24px; font-weight: 700; }
.hub-card p { font-weight: 500; margin: 0; }
.hub-card .more { margin-top: auto; padding-top: 10px; color: var(--purple); font-weight: 700; text-decoration: underline; }
.hub-cta { text-align: center; margin-top: 44px; }
.hub-cta p { color: var(--purple); font-weight: 600; font-size: 18px; margin-bottom: 16px; }
@media (max-width: 1024px) { .hub-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- Projetos ---------- */
.project-list { display: grid; gap: 30px; }
.project-list a { display: block; transition: transform .2s, box-shadow .2s; }
.project-list a:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(0, 28, 70, .6); }
.project-list img { width: 100%; }

/* ==========================================================================
   Formulários (Contatos + Ficha)
   ========================================================================== */
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 10px 16px;
  font: 600 15px/1.4 var(--font);
  color: var(--purple);
  background: transparent;
  border: 1px solid var(--purple);
  border-radius: 3px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.lead-form select { appearance: auto; }
.lead-form textarea { resize: vertical; min-height: 96px; }
.lead-form ::placeholder { color: #6f71b2; opacity: 1; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 3px rgba(62, 64, 149, .18);
}
.lead-form input.was-invalid:invalid { border-color: #c0392b; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; font-weight: 500; color: var(--purple); line-height: 1.45; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; flex: none; accent-color: var(--purple); }

.form-status { min-height: 1.4em; margin: 4px 0 0; font-size: 14px; font-weight: 600; text-align: center; }
.form-status.is-error { color: #c0392b; }
.form-status.is-ok { color: #1e8449; }

.form-done { background: var(--white); border: 3px solid var(--purple); padding: 32px 28px; text-align: center; outline: none; }
.form-done h2 { color: var(--gold); font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.form-done p { color: var(--purple); font-weight: 600; }

/* ---------- Contatos ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-block: 100px; }
.contact-info .title-gold { font-size: 38px; margin-bottom: 28px; }
.contact-list { display: grid; gap: 14px; }
.contact-list a { display: inline-flex; align-items: center; gap: 14px; font-size: 22px; font-weight: 500; color: var(--purple); text-decoration: none; word-break: break-word; }
.contact-list a:hover span { text-decoration: underline; }
.contact-list .ico { font-size: 30px; }
.contact-form .lead-form { display: grid; gap: 10px; }
.form-kicker { color: var(--gold); font-size: 14px; font-weight: 700; margin: 0 0 12px; }
.btn-send {
  width: 100%; padding: 12px;
  font: 700 17px/1 var(--font); color: var(--white); text-decoration: underline;
  background: var(--gold); border: 0; border-radius: 999px;
  cursor: pointer; transition: background .2s;
}
.btn-send:hover { background: #c29c57; }
.btn-send:disabled { opacity: .7; cursor: progress; }
@media (max-width: 1024px) { .contact { gap: 40px; padding-block: 60px; } .contact-list a { font-size: 18px; } }
@media (max-width: 767px) {
  .contact { grid-template-columns: 1fr; padding-block: 40px; }
  .contact-info .title-gold { font-size: 29px; }
  .contact-list a { font-size: 16px; }
  .contact-list .ico { font-size: 24px; }
}

/* ---------- Ficha de associação ---------- */
.ficha { max-width: 900px; }
.ficha-org { text-align: center; font-size: 13px; font-weight: 600; color: var(--purple); margin-bottom: 28px; }
.ficha-form { background: var(--white); border: 3px solid var(--purple); padding: 28px; }
.ficha-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.ficha-form legend { color: var(--gold); font-size: 24px; font-weight: 800; margin-bottom: 18px; padding: 0; }
.ficha-form .consent { margin-top: 20px; }

.stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 28px; counter-reset: step; }
.stepper li {
  counter-increment: step;
  position: relative;
  padding-top: 12px;
  font-size: 13px; font-weight: 700; color: #9a9bc6;
  border-top: 4px solid #d9d9ef;
}
.stepper li::before { content: counter(step) ". "; }
.stepper li.is-done { color: var(--purple); border-top-color: var(--purple); }
.stepper li.is-current { color: var(--purple); border-top-color: var(--gold); }

.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px 16px; margin-bottom: 14px; }
.f { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 700; color: var(--purple); grid-column: span 6; }
.f.span-1 { grid-column: span 1; } .f.span-2 { grid-column: span 2; } .f.span-3 { grid-column: span 3; }
.f.span-4 { grid-column: span 4; } .f.span-6 { grid-column: span 6; }
fieldset.step > .f { margin-bottom: 14px; }

.step-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; }
.step-nav .btn { border: 0; cursor: pointer; font-family: var(--font); }
.btn-link { background: none; border: 0; padding: 8px 0; font: 700 15px var(--font); color: var(--purple); text-decoration: underline; cursor: pointer; }

@media (max-width: 767px) {
  .ficha-form { padding: 20px 16px; }
  .stepper li { font-size: 11px; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .f.span-1, .f.span-2, .f.span-3 { grid-column: span 1; }
  .f.span-4, .f.span-6 { grid-column: span 2; }
}
