:root {
  --navy: #071f3d;
  --navy-2: #0b315c;
  --orange: #ff5a0a;
  --orange-dark: #d94600;
  --orange-light: #fff0e8;
  --green: #15803d;
  --green-light: #ecfdf3;
  --red: #c62828;
  --red-light: #fff1f1;
  --blue-light: #eef5fb;
  --text: #13273d;
  --muted: #66788c;
  --line: #e3eaf1;
  --bg: #f6f8fb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow:
    0 12px 35px rgba(7,31,61,.08);

  --shadow-lg:
    0 25px 70px rgba(7,31,61,.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--bg);
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.app {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* ======================================================
   CABECALHO
====================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(227,234,241,.9);
}

.header-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;

  text-decoration: none;

  font-size: 25px;
  font-weight: 900;

  color: var(--navy);

  letter-spacing: -1px;
}

.logo-mark {
  width: 35px;
  height: 35px;

  margin-right: 9px;

  border-radius: 12px 12px 12px 3px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--orange);
  color: white;

  transform: rotate(-8deg);

  font-size: 22px;
  font-weight: 900;
}

.logo-mark span {
  transform: rotate(8deg);
}

.logo strong {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 9px 12px;

  text-decoration: none;

  color: var(--muted);

  font-size: 14px;
  font-weight: 700;

  border-radius: 9px;
}

.nav-link:hover {
  background: #f1f5f9;
  color: var(--navy);
}

/* ======================================================
   BOTOES
====================================================== */

.btn {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 18px;

  border: 1px solid var(--line);
  border-radius: 11px;

  background: white;
  color: var(--navy);

  text-decoration: none;

  font-weight: 800;
  font-size: 14px;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

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

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);

  color: white;

  box-shadow:
    0 8px 20px rgba(255,90,10,.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.btn-soft {
  background: var(--orange-light);
  border-color: #ffd7c3;
  color: var(--orange-dark);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

/* ======================================================
   HOME
====================================================== */

.hero {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(255,90,10,.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #f7fafc
    );
}

.hero-grid {
  min-height: 610px;

  display: grid;
  grid-template-columns: 1.08fr .92fr;

  align-items: center;
  gap: 70px;

  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  padding: 9px 13px;

  margin-bottom: 22px;

  border-radius: 999px;

  background: var(--orange-light);
  color: var(--orange-dark);

  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;

  max-width: 720px;

  color: var(--navy);

  font-size:
    clamp(43px, 5.6vw, 72px);

  line-height: .99;

  letter-spacing: -3.2px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 680px;

  margin: 25px 0 30px;

  color: var(--muted);

  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 18px;

  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  color: var(--muted);

  font-size: 13px;
}

.hero-note strong {
  color: var(--navy);
}

.hero-visual {
  position: relative;

  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 465px;

  min-height: 430px;

  padding: 34px;

  position: relative;

  overflow: hidden;

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      #0d3a6b
    );

  color: white;

  box-shadow: var(--shadow-lg);
}

.visual-card::before {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  right: -75px;
  top: -70px;

  border-radius: 50%;

  background: var(--orange);
}

.visual-card::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  left: -80px;
  bottom: -80px;

  border-radius: 50%;

  border: 30px solid rgba(255,255,255,.07);
}

.visual-top {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visual-logo {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  background: white;
  color: var(--orange);

  border-radius: 18px;

  font-size: 34px;
  font-weight: 900;
}

.visual-online {
  padding: 8px 11px;

  border-radius: 999px;

  background: rgba(255,255,255,.12);

  font-size: 12px;
  font-weight: 700;
}

.visual-title {
  position: relative;
  z-index: 2;

  margin-top: 55px;
}

.visual-title small {
  color: #b9cce0;
}

.visual-title h2 {
  margin: 7px 0 0;

  font-size: 35px;
  line-height: 1.05;
}

.professionals {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 30px;
}

.professional-mini {
  min-height: 125px;

  padding: 17px;

  border-radius: 18px;

  background: rgba(255,255,255,.1);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.12);
}

.avatar {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--orange);
  color: white;

  font-weight: 900;
}

.professional-mini:nth-child(2) .avatar {
  background: white;
  color: var(--navy);
}

.professional-mini strong {
  display: block;
  margin-top: 11px;
}

.professional-mini small {
  display: block;
  margin-top: 3px;
  color: #bfd0df;
}

/* ======================================================
   SECOES HOME
====================================================== */

.section {
  padding: 80px 0;
}

.section-white {
  background: white;
}

.section-head {
  max-width: 650px;

  margin-bottom: 32px;
}

.section-head span {
  color: var(--orange);

  font-size: 13px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: .8px;
}

.section-head h2 {
  margin: 8px 0 10px;

  color: var(--navy);

  font-size: clamp(29px, 4vw, 43px);

  letter-spacing: -1.6px;
}

.section-head p {
  margin: 0;

  color: var(--muted);

  line-height: 1.65;
}

.category-grid {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0,1fr));

  gap: 14px;
}

.category-card {
  min-height: 150px;

  padding: 19px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 17px;

  background: white;

  border: 1px solid var(--line);

  box-shadow:
    0 6px 20px rgba(7,31,61,.04);

  text-decoration: none;

  transition: .18s ease;
}

.category-card:hover {
  transform: translateY(-3px);

  border-color: #ffccb4;

  box-shadow: var(--shadow);
}

.category-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--orange-light);
  color: var(--orange);

  font-weight: 900;
}

.category-card strong {
  color: var(--navy);
}

.category-card small {
  margin-top: 5px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.step-card {
  padding: 28px;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background: white;
}

.step-number {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--navy);
  color: white;

  font-weight: 900;
}

.step-card h3 {
  margin: 20px 0 8px;
}

.step-card p {
  margin: 0;

  color: var(--muted);

  line-height: 1.6;
}

/* ======================================================
   AUTH
====================================================== */

.auth-page {
  min-height: calc(100vh - 72px);

  padding: 55px 0;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255,90,10,.08),
      transparent 30%
    ),
    var(--bg);
}

.auth-shell {
  width: min(1060px, calc(100% - 32px));

  margin: auto;

  display: grid;
  grid-template-columns: .9fr 1.1fr;

  background: white;

  border: 1px solid var(--line);
  border-radius: 28px;

  overflow: hidden;

  box-shadow: var(--shadow-lg);
}

.auth-side {
  padding: 48px;

  background:
    linear-gradient(
      145deg,
      var(--navy),
      #0d3a6b
    );

  color: white;
}

.auth-side-badge {
  display: inline-flex;

  padding: 8px 11px;

  background: rgba(255,255,255,.1);

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
}

.auth-side h2 {
  margin: 35px 0 13px;

  font-size: 42px;
  letter-spacing: -1.8px;
}

.auth-side p {
  color: #c8d8e7;

  line-height: 1.65;
}

.auth-points {
  margin-top: 35px;

  display: grid;
  gap: 13px;
}

.auth-point {
  display: flex;
  gap: 11px;
  align-items: center;

  color: #dce9f4;

  font-size: 14px;
}

.auth-point i {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background: rgba(255,255,255,.1);

  font-style: normal;
}

.auth-form-area {
  padding: 48px;
}

.auth-form-area h1 {
  margin: 0;

  color: var(--navy);

  font-size: 32px;
  letter-spacing: -1px;
}

.auth-subtitle {
  margin: 8px 0 28px;

  color: var(--muted);

  line-height: 1.5;
}

/* ======================================================
   FORM
====================================================== */

.form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

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

.field label {
  color: var(--navy);

  font-size: 13px;
  font-weight: 800;
}

.input,
.select,
.textarea {
  width: 100%;

  min-height: 48px;

  padding: 0 13px;

  border: 1px solid #d6dfe8;
  border-radius: 10px;

  background: white;
  color: var(--text);

  outline: none;

  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--orange);

  box-shadow:
    0 0 0 3px rgba(255,90,10,.11);
}

.role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.role-option {
  position: relative;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-box {
  min-height: 92px;

  padding: 15px;

  display: flex;
  gap: 12px;
  align-items: center;

  border: 1px solid var(--line);
  border-radius: 13px;

  cursor: pointer;

  transition: .15s ease;
}

.role-option input:checked + .role-box {
  border-color: var(--orange);

  background: var(--orange-light);

  box-shadow:
    inset 0 0 0 1px var(--orange);
}

.role-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #eef4fa;
  color: var(--navy);

  font-size: 20px;
}

.role-box strong {
  display: block;

  color: var(--navy);

  font-size: 14px;
}

.role-box small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 11px;
}

.form-note {
  color: var(--muted);

  font-size: 12px;
  line-height: 1.5;
}

.auth-footer {
  margin-top: 22px;

  text-align: center;

  color: var(--muted);

  font-size: 14px;
}

.auth-footer a {
  color: var(--orange-dark);
  font-weight: 800;
}

/* ======================================================
   ALERTA
====================================================== */

.alert {
  display: none;

  padding: 12px 14px;

  margin-bottom: 17px;

  border-radius: 10px;

  font-size: 13px;
  line-height: 1.4;
}

.alert.show {
  display: block;
}

.alert-error {
  background: var(--red-light);
  color: var(--red);

  border: 1px solid #ffd3d3;
}

.alert-success {
  background: var(--green-light);
  color: var(--green);

  border: 1px solid #c8efd6;
}

/* ======================================================
   DASHBOARD
====================================================== */

.dashboard-page {
  min-height: calc(100vh - 72px);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 245px 1fr;

  min-height: calc(100vh - 72px);
}

.sidebar {
  padding: 24px 17px;

  background: var(--navy);
  color: white;
}

.sidebar-user {
  padding: 15px;

  margin-bottom: 25px;

  border-radius: 15px;

  background: rgba(255,255,255,.08);
}

.sidebar-user strong {
  display: block;
}

.sidebar-user small {
  display: block;

  margin-top: 4px;

  color: #b7c9da;

  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-nav {
  display: grid;
  gap: 5px;
}

.sidebar-link {
  min-height: 43px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 12px;

  border-radius: 9px;

  color: #d7e4ef;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255,255,255,.1);
  color: white;
}

.dashboard-main {
  padding: 34px;

  overflow: hidden;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 27px;
}

.dashboard-top h1 {
  margin: 0;

  color: var(--navy);

  font-size: 32px;
  letter-spacing: -1px;
}

.dashboard-top p {
  margin: 6px 0 0;

  color: var(--muted);
}

.stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap: 14px;
}

.stat-card {
  padding: 21px;

  border-radius: 16px;

  background: white;

  border: 1px solid var(--line);

  box-shadow:
    0 4px 15px rgba(7,31,61,.035);
}

.stat-label {
  color: var(--muted);

  font-size: 12px;
  font-weight: 700;
}

.stat-value {
  display: block;

  margin-top: 8px;

  color: var(--navy);

  font-size: 29px;
  font-weight: 900;
}

.stat-extra {
  margin-top: 5px;

  color: var(--muted);

  font-size: 11px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;

  gap: 16px;

  margin-top: 18px;
}

.panel {
  padding: 23px;

  background: white;

  border: 1px solid var(--line);
  border-radius: 17px;
}

.panel h2 {
  margin: 0;

  color: var(--navy);

  font-size: 19px;
}

.panel-desc {
  margin: 6px 0 20px;

  color: var(--muted);

  font-size: 13px;
}

.empty-state {
  min-height: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 20px;

  border: 1px dashed #ccd7e2;
  border-radius: 14px;

  background: #fafcfe;
}

.empty-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  background: var(--orange-light);
  color: var(--orange);

  font-size: 24px;
}

.empty-state strong {
  margin-top: 13px;
  color: var(--navy);
}

.empty-state p {
  max-width: 420px;

  margin: 6px 0 16px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.5;
}

.quick-actions {
  display: grid;
  gap: 9px;
}

.quick-action {
  min-height: 60px;

  padding: 11px 13px;

  display: flex;
  align-items: center;

  gap: 12px;

  border-radius: 12px;

  background: #f8fafc;

  border: 1px solid var(--line);

  text-decoration: none;
}

.quick-action-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: white;
  color: var(--orange);

  font-weight: 900;
}

.quick-action strong {
  display: block;

  color: var(--navy);

  font-size: 13px;
}

.quick-action small {
  color: var(--muted);

  font-size: 11px;
}

/* ======================================================
   ADMIN
====================================================== */

.admin-note {
  padding: 16px 18px;

  margin-bottom: 18px;

  border-radius: 13px;

  background: #eef5fb;
  color: var(--navy);

  border: 1px solid #d9e8f5;

  font-size: 13px;
  line-height: 1.5;
}

/* ======================================================
   FOOTER
====================================================== */

.site-footer {
  background: white;

  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 105px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  color: var(--muted);

  font-size: 12px;
}

.footer-brand {
  font-weight: 900;
  color: var(--navy);
}

/* ======================================================
   MOBILE DASH NAV
====================================================== */

.mobile-dashboard-nav {
  display: none;
}

/* ======================================================
   LOADING
====================================================== */

.loading-page {
  min-height: calc(100vh - 72px);

  display: grid;
  place-items: center;
}

.loader {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 4px solid #e4e9ef;
  border-top-color: var(--orange);

  animation: spin .8s linear infinite;
}

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

/* ======================================================
   RESPONSIVO
====================================================== */

@media (max-width: 1000px) {

  .hero-grid {
    gap: 35px;
  }

  .category-grid {
    grid-template-columns:
      repeat(3,minmax(0,1fr));
  }

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

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

@media (max-width: 820px) {

  .desktop-only {
    display: none !important;
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-grid {
    min-height: auto;

    grid-template-columns: 1fr;

    padding: 48px 0;
  }

  .hero h1 {
    letter-spacing: -2.2px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    min-height: 370px;
  }

  .section {
    padding: 58px 0;
  }

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

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-side {
    display: none;
  }

  .dashboard-shell {
    display: block;
  }

  .sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 24px 16px 95px;
  }

  .mobile-dashboard-nav {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 60;

    min-height: 67px;

    display: grid;
    grid-template-columns: repeat(4,1fr);

    background: white;

    border-top: 1px solid var(--line);

    box-shadow:
      0 -10px 30px rgba(7,31,61,.08);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    text-decoration: none;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
  }

  .mobile-nav-item strong {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-nav-item.active {
    color: var(--orange);
  }

  .footer-inner {
    flex-direction: column;

    justify-content: center;

    text-align: center;
  }
}

@media (max-width: 600px) {

  .container {
    width: min(100% - 24px, 1180px);
  }

  .logo {
    font-size: 22px;
  }

  .logo-mark {
    width: 31px;
    height: 31px;

    font-size: 19px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    min-height: 40px;

    padding: 0 12px;

    font-size: 12px;
  }

  .hero-grid {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visual-card {
    padding: 25px;

    min-height: 350px;

    border-radius: 25px;
  }

  .visual-title {
    margin-top: 40px;
  }

  .visual-title h2 {
    font-size: 29px;
  }

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

  .professional-mini {
    padding: 13px;
  }

  .category-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap: 10px;
  }

  .category-card {
    min-height: 137px;

    padding: 15px;
  }

  .auth-page {
    padding: 20px 0;
  }

  .auth-shell {
    width: min(100% - 20px,1060px);

    border-radius: 20px;
  }

  .auth-form-area {
    padding: 27px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .role-selector {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-top .btn {
    width: 100%;
  }

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

    gap: 10px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 24px;
  }
}

@media (max-width: 370px) {

  .hero h1 {
    font-size: 38px;
  }

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


/* SERVICERTO_ETAPA_31 */

/* ======================================================
   HOME 3.1
====================================================== */

.sc31-header {
  background: rgba(255,255,255,.97);
}

.sc31-header-inner {
  min-height: 66px;
}

.sc31-logo {
  font-size: 0;
  letter-spacing: 0;
}

.sc31-logo-pin {
  position: relative;

  width: 34px;
  height: 42px;

  margin-right: 7px;

  display: inline-flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 5px;

  border-radius: 50% 50% 50% 7px;

  transform: rotate(-6deg);

  background: #071f3d;
}

.sc31-logo-pin::after {
  content: "";

  position: absolute;

  width: 11px;
  height: 11px;

  left: 11px;
  bottom: 4px;

  background:
    linear-gradient(
      90deg,
      transparent 44%,
      #fff 44%,
      #fff 56%,
      transparent 56%
    ),
    linear-gradient(
      0deg,
      transparent 44%,
      #fff 44%,
      #fff 56%,
      transparent 56%
    );
}

.sc31-logo-check {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: white;
  color: #ff5a0a;

  font-size: 18px;
  font-weight: 1000;

  transform: rotate(6deg);
}

.sc31-logo-house {
  display: none;
}

.sc31-logo-text {
  color: #071f3d;

  font-size: 24px;
  font-weight: 900;

  letter-spacing: -1.2px;
}

.sc31-logo-text span {
  color: #ff5a0a;
}

.sc31-main-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 32px;
}

.sc31-main-nav a,
.sc31-login {
  color: #071f3d;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
}

.sc31-main-nav a:hover,
.sc31-login:hover {
  color: #ff5a0a;
}

.sc31-register {
  min-height: 40px;

  padding: 0 17px;

  border-radius: 8px;
}

.sc31-panel-btn {
  min-height: 40px;
}

.sc31-user-name {
  color: #617085;

  font-size: 13px;
  font-weight: 700;
}


/* HERO */

.sc31-home {
  background: white;
}

.sc31-hero {
  padding: 18px 0 0;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcfe 100%
    );
}

.sc31-hero-wrap {
  border: 1px solid #edf0f4;

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 13px 42px rgba(7,31,61,.08);
}

.sc31-hero-main {
  min-height: 425px;

  display: grid;
  grid-template-columns: 44% 56%;
}

.sc31-copy {
  position: relative;
  z-index: 5;

  padding: 49px 34px 28px 45px;

  background:
    radial-gradient(
      circle at 100% 10%,
      rgba(255,90,10,.07),
      transparent 34%
    ),
    white;
}

.sc31-eyebrow {
  display: inline-flex;

  padding: 7px 12px;

  border-radius: 999px;

  background: #fff2ec;
  color: #ff4f00;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .3px;
}

.sc31-copy h1 {
  max-width: 500px;

  margin: 17px 0 15px;

  color: #071f3d;

  font-size:
    clamp(37px, 3.4vw, 49px);

  line-height: 1.02;

  letter-spacing: -2.2px;
}

.sc31-copy h1 span {
  display: block;

  margin-top: 2px;

  color: #ff5a0a;
}

.sc31-copy > p {
  max-width: 470px;

  margin: 0;

  color: #53677d;

  font-size: 15px;
  line-height: 1.65;
}

.sc31-actions {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 24px;
}

.sc31-main-cta,
.sc31-secondary-cta {
  min-height: 46px;

  padding: 0 20px;

  border-radius: 9px;

  font-size: 13px;
}

.sc31-secondary-cta {
  border-color: #9aa9b9;
}

.sc31-benefits {
  display: flex;
  align-items: center;

  gap: 22px;

  margin-top: 34px;
}

.sc31-benefit {
  display: flex;
  align-items: center;

  gap: 8px;
}

.sc31-benefit > span {
  color: #071f3d;

  font-size: 24px;
  line-height: 1;
}

.sc31-benefit strong,
.sc31-benefit small {
  display: block;
}

.sc31-benefit strong {
  color: #071f3d;

  font-size: 10px;
}

.sc31-benefit small {
  margin-top: 1px;

  color: #68798b;

  font-size: 9px;
}


/* PROFISSIONAIS HERO */

.sc31-workers {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  background: #fff5ef;
}

.sc31-worker {
  position: relative;

  min-width: 0;

  overflow: hidden;
}

.sc31-worker-light {
  background:
    radial-gradient(
      circle at 50% 20%,
      #fff9f5 0,
      #fff3ec 42%,
      #ffffff 100%
    );
}

.sc31-worker-orange {
  background:
    linear-gradient(
      145deg,
      #ff791d,
      #ff5000
    );
}

.sc31-worker-photo {
  position: absolute;

  inset: 0;

  display: flex;
  justify-content: center;

  overflow: hidden;
}

.sc31-worker-photo > img {
  position: absolute;

  z-index: 3;

  top: 31px;
  left: 50%;

  width: 132px;
  height: 132px;

  transform: translateX(-50%);

  object-fit: cover;

  border-radius: 50%;

  border: 6px solid rgba(255,255,255,.87);

  box-shadow:
    0 12px 30px rgba(7,31,61,.13);
}

.sc31-worker-body {
  position: absolute;

  z-index: 2;

  left: 50%;
  bottom: -8px;

  width: 240px;
  height: 290px;

  transform: translateX(-50%);
}

.sc31-shirt,
.sc31-overall {
  position: absolute;

  left: 26px;
  right: 26px;
  top: 45px;
  bottom: 0;

  border-radius:
    95px 95px 18px 18px;

  background:
    linear-gradient(
      160deg,
      #123d65,
      #061e38
    );

  box-shadow:
    inset -25px -15px 40px rgba(0,0,0,.16);
}

.sc31-overall {
  background:
    linear-gradient(
      160deg,
      #485c69,
      #142c3e
    );
}

.sc31-shirt::before,
.sc31-overall::before {
  content: "";

  position: absolute;

  left: -28px;
  top: 55px;

  width: 80px;
  height: 175px;

  border-radius: 50px;

  background: inherit;

  transform: rotate(16deg);
}

.sc31-shirt::after,
.sc31-overall::after {
  content: "";

  position: absolute;

  right: -28px;
  top: 55px;

  width: 80px;
  height: 175px;

  border-radius: 50px;

  background: inherit;

  transform: rotate(-16deg);
}

.sc31-toolbelt {
  position: absolute;

  z-index: 5;

  left: 24px;
  right: 24px;
  bottom: 38px;

  height: 34px;

  display: flex;
  justify-content: center;

  gap: 7px;

  border-radius: 6px;

  background: #25313b;

  box-shadow:
    0 8px 14px rgba(0,0,0,.25);
}

.sc31-toolbelt span {
  width: 24px;
  height: 38px;

  margin-top: -11px;

  border-radius: 5px;

  background: #ff6a0a;

  border: 4px solid #27333d;
}

.sc31-slider {
  position: absolute;

  z-index: 10;

  left: 50%;
  top: 51%;

  display: flex;

  transform: translate(-50%,-50%);

  border-radius: 50px;

  overflow: hidden;

  background: white;

  box-shadow:
    0 6px 18px rgba(7,31,61,.14);
}

.sc31-slider button {
  width: 43px;
  height: 54px;

  border: 0;

  background: white;
  color: #071f3d;

  font-size: 29px;
}

.sc31-slider button:hover {
  background: #f7f8fa;
}


/* CATEGORIAS */

.sc31-category-strip {
  padding: 18px 26px 20px;

  border-top: 1px solid #edf0f4;

  background: white;
}

.sc31-category-strip h2 {
  margin: 0 0 16px;

  color: #071f3d;

  text-align: center;

  font-size: 17px;
  letter-spacing: -.4px;
}

.sc31-category-row {
  display: grid;

  grid-template-columns:
    repeat(7, minmax(0,1fr));

  gap: 5px;
}

.sc31-category {
  min-height: 71px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 8px;

  border-radius: 10px;

  color: #071f3d;

  text-decoration: none;

  transition:
    background .15s ease,
    transform .15s ease;
}

.sc31-category:hover {
  background: #fff5ef;

  transform: translateY(-2px);
}

.sc31-category > span {
  min-height: 25px;

  display: grid;
  place-items: center;

  color: #071f3d;

  font-size: 26px;
  font-weight: 900;
}

.sc31-category strong {
  text-align: center;

  font-size: 10px;
  font-weight: 800;
}

.sc31-more-icon {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: #f2f5f8;

  font-size: 21px !important;
}


/* COMO FUNCIONA */

.sc31-how {
  padding: 76px 0;

  background: #f8fafc;
}

.sc31-section-title {
  max-width: 600px;

  margin: 0 auto 37px;

  text-align: center;
}

.sc31-section-title > span,
.sc31-pro-badge {
  color: #ff5a0a;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .7px;
}

.sc31-section-title h2 {
  margin: 8px 0 10px;

  color: #071f3d;

  font-size: 34px;

  letter-spacing: -1.5px;
}

.sc31-section-title p {
  margin: 0;

  color: #68798b;

  font-size: 14px;
  line-height: 1.65;
}

.sc31-steps {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0,1fr));

  gap: 15px;
}

.sc31-steps article {
  position: relative;

  min-height: 220px;

  padding: 27px;

  border: 1px solid #e4eaf0;
  border-radius: 17px;

  background: white;
}

.sc31-step-number {
  position: absolute;

  right: 20px;
  top: 17px;

  color: #dfe6ed;

  font-size: 26px;
  font-weight: 900;
}

.sc31-step-icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #fff0e8;
  color: #ff5a0a;

  font-size: 20px;
  font-weight: 900;
}

.sc31-steps h3 {
  margin: 20px 0 8px;

  color: #071f3d;

  font-size: 17px;
}

.sc31-steps p {
  margin: 0;

  color: #6c7c8e;

  font-size: 13px;
  line-height: 1.6;
}


/* AREA PROFISSIONAL */

.sc31-pro-section {
  padding: 72px 0;

  background: white;
}

.sc31-pro-grid {
  display: grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap: 26px;
}

.sc31-pro-card {
  padding: 37px;

  border-radius: 22px;

  background: #071f3d;
  color: white;
}

.sc31-pro-card h2 {
  max-width: 430px;

  margin: 10px 0;

  font-size: 34px;

  letter-spacing: -1.3px;
}

.sc31-pro-card p {
  max-width: 490px;

  margin: 0 0 24px;

  color: #c3d0dd;

  font-size: 14px;
  line-height: 1.65;
}

.sc31-pro-stats {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;
}

.sc31-pro-stats > div {
  min-height: 145px;

  padding: 25px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 17px;

  border: 1px solid #e4eaf0;

  background: #f9fbfc;
}

.sc31-pro-stats strong {
  color: #ff5a0a;

  font-size: 28px;
}

.sc31-pro-stats span {
  color: #071f3d;

  font-size: 13px;
  font-weight: 800;
}


/* ======================================================
   DESKTOP GRANDE
====================================================== */

@media (min-width: 1280px) {

  .container {
    width: min(1140px, calc(100% - 48px));
  }
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 920px) {

  .sc31-hero-main {
    grid-template-columns: 1fr;
  }

  .sc31-copy {
    padding:
      44px 34px 34px;
  }

  .sc31-workers {
    min-height: 390px;
  }

  .sc31-benefits {
    flex-wrap: wrap;
  }

  .sc31-category-row {
    grid-template-columns:
      repeat(4,1fr);
  }

  .sc31-pro-grid {
    grid-template-columns: 1fr;
  }
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 620px) {

  .sc31-header-inner {
    min-height: 60px;
  }

  .sc31-logo-pin {
    width: 29px;
    height: 35px;
  }

  .sc31-logo-check {
    width: 20px;
    height: 20px;

    font-size: 14px;
  }

  .sc31-logo-text {
    font-size: 20px;
  }

  .sc31-register,
  .sc31-panel-btn {
    min-height: 37px;

    padding: 0 11px;

    font-size: 11px;
  }

  .sc31-hero {
    padding-top: 8px;
  }

  .sc31-hero-wrap {
    width: 100%;

    border-radius: 0;

    border-left: 0;
    border-right: 0;

    box-shadow: none;
  }

  .sc31-copy {
    padding:
      35px 20px 28px;

    text-align: center;
  }

  .sc31-copy h1 {
    max-width: 420px;

    margin:
      15px auto 13px;

    font-size: 37px;

    letter-spacing: -1.8px;
  }

  .sc31-copy > p {
    margin: auto;

    font-size: 14px;
  }

  .sc31-actions {
    display: grid;

    margin-top: 21px;
  }

  .sc31-actions .btn {
    width: 100%;
  }

  .sc31-benefits {
    display: grid;

    grid-template-columns:
      1fr 1fr;

    gap: 17px;

    margin-top: 27px;

    text-align: left;
  }

  .sc31-workers {
    min-height: 330px;
  }

  .sc31-worker-photo > img {
    top: 30px;

    width: 105px;
    height: 105px;
  }

  .sc31-worker-body {
    width: 185px;
    height: 230px;
  }

  .sc31-slider {
    top: 52%;
  }

  .sc31-slider button {
    width: 34px;
    height: 45px;
  }

  .sc31-category-strip {
    padding:
      17px 12px 19px;
  }

  .sc31-category-strip h2 {
    font-size: 15px;
  }

  .sc31-category-row {
    grid-template-columns:
      repeat(4,1fr);
  }

  .sc31-category {
    min-height: 70px;
  }

  .sc31-category:nth-child(n+5):not(:last-child) {
    display: none;
  }

  .sc31-how,
  .sc31-pro-section {
    padding: 52px 0;
  }

  .sc31-section-title h2 {
    font-size: 28px;
  }

  .sc31-steps {
    grid-template-columns: 1fr;
  }

  .sc31-pro-card {
    padding: 27px 22px;
  }

  .sc31-pro-card h2 {
    font-size: 29px;
  }

  .sc31-pro-stats {
    grid-template-columns:
      1fr 1fr;

    gap: 9px;
  }

  .sc31-pro-stats > div {
    min-height: 120px;

    padding: 17px;
  }
}


/* ======================================================
   CELULARES PEQUENOS
====================================================== */

@media (max-width: 390px) {

  .sc31-copy h1 {
    font-size: 33px;
  }

  .sc31-benefits {
    gap: 13px;
  }

  .sc31-category-row {
    grid-template-columns:
      repeat(3,1fr);
  }

  .sc31-category:nth-child(4) {
    display: none;
  }

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