:root {
  --bg: #f3f5f7;
  --bg-soft: #eef2f5;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --stroke: #d8e0e8;
  --text: #18222d;
  --muted: #5f6f80;
  --accent: #c67a5c;
  --accent-strong: #d48768;
  --success: #2eaf63;
  --danger: #d95b5b;
  --shadow-lg: 0 22px 52px rgba(15, 34, 53, 0.12);
  --shadow-md: 0 12px 28px rgba(15, 34, 53, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

[hidden] {
  display: none !important;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(198, 122, 92, 0.12), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(143, 162, 190, 0.14), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eff3f6 44%, #f6f8fb 100%);
  color: var(--text);
  font-family: "Brother 1816", "Segoe UI", Tahoma, sans-serif;
  font-weight: 300;
}

body.has-overlay-loading,
body.has-popup {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, #0c1723, #142335 48%, #0b1724);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.topbar__inner {
  width: min(1220px, 94vw);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: clamp(188px, 17vw, 250px);
  height: auto;
  display: block;
}

.topbar__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.brand__tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f7fbff;
}

.brand__restricted {
  font-size: 0.72rem;
  color: #b8c6d5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-carousel {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #0e1a29;
  position: relative;
}

.hero-carousel__track {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 3.8vw, 46px) clamp(16px, 3vw, 30px) clamp(34px, 5.2vw, 62px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  display: grid;
  align-items: center;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.055);
  filter: saturate(0.96) contrast(0.98);
  transition: transform 7.5s ease, filter 1.2s ease;
}

.hero-slide.is-active::before {
  transform: scale(1);
  filter: saturate(1.04) contrast(1.02);
}

.hero-slide--1::before {
  background-image:
    linear-gradient(180deg, rgba(7, 16, 28, 0.54) 0%, rgba(8, 20, 34, 0.48) 44%, rgba(9, 20, 34, 0.72) 100%),
    url("../img/slide-obra-1.jpg");
}

.hero-slide--2::before {
  background-image:
    linear-gradient(180deg, rgba(7, 16, 28, 0.56) 0%, rgba(8, 20, 34, 0.47) 44%, rgba(9, 20, 34, 0.74) 100%),
    url("../img/slide-obra-2.jpg");
}

.hero-slide--3::before {
  background-image:
    linear-gradient(180deg, rgba(7, 16, 28, 0.55) 0%, rgba(8, 20, 34, 0.5) 44%, rgba(9, 20, 34, 0.73) 100%),
    url("../img/slide-obra-3.jpg");
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  margin: 0 auto;
  text-align: center;
  transform: translate3d(var(--hero-parallax-x, 0px), var(--hero-parallax-y, 0px), 0);
  transition: transform 220ms ease-out;
}

.hero-slide__content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active .hero-slide__content > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.is-active .hero-slide__content > :nth-child(1) { transition-delay: 0.04s; }
.hero-slide.is-active .hero-slide__content > :nth-child(2) { transition-delay: 0.10s; }
.hero-slide.is-active .hero-slide__content > :nth-child(3) { transition-delay: 0.16s; }
.hero-slide.is-active .hero-slide__content > :nth-child(4) { transition-delay: 0.22s; }

.hero-slide__eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--accent);
  font-size: clamp(0.66rem, 0.95vw, 0.82rem);
}

.hero-slide h2 {
  margin: 0 auto;
  max-width: 960px;
  font-size: clamp(1.78rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #f7fbff;
  text-shadow: 0 10px 28px rgba(7, 18, 29, 0.42);
}

.hero-slide p {
  margin: 12px auto 0;
  max-width: 900px;
  color: rgba(238, 246, 255, 0.95);
  line-height: 1.5;
  font-size: clamp(0.95rem, 1.22vw, 1.28rem);
}

.hero-metrics {
  margin: 22px auto 0;
  width: min(860px, 90vw);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(246, 252, 255, 0.3);
  border-bottom: 1px solid rgba(246, 252, 255, 0.2);
  background: linear-gradient(180deg, rgba(7, 19, 31, 0.28), rgba(8, 22, 37, 0.34));
  backdrop-filter: blur(2px);
}

.hero-metric {
  padding: 10px 8px 8px;
  position: relative;
}

.hero-metric strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.3rem, 2.1vw, 2.05rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-metric span {
  display: block;
  margin-top: 4px;
  color: #f3f8ff;
  font-size: clamp(0.64rem, 0.75vw, 0.78rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48%;
  background: rgba(241, 248, 255, 0.24);
}

.hero-carousel__controls {
  display: none !important;
}

.hero-carousel__arrow {
  display: none !important;
}

.hero-carousel__arrow:hover {
}

.hero-carousel__dots {
  display: none !important;
}

.hero-carousel__dot {
  display: none !important;
}

.hero-carousel__dot.is-active {
}
.page {
  width: min(1220px, 94vw);
  margin: 0 auto;
  padding: clamp(20px, 3.4vw, 36px) 0 clamp(28px, 4.4vw, 44px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 2.3vw, 24px);
  align-items: start;
}

.balloon {
  border: 1px solid #c4d0dc;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 34, 53, 0.12);
}

.balloon--institutional {
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 14px;
}

.panel-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.balloon--institutional h1 {
  margin: 0;
  font-size: clamp(1.18rem, 2.1vw, 1.72rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.panel-lead {
  margin: 0;
  color: #4b5a69;
  line-height: 1.64;
  font-size: 0.96rem;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  border: 1px solid rgba(21, 43, 66, 0.16);
  border-radius: 12px;
  background: var(--surface-alt);
  padding: 12px;
}

.stat-card small {
  display: block;
  color: #6f8091;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card strong {
  display: block;
  margin-top: 5px;
  color: #1f2f40;
  font-size: 1.04rem;
  line-height: 1.4;
}

.benefit-list {
  display: grid;
  gap: 8px;
}

.benefit-list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3a4b5b;
  font-size: 0.9rem;
  font-weight: 400;
}

.benefit-list span {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: rgba(198, 122, 92, 0.16);
  color: #8e543f;
  font-size: 0.72rem;
  font-weight: 600;
}

.balloon--support {
  margin-top: 2px;
  padding: 14px;
  border: 1px solid #b6c6d7;
  background: linear-gradient(165deg, #ffffff, #f3f8fd);
  box-shadow: 0 10px 22px rgba(16, 35, 54, 0.10), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.balloon--support h2 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #132d46;
}

.balloon--support p {
  margin: 0;
  color: #3e5469;
  line-height: 1.56;
  font-size: 0.87rem;
  font-weight: 500;
}

.whats-number {
  color: #355f94;
  text-decoration: none;
  white-space: nowrap;
}

.whats-number:hover {
  text-decoration: underline;
}

.balloon--main {
  padding: clamp(18px, 3vw, 28px);
}

.balloon--main h2 {
  margin: 0;
  font-size: clamp(1.14rem, 2vw, 1.64rem);
  font-weight: 600;
  color: var(--text);
}

.subtitle {
  margin: 8px 0 18px;
  color: #46586a;
  font-size: 0.93rem;
  font-weight: 400;
}

form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3f5366;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid #cfd8e1;
  background: #fcfdff;
  color: #182736;
  border-radius: 11px;
  min-height: 46px;
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 400;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #627386 50%), linear-gradient(135deg, #627386 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.field input::placeholder {
  color: #6f8092;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(198, 122, 92, 0.2);
}

.field input.is-valid,
.field select.is-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(46, 175, 99, 0.14);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 91, 91, 0.12);
}

.feedback {
  min-height: 14px;
  font-size: 0.72rem;
  color: #789;
}

.feedback.is-valid {
  color: #2f9f5e;
}

.feedback.is-invalid {
  color: #d36363;
}

.btn {
  border: 0;
  border-radius: 11px;
  min-height: 46px;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent), #b56d50);
  color: #f8faf7;
}

.btn--secondary {
  background: linear-gradient(145deg, #f7f9fc, #e1e8ef);
  color: #1b2b3d;
  border: 1px solid #cad5df;
}

.loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b6e80;
  font-size: 1.04rem;
}

.loader {
  width: 17px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(39, 63, 89, 0.25);
  border-top-color: #516a86;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-message {
  margin: 0;
  color: #2f9f5e;
  font-size: 1.04rem;
  font-weight: 700;
}

.download-section {
  margin-top: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #c1cfdd;
  background: linear-gradient(160deg, #fdfefe, #f1f6fc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 8px 18px rgba(16, 35, 54, 0.07);
}

.download-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 270px);
  gap: 10px;
  align-items: start;
}

.download-card {
  border: 1px solid #b8c8d9;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  padding: 14px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 26px rgba(18, 36, 55, 0.11), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.download-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #172e44;
  text-wrap: balance;
}

.balloon--info {
  padding: 12px;
  background: #fff;
}

.balloon--tip {
  display: grid;
  align-content: start;
  position: relative;
}

.balloon--warning {
  border-color: rgba(181, 77, 58, 0.42);
  background: linear-gradient(165deg, #fff8f5, #ffece5);
  box-shadow: 0 12px 26px rgba(138, 60, 44, 0.15), 0 1px 0 rgba(255, 250, 248, 0.86) inset;
}

.warning-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9a2f20;
  background: rgba(198, 89, 67, 0.16);
  border: 1px solid rgba(184, 67, 45, 0.42);
  border-radius: 999px;
  padding: 2px 9px;
}

.balloon--warning p {
  margin: 22px 0 0;
  color: #63332d;
  line-height: 1.58;
  font-size: 0.9rem;
  font-weight: 600;
}

.download-required {
  margin: 2px 0 0;
  color: #b54141;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.post-download-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 29, 0.54);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  z-index: 180;
  padding: 20px;
}

.post-download-overlay__card {
  width: min(640px, 95vw);
  border: 1px solid rgba(245, 251, 255, 0.45);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow: 0 26px 58px rgba(7, 22, 36, 0.35);
  padding: 30px 26px 24px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.post-download-overlay__card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.42rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #24384c;
}

.post-download-overlay__card p {
  margin: 0;
  max-width: 530px;
  color: #4e6379;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.64;
}

.post-download-overlay__hint {
  margin-top: 2px;
  font-size: 0.86rem;
  color: #6f8193;
  letter-spacing: 0.04em;
}

.loader--elegant {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 50%;
  border: 3px solid rgba(71, 95, 120, 0.24);
  border-top-color: #6786a6;
  animation: spin 1.05s linear infinite;
  box-shadow:
    0 0 0 8px rgba(156, 190, 124, 0.11),
    0 0 20px rgba(108, 136, 165, 0.2);
}

.loader--elegant::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(99, 123, 151, 0.23);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
}

.btn--finish {
  min-width: 182px;
  min-height: 46px;
  margin-top: 4px;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(198, 122, 92, 0.28);
}

.btn--finish:disabled {
  opacity: 0.48;
  box-shadow: none;
}

.download-popup {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 29, 0.54);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 190;
  padding: 18px;
}

.download-popup__card {
  width: min(520px, 94vw);
  border: 1px solid rgba(229, 238, 247, 0.85);
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff, #f7fafe);
  box-shadow: 0 18px 36px rgba(12, 31, 49, 0.25);
  padding: 24px 18px 16px;
  text-align: center;
}

.download-popup__title {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-popup__card p {
  margin: 0;
  color: #425b74;
  font-size: 1.04rem;
  line-height: 1.5;
}

.download-popup__action {
  min-width: 150px;
  margin-top: 22px;
}

.download-popup--error {
  z-index: 195;
}

.download-popup--error .download-popup__card {
  border-color: rgba(219, 144, 144, 0.52);
  background: linear-gradient(165deg, #fff9f9, #fff5f5);
}

.download-popup--error .download-popup__title {
  color: #b34848;
}

.download-popup--error .download-popup__card p {
  color: #864d4d;
}

.download-popup__actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.download-popup__actions .download-popup__action {
  margin-top: 0;
  width: 100%;
}

.download-popup--confirm {
  z-index: 196;
}

.download-popup--confirm .download-popup__card {
  border-color: rgba(198, 122, 92, 0.4);
  background: linear-gradient(165deg, #fffaf7, #fff4ee);
}

.download-popup--confirm .download-popup__title {
  color: #9a5e46;
}

.download-popup--confirm .download-popup__card p {
  color: #7b5a4a;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, #0c1723, #142335 48%, #0b1724);
  backdrop-filter: blur(4px);
  margin-top: 10px;
}

.footer__inner {
  width: min(1220px, 94vw);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 10px 0;
}

.footer__inner p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2f8ff;
}

.footer__inner nav {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__inner a {
  color: #f7fbff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer__inner a:hover {
  color: #ffffff;
}

@media (max-width: 1020px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .download-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .topbar__inner {
    min-height: 74px;
  }

  .brand__logo {
    width: clamp(170px, 56vw, 216px);
  }

  .topbar__meta {
    justify-items: start;
    gap: 2px;
  }

  .brand__tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .brand__restricted {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-slide {
    padding: 20px 14px 78px;
  }

  .hero-slide h2 {
    font-size: clamp(1.56rem, 6vw, 2.2rem);
    line-height: 1.22;
  }

  .hero-slide p {
    font-size: clamp(0.92rem, 2.9vw, 1.05rem);
    line-height: 1.52;
    margin-top: 10px;
  }

  .hero-metrics {
    width: 100%;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metric {
    padding: 11px 8px 10px;
  }

  .hero-carousel__controls {
  display: none !important;
}

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .download-popup__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metric:not(:last-child)::after {
    display: none;
  }

  .hero-carousel__arrow {
  display: none !important;
}
}
@media (min-width: 580px) {
  .download-popup__actions {
    grid-template-columns: 1fr 1fr;
  }
}












#assinadorBtn {
  min-height: 46px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: #ffffff;
  background: linear-gradient(145deg, #ca7d5f, #b96c4e);
  border: 1px solid #aa5f44;
  box-shadow: 0 10px 22px rgba(155, 84, 60, 0.26);
}

#assinadorBtn:hover {
  filter: brightness(1.04);
  box-shadow: 0 12px 26px rgba(155, 84, 60, 0.32);
}


