/* ==========================================================================
   SINOBRAS · Landing pages de evento
   Design system: Grupo Aço Cearense (Diretrizes da Marca v10 / Propeg)
   Marca protagonista: SINOBRAS · institucionais navy+azul-claro sempre presentes
   ========================================================================== */

:root {
  /* institucionais (predominantes sempre, em qualquer marca do grupo) */
  --navy: #223564;
  --light-blue: #6EAFD5;

  /* paleta propria SINOBRAS */
  --sin-navy: #232C57;
  --sin-blue: #7DB5DA;
  --sin-graphite: #545557;
  --sin-silver: #CECECE;

  /* neutros (so apoio) */
  --gray: #9D9D9C;
  --white: #FFFFFF;
  --lavender: #E3E1E6;

  /* superficies derivadas */
  --ink: #0E1730;
  --ink-2: #16224a;
  --paper: #F4F6F9;
  --paper-2: #E9EDF3;
  --line: rgba(34, 53, 100, .14);
  --line-dark: rgba(255, 255, 255, .16);

  /* gradiente institucional oficial */
  --grad-inst: linear-gradient(135deg, var(--light-blue), var(--navy));
  --grad-sin: linear-gradient(135deg, var(--sin-blue), var(--sin-navy));

  /* tipografia (Herokid -> Big Shoulders Display · Monstane Olstd -> Yellowtail) */
  --font-display: 'Big Shoulders Display', 'Anton', sans-serif;
  --font-script: 'Yellowtail', cursive;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* ritmo */
  --pad-x: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-sm: 0 2px 10px rgba(14, 23, 48, .06);
  --shadow-md: 0 18px 44px -22px rgba(14, 23, 48, .38);
  --shadow-lg: 0 40px 90px -40px rgba(14, 23, 48, .55);
}

/* tema por evento: sobrescreve --accent no <body data-evento> */
body[data-evento="concreteshow"] { --accent: #6EAFD5; --accent-deep: #102D69; }
body[data-evento="construnordeste"] { --accent: #55C0B3; --accent-deep: #17415E; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
figure, figcaption { margin: 0; }

.wrap { width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--pad-x); }

/* ---------- Tipografia de marca ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.005em;
  margin: 0;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  transform: translateY(.06em);
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  flex: none;
}
.lede { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: rgba(34, 53, 100, .78); }
.on-dark .lede { color: rgba(255, 255, 255, .8); }

/* ---------- Grafismo diagonal (sempre sangra pra fora) ---------- */
.graf {
  position: absolute;
  pointer-events: none;
  background: var(--light-blue);
  opacity: .1;
  border-radius: 46px 0 46px 0;
  transform: skewX(-18deg);
}

/* ---------- Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--light-blue); outline-offset: 3px; }

.btn-primary { background: var(--light-blue); color: var(--navy); box-shadow: 0 14px 34px -16px rgba(110, 175, 213, .95); }
.btn-primary:hover { background: var(--white); box-shadow: 0 20px 44px -18px rgba(110, 175, 213, .95); }

.btn-solid { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.btn-solid:hover { background: var(--sin-navy); }

.btn-ghost { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }

.btn-block { width: 100%; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(14, 23, 48, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .35s var(--ease), padding .35s var(--ease);
}
.topbar .bar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 14px;
  transition: padding .35s var(--ease);
}
.topbar.compact .bar { padding-block: 9px; }
.topbar .brands { display: flex; align-items: center; gap: 20px; min-width: 0; }
.topbar .logo-sin { height: 42px; transition: height .35s var(--ease); }
.topbar.compact .logo-sin { height: 34px; }
.topbar .sep { width: 1px; height: 30px; background: var(--line-dark); flex: none; }
.topbar .logo-evt { height: 32px; transition: height .35s var(--ease); }
.topbar.compact .logo-evt { height: 26px; }
.topbar .spacer { flex: 1; }

.countdown { display: flex; align-items: center; gap: 8px; color: var(--white); }
.countdown .cd-unit { text-align: center; min-width: 46px; }
.countdown .cd-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown .cd-lbl { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .62; font-weight: 700; }
.countdown .cd-sep { opacity: .3; font-size: 18px; transform: translateY(-4px); }
.countdown.is-live .cd-num { color: var(--light-blue); }

.topbar .btn { padding: 12px 22px; font-size: 12px; }

@media (max-width: 900px) {
  .topbar .countdown { display: none; }
  .topbar .sep, .topbar .logo-evt { display: none; }
}
@media (max-width: 520px) {
  .topbar .btn span.long { display: none; }
  .topbar .btn { padding: 11px 18px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: clamp(120px, 16vh, 168px) 0 clamp(56px, 8vh, 92px);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
/* filtro institucional obrigatorio sobre toda foto oficial */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(34, 53, 100, .96) 0%, rgba(34, 53, 100, .9) 42%, rgba(110, 175, 213, .52) 100%);
  mix-blend-mode: multiply;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 23, 48, .92) 0%, rgba(14, 23, 48, .6) 48%, rgba(14, 23, 48, .16) 100%),
    linear-gradient(0deg, rgba(14, 23, 48, .82) 0%, transparent 46%);
}
/* grafismo diagonal do hero, sangrando pra fora */
.hero-graf {
  position: absolute;
  z-index: -1;
  top: -14%;
  right: -16%;
  width: 58%;
  height: 132%;
  background: linear-gradient(160deg, rgba(110, 175, 213, .3), rgba(110, 175, 213, 0) 68%);
  border-radius: 180px 0 180px 0;
  transform: skewX(-16deg);
  pointer-events: none;
}
.hero-graf.two {
  right: -30%;
  width: 42%;
  background: linear-gradient(160deg, rgba(255, 255, 255, .1), transparent 62%);
  border-radius: 140px 0 140px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge img { height: 18px; filter: brightness(0) invert(1); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--light-blue); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

.hero h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.04; color: var(--white); margin-bottom: 22px; }
.hero h1 .script { color: var(--light-blue); font-size: 1.06em; }
.hero .lede { max-width: 54ch; margin: 0 0 30px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, .05);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.fact-pill:hover { border-color: rgba(110, 175, 213, .7); background: rgba(110, 175, 213, .12); }
.fact-pill svg { flex: none; color: var(--light-blue); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13px; opacity: .62; margin-top: 18px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 108px; }
}

/* ---------- Card do formulario ---------- */
.form-card {
  background: var(--white);
  color: var(--navy);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-inst);
}
.form-card .fc-head {
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), var(--white));
}
.form-card .fc-head h2 { font-size: 21px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em; }
.form-card .fc-head p { margin: 0; font-size: 13.5px; color: rgba(34, 53, 100, .68); }
.form-card .fc-body { padding: 24px 28px 28px; }

.hero .form-card { position: sticky; top: 96px; }
@media (max-width: 980px) { .hero .form-card { position: static; } }

/* ---------- Campos ---------- */
.field-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.field { grid-column: span 12; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
@media (max-width: 560px) {
  .col-6, .col-4, .col-8, .col-9 { grid-column: span 12; }
  .col-3 { grid-column: span 6; }
}

.field label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(34, 53, 100, .72);
}
.field label .req { color: var(--light-blue); }

.field input,
.field select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--paper);
  border: 1.5px solid transparent;
  border-bottom: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23223564' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field input:hover, .field select:hover { background: var(--paper-2); }
.field input:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(110, 175, 213, .2);
}
.field input::placeholder { color: rgba(34, 53, 100, .34); }
.field input[readonly] { background: var(--paper-2); color: rgba(34, 53, 100, .62); cursor: default; }

.field.invalid input, .field.invalid select { border-color: #D84854; box-shadow: 0 0 0 4px rgba(216, 72, 84, .14); }
.field .err { font-size: 12px; color: #C0323E; font-weight: 600; display: none; }
.field.invalid .err { display: block; }

.field .hint { font-size: 11.5px; color: rgba(34, 53, 100, .5); }
.field.loading label::after {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  margin-left: 7px;
  border: 2px solid var(--light-blue);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: -1px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* grupo de radio "planejamento de compra" */
.radio-set { display: grid; gap: 9px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  background: var(--white);
}
.radio-opt:hover { border-color: var(--light-blue); background: var(--paper); }
.radio-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-opt .mark {
  width: 19px; height: 19px; border-radius: 50%;
  border: 2px solid rgba(34, 53, 100, .3);
  flex: none; position: relative;
  transition: border-color .25s var(--ease);
}
.radio-opt .mark::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--light-blue);
  transform: scale(0);
  transition: transform .25s var(--ease);
}
.radio-opt input:checked ~ .mark { border-color: var(--light-blue); }
.radio-opt input:checked ~ .mark::after { transform: scale(1); }
.radio-opt:has(input:checked) { border-color: var(--light-blue); background: rgba(110, 175, 213, .09); }
.radio-opt input:focus-visible ~ .mark { box-shadow: 0 0 0 4px rgba(110, 175, 213, .28); }
.radio-opt .txt { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.radio-opt .txt small { display: block; font-weight: 500; font-size: 12.5px; color: rgba(34, 53, 100, .58); }

/* consentimento LGPD (nunca nasce marcado) */
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(34, 53, 100, .72);
}
.consent input {
  appearance: none;
  width: 19px; height: 19px;
  border: 2px solid rgba(34, 53, 100, .32);
  border-radius: 5px;
  flex: none;
  margin-top: 1px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.consent input:checked { background: var(--light-blue); border-color: var(--light-blue); }
.consent input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 4px; height: 9px;
  border: solid var(--navy);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.consent input:focus-visible { box-shadow: 0 0 0 4px rgba(110, 175, 213, .28); }
.consent a { color: var(--navy); font-weight: 700; }

.form-msg {
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.error { background: rgba(216, 72, 84, .1); color: #A82833; }

/* estado de sucesso */
.form-success { display: none; text-align: center; padding: 18px 6px 8px; }
.form-success.show { display: block; animation: fadeUp .55s var(--ease) both; }
.form-success .ok-mark {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-inst);
  display: grid; place-items: center;
  color: var(--white);
}
.form-success h3 { font-size: 21px; margin: 0 0 8px; font-weight: 800; }
.form-success p { margin: 0 0 6px; font-size: 14.5px; color: rgba(34, 53, 100, .72); }
.form-success .prot {
  display: inline-block;
  margin-top: 14px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
}

.btn.is-busy { pointer-events: none; opacity: .72; }
.btn.is-busy::after {
  content: "";
  width: 15px; height: 15px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* ---------- Faixa de numeros ---------- */
.stripe {
  background: var(--sin-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stripe::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -60%;
  width: 46%;
  height: 220%;
  background: linear-gradient(160deg, rgba(110, 175, 213, .17), transparent 70%);
  transform: skewX(-18deg);
  border-radius: 120px 0 120px 0;
}
.stripe .wrap { position: relative; padding-block: clamp(38px, 5vw, 56px); }
.stripe-head { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; opacity: .62; margin: 0 0 24px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 40px); }
@media (max-width: 820px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stat { border-left: 2px solid rgba(110, 175, 213, .42); padding-left: 18px; }
.stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  color: var(--light-blue);
  font-variant-numeric: tabular-nums;
  display: block;
}
.stat .n .suf { font-size: .48em; margin-left: 3px; }
.stat .l { font-size: 13px; margin-top: 9px; opacity: .82; line-height: 1.4; }

/* ---------- Secoes ---------- */
section { position: relative; }
.sec { padding-block: clamp(64px, 9vw, 116px); }
.sec-dark { background: var(--ink); color: var(--white); overflow: hidden; }
.sec-paper { background: var(--paper); }
.sec-head { max-width: 62ch; margin-bottom: clamp(38px, 5vw, 60px); }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 54px); margin: 0 0 18px; }
.sec-dark .sec-head h2 { color: var(--white); }
.sec-dark .sec-head h2 .script { color: var(--light-blue); }
.sec-head h2 .script { color: var(--light-blue); font-size: 1.1em; }

/* ---------- Cards de motivo ---------- */
.reason-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.reason {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.reason::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 130px; height: 130px;
  background: var(--light-blue);
  opacity: 0;
  border-radius: 60px 0 60px 0;
  transform: skewX(-18deg);
  transition: opacity .4s var(--ease);
}
.reason:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(110, 175, 213, .55); }
.reason:hover::after { opacity: .08; }
.reason .ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(110, 175, 213, .16);
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.reason h3 { font-size: 18px; font-weight: 800; margin: 0 0 9px; letter-spacing: -.01em; }
.reason p { margin: 0; font-size: 14.5px; color: rgba(34, 53, 100, .72); line-height: 1.6; position: relative; z-index: 1; }

/* ---------- Produtos ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.prod {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: rgba(255, 255, 255, .04);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.prod:hover { background: rgba(110, 175, 213, .12); border-color: rgba(110, 175, 213, .55); transform: translateY(-4px); }
.prod .ico { color: var(--light-blue); margin-bottom: 15px; }
.prod h3 { font-size: 17px; font-weight: 800; margin: 0 0 7px; color: var(--white); }
.prod p { margin: 0 0 12px; font-size: 13.5px; color: rgba(255, 255, 255, .68); line-height: 1.55; }
.prod .attrs { display: flex; flex-wrap: wrap; gap: 6px; }
.prod .attrs span {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid rgba(110, 175, 213, .42);
  color: var(--light-blue);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- Agenda / passos ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: s; }
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: s;
  content: "0" counter(s);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: .7;
  color: rgba(110, 175, 213, .3);
  position: absolute;
  top: -14px; left: -4px;
}
.step h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; position: relative; }
.step p { margin: 0; font-size: 14px; color: rgba(34, 53, 100, .72); line-height: 1.6; }
.sec-dark .step p { color: rgba(255, 255, 255, .7); }
.sec-dark .step h3 { color: var(--white); }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, 1fr); gap: 12px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(150px, 1fr); } }
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.shot:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .shot:first-child { grid-column: span 2; grid-row: span 1; } }
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(34, 53, 100, .78), rgba(110, 175, 213, .34));
  mix-blend-mode: multiply;
  transition: opacity .5s var(--ease);
}
.shot:hover img { transform: scale(1.07); }
.shot:hover::after { opacity: .55; }
.shot .cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

/* ---------- Faixa de tagline ---------- */
.tagline-band {
  background: var(--grad-sin);
  color: var(--white);
  text-align: center;
  padding-block: clamp(52px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}
.tagline-band .t {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 1;
  margin: 0;
  position: relative;
}
.tagline-band .t .script { color: var(--white); font-size: 1.16em; }
.tagline-band .sub { margin: 16px 0 0; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; opacity: .68; }
.tagline-band .graf { top: -50%; right: -8%; width: 40%; height: 200%; opacity: .12; background: var(--white); }
.tagline-band .graf.l { left: -10%; right: auto; }

/* ---------- Bloco final de cadastro ---------- */
.final { background: var(--ink); color: var(--white); overflow: hidden; }
.final .wrap { position: relative; padding-block: clamp(60px, 8vw, 100px); }
.final-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 980px) { .final-grid { grid-template-columns: 1fr; } }
.final h2 { font-size: clamp(32px, 5vw, 60px); color: var(--white); margin: 0 0 18px; }
.final h2 .script { color: var(--light-blue); font-size: 1.12em; }
.final .checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.final .checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255, 255, 255, .8); }
.final .checklist svg { flex: none; color: var(--light-blue); margin-top: 2px; }

/* ---------- Rodape ---------- */
.foot { background: var(--navy); color: rgba(255, 255, 255, .74); font-size: 13.5px; }
.foot .wrap { padding-block: 48px 34px; }
.foot-top { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line-dark); }
.foot .logo-sin { height: 54px; margin-bottom: 16px; }
.foot p { margin: 0 0 6px; max-width: 46ch; line-height: 1.6; }
.foot .group { text-align: right; }
.foot .group span { display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; opacity: .5; margin-bottom: 10px; font-weight: 800; }
.foot .group img { height: 26px; opacity: .9; margin-left: auto; }
@media (max-width: 700px) { .foot .group { text-align: left; } .foot .group img { margin-left: 0; } }
.foot-bot { padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 12px; opacity: .62; }
.foot-bot a { text-decoration: none; }
.foot-bot a:hover { text-decoration: underline; }

/* ---------- CTA flutuante mobile ---------- */
.sticky-cta {
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 55;
  display: none;
  transform: translateY(150%);
  transition: transform .45s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
@media (max-width: 780px) { .sticky-cta { display: block; } body { padding-bottom: 0; } }

/* ---------- Motions ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img { transform: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* aviso de fallback tipografico (some em producao final com as fontes reais) */
.font-note {
  background: #FFF6DC;
  color: #6B5300;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .02em;
}
