:root {
  --azul-petroleo: #0F3D4A;
  --verde-seguranca: #2E7D5B;
  --laranja-tijolo: #E07A3F;
  --fundo-areia: #F5F1E8;
  --cinza-concreto: #6B7280;
  --grafite: #1F2933;
  --branco: #FFFFFF;
}

body {
  background: var(--fundo-areia);
  color: var(--grafite);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar-obracerta {
  background: var(--azul-petroleo);
  box-shadow: 0 10px 28px rgba(15, 61, 74, 0.18);
  padding-bottom: 8px;
  padding-top: 8px;
}

.navbar-brand-obracerta {
  align-items: center;
  display: inline-flex;
  min-height: 48px;
}

.navbar-brand-obracerta img {
  background: var(--branco);
  border-radius: 6px;
  display: block;
  height: 48px;
  padding: 6px 12px;
  width: auto;
}

.welcome-hero {
  background: var(--azul-petroleo);
  color: var(--branco);
  isolation: isolate;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  padding: 28px 0 24px;
  position: relative;
}

.tech-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.25));
  opacity: .7;
  position: absolute;
  z-index: -1;
}

.welcome-copy {
  max-width: 680px;
}

.welcome-logo {
  background: var(--branco);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  display: block;
  margin-bottom: 26px;
  max-width: 440px;
  padding: 14px 18px;
  width: 100%;
}

.welcome-hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  margin-bottom: 22px;
  max-width: 760px;
}

.welcome-hero .lead {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 30px;
}

.brand-stage {
  aspect-ratio: 1.3 / 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.brand-stage::before {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
  content: "";
  inset: 0;
  position: absolute;
}

.stage-node {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
  color: var(--azul-petroleo);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 132px;
  padding: 20px;
  position: absolute;
  z-index: 2;
}

.stage-node i {
  color: var(--verde-seguranca);
  font-size: 2.15rem;
}

.stage-node img {
  display: block;
  height: 74px;
  width: 74px;
}

.stage-node span {
  font-size: .9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.node-client {
  animation: floatNode 5.6s ease-in-out infinite;
  left: 7%;
  top: 16%;
}

.node-platform {
  animation: floatNode 5.6s ease-in-out .6s infinite;
  left: 50%;
  top: 36%;
  transform: translateX(-50%);
}

.node-pro {
  animation: floatNode 5.6s ease-in-out 1.2s infinite;
  right: 7%;
  top: 16%;
}

.stage-line {
  background: linear-gradient(90deg, transparent, var(--laranja-tijolo), transparent);
  height: 3px;
  opacity: .9;
  position: absolute;
  transform-origin: left center;
  z-index: 1;
}

.stage-line::after {
  animation: dataPulse 2.7s linear infinite;
  background: var(--branco);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 255, 255, .85);
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 10px;
}

.stage-line-one {
  left: 24%;
  top: 35%;
  transform: rotate(19deg);
  width: 214px;
}

.stage-line-two {
  right: 23%;
  top: 35%;
  transform: rotate(161deg);
  width: 214px;
}

.live-card {
  animation: riseIn 850ms ease both;
  background: rgba(255, 255, 255, .96);
  border-left: 6px solid var(--laranja-tijolo);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .2);
  color: var(--grafite);
  display: grid;
  gap: 8px;
  left: 50%;
  max-width: 360px;
  padding: 20px;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 58px);
  z-index: 3;
}

.live-card strong {
  color: var(--azul-petroleo);
  font-size: 1.25rem;
}

.live-card small {
  color: var(--cinza-concreto);
}

.live-pill {
  align-items: center;
  color: var(--verde-seguranca);
  display: inline-flex;
  font-size: .8rem;
  font-weight: 850;
  gap: 8px;
  text-transform: uppercase;
}

.live-pill::before {
  animation: statusBlink 1.8s ease-in-out infinite;
  background: var(--verde-seguranca);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.compact-hero {
  padding: 68px 0;
}

.hero-section {
  background: linear-gradient(120deg, var(--azul-petroleo), #164f5f);
  color: var(--branco);
  padding: 88px 0 72px;
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.eyebrow,
.section-heading span {
  color: var(--laranja-tijolo);
  display: inline-block;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.trust-panel {
  display: grid;
  gap: 16px;
}

.trust-card,
.feature-card,
.professional-card,
.step-card,
.admin-card,
.metric-card,
.form-container {
  background: var(--branco);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 61, 74, 0.1);
}

.trust-card {
  color: var(--grafite);
  display: grid;
  gap: 6px;
  padding: 22px;
}

.trust-card i,
.feature-card i {
  color: var(--verde-seguranca);
  font-size: 1.8rem;
}

.accent-orange i { color: var(--laranja-tijolo); }
.accent-teal i { color: var(--azul-petroleo); }

.section-pad {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
}

.feature-card,
.professional-card,
.step-card,
.admin-card,
.metric-card {
  padding: 24px;
}

.feature-card h3,
.professional-card h3,
.step-card h3,
.admin-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
}

.step-card span {
  align-items: center;
  background: var(--azul-petroleo);
  border-radius: 999px;
  color: var(--branco);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin-bottom: 16px;
  width: 36px;
}

.professionals-heading {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  text-align: left;
}

.professionals-heading > div {
  max-width: 720px;
}

.professional-carousel-shell {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
}

.professional-carousel {
  display: grid;
  gap: 24px;
  grid-auto-columns: minmax(280px, 356px);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 6px 4px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.professional-preview-card {
  color: var(--grafite);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  scroll-snap-align: start;
  text-decoration: none;
}

.professional-preview-card:hover {
  color: var(--grafite);
}

.professional-lock {
  align-items: center;
  border-top: 1px solid rgba(15, 61, 74, .08);
  color: var(--verde-seguranca);
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.professional-lock i {
  align-items: center;
  background: rgba(46, 125, 91, .1);
  border-radius: 999px;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.carousel-nav-btn {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(15, 61, 74, .12);
  color: var(--azul-petroleo);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.carousel-nav-btn:hover {
  border-color: var(--verde-seguranca);
  color: var(--verde-seguranca);
}

.connection-flow {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.flow-node {
  background: var(--branco);
  border: 1px solid rgba(15, 61, 74, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 61, 74, 0.08);
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 22px;
}

.flow-node i {
  color: var(--verde-seguranca);
  font-size: 2rem;
}

.flow-node strong {
  font-size: 1.15rem;
}

.flow-node span {
  color: var(--cinza-concreto);
}

.flow-node-highlight {
  border-color: rgba(224, 122, 63, 0.5);
}

.flow-node-highlight i {
  color: var(--laranja-tijolo);
}

.flow-arrow {
  align-items: center;
  color: var(--laranja-tijolo);
  display: flex;
  font-size: 1.7rem;
  justify-content: center;
}

.notice-band {
  align-items: flex-start;
  background: #fff7ed;
  border: 1px solid rgba(224, 122, 63, 0.35);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  padding: 26px;
}

.notice-band i {
  color: var(--laranja-tijolo);
  font-size: 2rem;
}

.notice-band h2 {
  font-size: 1.25rem;
  font-weight: 800;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span,
.tag-cloud a {
  background: var(--branco);
  border: 1px solid rgba(15, 61, 74, 0.16);
  border-radius: 999px;
  color: var(--grafite);
  padding: 10px 16px;
  text-decoration: none;
}

.tag-cloud a:hover {
  border-color: var(--verde-seguranca);
  color: var(--verde-seguranca);
}

.cta-band {
  align-items: center;
  background: var(--azul-petroleo);
  border-radius: 8px;
  color: var(--branco);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px;
}

.page-hero {
  background: var(--azul-petroleo);
  color: var(--branco);
  padding: 64px 0;
}

.form-container {
  max-width: 920px;
  padding: 28px;
}

.form-container.compact {
  max-width: 440px;
}

.oc-specialty-picker {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .14);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  max-height: 340px;
  overflow: auto;
  padding: 16px;
}

.oc-specialty-picker-profile {
  max-height: 250px;
}

.oc-specialty-empty {
  align-items: center;
  background: rgba(15, 61, 74, .04);
  border: 1px dashed rgba(15, 61, 74, .18);
  border-radius: 14px;
  color: #64748b;
  display: flex;
  min-height: 72px;
  padding: 16px;
}

.oc-specialty-group {
  border-bottom: 1px solid rgba(15, 61, 74, .08);
  padding-bottom: 14px;
}

.oc-specialty-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.oc-specialty-group strong {
  color: var(--azul-petroleo);
  display: block;
  font-size: .95rem;
  margin-bottom: 10px;
}

.oc-specialty-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oc-specialty-option {
  align-items: center;
  background: rgba(15, 61, 74, .035);
  border: 1px solid rgba(15, 61, 74, .08);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

.oc-specialty-option:hover {
  background: rgba(46, 125, 91, .08);
  border-color: rgba(46, 125, 91, .22);
}

.oc-specialty-option span {
  color: #20313b;
  font-size: .95rem;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .oc-specialty-options {
    grid-template-columns: 1fr;
  }
}

.footer-dark {
  background: var(--grafite);
  color: var(--branco);
}

.footer-dark a {
  color: var(--branco);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.admin-body {
  background: #eef2f4;
}

.admin-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.metric-card span {
  color: var(--cinza-concreto);
  display: block;
  font-size: 0.9rem;
}

.metric-card strong {
  color: var(--azul-petroleo);
  display: block;
  font-size: 2rem;
  line-height: 1.1;
}

.btn-success {
  background: var(--verde-seguranca);
  border-color: var(--verde-seguranca);
}

.btn-warning {
  background: var(--laranja-tijolo);
  border-color: var(--laranja-tijolo);
  color: var(--branco);
}

@media (max-width: 768px) {
  .professionals-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .professional-carousel {
    grid-auto-columns: minmax(252px, 84vw);
  }

  .carousel-nav-btn {
    display: none;
  }

  .navbar-brand-obracerta,
  .navbar-brand-obracerta img {
    height: 46px;
    min-height: 46px;
  }

  .welcome-hero {
    min-height: auto;
    padding: 48px 0;
  }

  .welcome-logo {
    max-width: 100%;
  }

  .brand-stage {
    aspect-ratio: auto;
    min-height: 500px;
  }

  .stage-node {
    min-width: 116px;
    padding: 16px;
  }

  .node-client {
    left: 50%;
    top: 7%;
    transform: translateX(-50%);
  }

  .node-platform {
    top: 35%;
  }

  .node-pro {
    left: 50%;
    right: auto;
    top: 62%;
    transform: translateX(-50%);
  }

  .stage-line-one,
  .stage-line-two {
    left: 50%;
    right: auto;
    top: 28%;
    transform: rotate(90deg);
    transform-origin: left center;
    width: 92px;
  }

  .stage-line-two {
    top: 55%;
  }

  .live-card {
    bottom: 16px;
  }

  .hero-section {
    padding: 56px 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .connection-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .node-client,
  .node-platform,
  .node-pro,
  .stage-line::after,
  .live-card,
  .live-pill::before {
    animation: none;
  }
}

@keyframes dataPulse {
  from { left: 0; }
  to { left: calc(100% - 10px); }
}

@keyframes floatNode {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .45;
    transform: scale(.75);
  }
}

.office-kicker {
  color: var(--verde-seguranca);
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.office-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.office-tabs a {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .12);
  border-radius: 8px;
  color: var(--azul-petroleo);
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.office-tabs a:hover {
  border-color: var(--verde-seguranca);
  color: var(--verde-seguranca);
}

.office-lock {
  align-items: center;
  display: grid;
  min-height: 56vh;
}

.office-lock > div {
  background: #fff;
  border-left: 6px solid var(--laranja-tijolo);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(15, 61, 74, .14);
  max-width: 720px;
  padding: 34px;
}

.office-health {
  border-radius: 8px;
  color: #fff;
  min-height: 220px;
  padding: 26px;
}

.office-health span {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  opacity: .8;
  text-transform: uppercase;
}

.office-health strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin: 18px 0;
}

.office-health-saudável {
  background: linear-gradient(135deg, #2E7D5B, #1F5B46);
}

.office-health-atenção {
  background: linear-gradient(135deg, #B7791F, #8A5A12);
}

.office-health-prejuízo {
  background: linear-gradient(135deg, #B42318, #7A271A);
}

.office-list-row {
  align-items: center;
  border-bottom: 1px solid rgba(15, 61, 74, .09);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 0;
}

.office-list-row:last-child {
  border-bottom: 0;
}

.office-list-row small {
  color: var(--cinza-concreto);
  display: block;
}

.office-category-bar {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.office-category-bar > div:first-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.office-stage-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.office-stage,
.office-expense {
  background: #F9FAFB;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.office-breakdown {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
}

.office-breakdown span {
  color: var(--cinza-concreto);
}

.obra-foto-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.obra-foto-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(120px, 160px));
}

.obra-foto-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .12);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 8px;
  text-decoration: none;
}

.obra-foto-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.proposal-sheet {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(15, 61, 74, .16);
  margin: 0 auto 40px;
  max-width: 980px;
  padding: 44px;
}

.proposal-header {
  align-items: start;
  border-bottom: 2px solid rgba(15, 61, 74, .12);
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 24px;
}

.proposal-header span,
.proposal-grid span {
  color: var(--verde-seguranca);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proposal-header h1 {
  color: var(--azul-petroleo);
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1.05;
  margin: 8px 0;
}

.proposal-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}

.proposal-grid > div {
  background: #F9FAFB;
  border: 1px solid rgba(15, 61, 74, .09);
  border-radius: 8px;
  padding: 14px;
}

.proposal-grid strong {
  color: var(--azul-petroleo);
  display: block;
  margin-top: 4px;
}

.proposal-grid small {
  color: var(--cinza-concreto);
  display: block;
}

.proposal-section {
  margin-top: 28px;
}

.proposal-section h2 {
  color: var(--azul-petroleo);
  font-size: 1.2rem;
  font-weight: 800;
}

.proposal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proposal-tags span {
  background: rgba(46, 125, 91, .1);
  border-radius: 999px;
  color: var(--verde-seguranca);
  font-weight: 700;
  padding: 7px 10px;
}

.oc-upgrade-modal {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(15, 61, 74, .28);
  overflow: hidden;
}

.oc-upgrade-modal .modal-body {
  padding: 34px;
}

.oc-upgrade-modal h2 {
  color: var(--azul-petroleo);
  font-size: 1.8rem;
  font-weight: 900;
}

.oc-upgrade-benefits {
  display: grid;
  gap: 8px;
}

.oc-upgrade-benefits span {
  align-items: center;
  color: var(--grafite);
  display: flex;
  font-weight: 700;
  gap: 8px;
}

.oc-upgrade-benefits i {
  color: var(--verde-seguranca);
}

.oc-plan-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.oc-plan-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .12);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 61, 74, .08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.oc-plan-card.is-current {
  border-color: var(--verde-seguranca);
  box-shadow: 0 22px 52px rgba(46, 125, 91, .18);
}

.oc-plan-head span,
.oc-plan-price small {
  color: var(--cinza-concreto);
  display: block;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.oc-plan-head h2 {
  color: var(--azul-petroleo);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 4px 0 0;
}

.oc-plan-price strong {
  color: var(--verde-seguranca);
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}

.oc-plan-features {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc-plan-features li {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}

.oc-plan-features i {
  color: var(--verde-seguranca);
}

.profile-showcase-photo {
  aspect-ratio: 1 / 1;
  background: #eef7f2;
  border: 1px solid rgba(15, 61, 74, .12);
  border-radius: 16px;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.profile-showcase-photo img,
.public-profile-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: translate(var(--photo-x, 0), var(--photo-y, 0)) scale(var(--photo-zoom, 1));
  transform-origin: center;
  width: 100%;
}

.profile-showcase-photo div,
.public-profile-photo div {
  color: var(--verde-seguranca);
  font-size: 4rem;
}

.portfolio-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.portfolio-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .12);
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.portfolio-card > div {
  padding: 14px;
}

.portfolio-card p {
  color: var(--cinza-concreto);
  margin: 6px 0 0;
}

.public-profile-hero {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 20px;
  box-shadow: 0 22px 58px rgba(15, 61, 74, .12);
  display: grid;
  gap: 28px;
  grid-template-columns: 210px 1fr;
  padding: 28px;
}

.public-profile-photo {
  aspect-ratio: 1 / 1;
  background: #eef7f2;
  border-radius: 16px;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.profile-crop-frame {
  position: relative;
}

.profile-crop-frame img {
  position: relative;
  z-index: 1;
}

.profile-crop-mask {
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px rgba(46, 125, 91, .36);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.profile-crop-controls {
  background: #f8fbfa;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.profile-crop-controls label {
  color: var(--grafite);
  font-size: .86rem;
  font-weight: 800;
}

.profile-crop-controls .form-range {
  display: block;
  margin-top: 4px;
}

.public-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-profile-page {
  margin-top: -12px;
}

.public-profile-hero-rich {
  align-items: stretch;
  gap: 26px;
  grid-template-columns: 230px minmax(0, 1fr);
}

.public-profile-hero-rich .public-profile-photo {
  align-self: start;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(15, 61, 74, .12);
}

.public-profile-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.public-profile-main h1 {
  color: var(--azul-petroleo);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.public-profile-meta {
  color: var(--cinza-concreto);
  font-weight: 700;
  margin: 0;
}

.public-profile-short {
  color: var(--grafite);
  margin: 0;
}

.public-profile-info-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.public-profile-info-grid > div {
  background: #f8fbfa;
  border: 1px solid rgba(15, 61, 74, .08);
  border-radius: 16px;
  padding: 13px 14px;
}

.public-profile-info-grid span {
  color: var(--verde-seguranca);
  display: block;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.public-profile-info-grid p {
  color: var(--grafite);
  font-size: .94rem;
  line-height: 1.45;
  margin: 0;
}

.public-profile-portfolio-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(15, 61, 74, .09);
  margin-top: 24px;
  padding: 24px;
}

.public-profile-section-heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.public-profile-section-heading h2 {
  color: var(--azul-petroleo);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
}

.public-profile-empty {
  background: #f8fbfa;
  border: 1px dashed rgba(46, 125, 91, .26);
  border-radius: 18px;
}

@media (max-width: 900px) {
  .proposal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .public-profile-hero,
  .public-profile-hero-rich {
    grid-template-columns: 1fr;
  }

  .public-profile-photo {
    max-width: 240px;
  }

  .public-profile-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .office-list-row,
  .proposal-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .proposal-sheet {
    padding: 24px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .navbar,
  .no-print,
  .alert {
    display: none !important;
  }

  .proposal-sheet {
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 0;
  }
}

/* Home publica ObraCerta */
.oc-home-page {
  background:
    radial-gradient(circle at 15% 4%, rgba(46, 125, 91, .22), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(87, 216, 116, .13), transparent 22%),
    linear-gradient(180deg, #051b24 0%, #082631 46%, #061c25 100%);
  color: #f7fafc;
  margin-bottom: -3rem;
}

.oc-home-page a {
  text-decoration: none;
}

.oc-home-hero {
  overflow: hidden;
  padding: 64px 0 34px;
  position: relative;
}

.oc-home-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 78%);
  pointer-events: none;
  position: absolute;
}

.oc-home-hero-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .98fr);
  position: relative;
  z-index: 1;
}

.oc-home-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .94;
  margin: 18px 0 20px;
  max-width: 650px;
}

.oc-home-copy h1 span,
.oc-home-tagline {
  color: #65df7d;
}

.oc-home-kicker,
.oc-home-section-heading span {
  color: #75ee92;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.oc-home-tagline {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 760;
  line-height: 1.22;
  margin-bottom: 14px;
  max-width: 600px;
}

.oc-home-lead {
  color: rgba(232, 242, 245, .82);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 630px;
}

.oc-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.oc-home-btn {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.oc-home-btn:hover {
  transform: translateY(-2px);
}

.oc-home-btn-primary {
  background: linear-gradient(135deg, #65df7d, #31b960);
  box-shadow: 0 20px 42px rgba(49, 185, 96, .28);
  color: #062116;
}

.oc-home-btn-outline {
  border: 1px solid rgba(101, 223, 125, .46);
  color: #eefbf2;
}

.oc-home-btn-outline:hover {
  border-color: #65df7d;
  color: #fff;
}

.oc-home-stage {
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.oc-home-stage::after {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 20px);
  content: "";
  inset: 0;
  opacity: .22;
  pointer-events: none;
  position: absolute;
}

.oc-home-orbit {
  border: 1px solid rgba(101, 223, 125, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(101, 223, 125, .08);
  position: absolute;
}

.oc-home-orbit-lg {
  height: 420px;
  left: 17%;
  top: 92px;
  width: 420px;
}

.oc-home-orbit-sm {
  height: 270px;
  left: 31%;
  top: 170px;
  width: 270px;
}

.oc-floating-card {
  background: rgba(248,250,252,.98);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,.25);
  color: #102532;
  padding: 20px;
  position: absolute;
  z-index: 2;
}

.oc-floating-card h3 {
  color: #102532;
  font-size: 1.05rem;
  font-weight: 900;
  margin: 10px 0 4px;
}

.oc-floating-card p,
.oc-floating-card small {
  color: #576777;
}

.oc-card-label {
  align-items: center;
  display: flex;
  gap: 10px;
}

.oc-card-label i {
  align-items: center;
  background: rgba(46, 125, 91, .12);
  border-radius: 10px;
  color: #2e7d5b;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.oc-status-pill {
  background: rgba(46, 125, 91, .12);
  border-radius: 999px;
  color: #238354;
  display: inline-flex;
  font-size: .8rem;
  font-weight: 850;
  margin-top: 12px;
  padding: 7px 11px;
}

.oc-status-warn {
  background: rgba(245, 191, 75, .18);
  color: #94620d;
}

.oc-card-request {
  left: 54px;
  top: 32px;
  transform: rotate(4deg);
  width: 260px;
}

.oc-card-pro {
  right: 34px;
  top: 44px;
  transform: rotate(-4deg);
  width: 260px;
}

.oc-card-platform {
  align-items: center;
  background: linear-gradient(180deg, rgba(11,74,82,.97), rgba(8,44,57,.97));
  border-color: rgba(101, 223, 125, .24);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
  left: 50%;
  text-align: center;
  top: 185px;
  transform: translateX(-50%);
  width: 250px;
}

.oc-card-platform img {
  height: 58px;
  margin-bottom: 12px;
}

.oc-card-platform strong {
  color: #fff;
  font-size: 1.35rem;
}

.oc-card-platform p {
  color: rgba(255,255,255,.78);
  margin: 8px 0 0;
}

.oc-platform-check {
  align-items: center;
  background: #65df7d;
  border-radius: 999px;
  color: #073117;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 34px;
}

.oc-card-contact {
  bottom: 78px;
  left: 28px;
  width: 245px;
}

.oc-card-budget {
  bottom: 74px;
  right: 26px;
  width: 245px;
}

/* Pagina Como funciona */
.oc-how-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 125, 91, .18), transparent 28%),
    linear-gradient(180deg, #eef5f1 0%, #f8fbfa 42%, #eef5f1 100%);
  color: #102532;
  margin-bottom: -3rem;
}

.oc-how-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(101, 223, 125, .2), transparent 24%),
    linear-gradient(135deg, #061c25 0%, #0b3b46 54%, #092831 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 58px;
  position: relative;
}

.oc-how-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 82%);
  pointer-events: none;
  position: absolute;
}

.oc-how-hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  position: relative;
  z-index: 1;
}

.oc-how-kicker,
.oc-how-heading span {
  color: #75ee92;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.oc-how-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.15rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .95;
  margin: 18px 0 18px;
  max-width: 760px;
}

.oc-how-subtitle {
  color: #65df7d;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.24;
  margin-bottom: 14px;
  max-width: 720px;
}

.oc-how-lead {
  color: rgba(236, 247, 249, .82);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 710px;
}

.oc-how-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.oc-how-hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.oc-how-hero-card::before {
  border: 1px solid rgba(101, 223, 125, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 54px rgba(101, 223, 125, .08);
  content: "";
  height: 310px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 310px;
}

.oc-how-mini-card {
  background: rgba(248, 250, 252, .97);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  box-shadow: 0 24px 52px rgba(0,0,0,.22);
  color: #102532;
  display: grid;
  gap: 4px;
  padding: 18px;
  position: absolute;
  width: 230px;
  z-index: 2;
}

.oc-how-mini-card i {
  align-items: center;
  background: rgba(46, 125, 91, .12);
  border-radius: 12px;
  color: #2e7d5b;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin-bottom: 4px;
  width: 36px;
}

.oc-how-mini-card strong {
  color: #102532;
  font-weight: 950;
}

.oc-how-mini-card small {
  color: #64748b;
}

.oc-how-mini-request {
  left: 26px;
  top: 34px;
  transform: rotate(-3deg);
}

.oc-how-mini-pro {
  bottom: 34px;
  right: 26px;
  transform: rotate(3deg);
}

.oc-how-core {
  align-items: center;
  background: linear-gradient(180deg, rgba(11,74,82,.98), rgba(7,38,49,.98));
  border: 1px solid rgba(101, 223, 125, .24);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 7px;
  left: 50%;
  min-height: 190px;
  padding: 24px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  z-index: 3;
}

.oc-how-core img {
  background: #fff;
  border-radius: 14px;
  height: 56px;
  padding: 8px;
  width: 56px;
}

.oc-how-core strong {
  font-size: 1.25rem;
  font-weight: 950;
}

.oc-how-core span {
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}

.oc-how-section {
  padding: 66px 0;
}

.oc-how-light {
  background: rgba(255,255,255,.68);
}

.oc-how-heading {
  margin: 0 auto 32px;
  max-width: 760px;
  text-align: center;
}

.oc-how-heading h2 {
  color: #0f3d4a;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 10px 0 0;
}

.oc-how-steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oc-how-step {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(15, 61, 74, .09);
  min-height: 280px;
  padding: 28px 24px;
  position: relative;
}

.oc-how-step:not(:last-child)::after {
  align-items: center;
  background: #65df7d;
  border-radius: 999px;
  color: #062116;
  content: "\F138";
  display: inline-flex;
  font-family: "bootstrap-icons";
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  z-index: 2;
}

.oc-how-step > span {
  color: rgba(15, 61, 74, .16);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.oc-how-step i {
  align-items: center;
  background: rgba(46, 125, 91, .11);
  border-radius: 18px;
  color: #2e7d5b;
  display: inline-flex;
  font-size: 1.8rem;
  height: 58px;
  justify-content: center;
  margin: 20px 0 18px;
  width: 58px;
}

.oc-how-step h3,
.oc-how-truth-card h3,
.oc-how-path-card h3 {
  color: #0f3d4a;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.18;
}

.oc-how-step p,
.oc-how-path-card p,
.oc-how-notebook-copy p,
.oc-how-final-panel p {
  color: #5d6b78;
  line-height: 1.65;
}

.oc-how-truth-grid,
.oc-how-path-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oc-how-truth-card,
.oc-how-path-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 74, .1);
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(15, 61, 74, .08);
  padding: 30px;
}

.oc-how-truth-muted {
  background: #fbfcfb;
}

.oc-how-truth-icon,
.oc-how-path-card > i {
  align-items: center;
  background: rgba(46, 125, 91, .1);
  border-radius: 18px;
  color: #2e7d5b;
  display: inline-flex;
  font-size: 1.75rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}

.oc-how-truth-muted .oc-how-truth-icon {
  background: rgba(224, 122, 63, .12);
  color: #b76632;
}

.oc-how-truth-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.oc-how-truth-card li {
  color: #334451;
  line-height: 1.45;
  padding-left: 30px;
  position: relative;
}

.oc-how-truth-card li::before {
  color: #2e7d5b;
  content: "\F26A";
  font-family: "bootstrap-icons";
  font-weight: 400;
  left: 0;
  position: absolute;
  top: 1px;
}

.oc-how-truth-muted li::before {
  color: #b76632;
  content: "\F623";
}

.oc-how-path-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.oc-how-path-card .oc-home-btn {
  margin-top: auto;
}

.oc-how-path-card .oc-home-btn-outline {
  border-color: rgba(46, 125, 91, .38);
  color: #0f3d4a;
}

.oc-how-path-card .oc-home-btn-outline:hover {
  background: rgba(46, 125, 91, .08);
  color: #0f3d4a;
}

.oc-how-notebook {
  padding-top: 24px;
}

.oc-how-notebook-panel,
.oc-how-final-panel {
  background:
    radial-gradient(circle at 96% 8%, rgba(101, 223, 125, .18), transparent 25%),
    linear-gradient(135deg, #082631 0%, #0f3d4a 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  box-shadow: 0 26px 72px rgba(15, 61, 74, .18);
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: .92fr 1fr;
  overflow: hidden;
  padding: 34px;
}

.oc-how-notebook-copy h2,
.oc-how-final-panel h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 12px 0 14px;
}

.oc-how-notebook-copy p,
.oc-how-final-panel p {
  color: rgba(236, 247, 249, .82);
  font-size: 1.04rem;
}

.oc-how-notebook-copy small {
  color: #c5f6d0;
  display: block;
  font-weight: 750;
  line-height: 1.5;
  margin-top: 18px;
}

.oc-how-feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oc-how-feature-grid div {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  min-height: 78px;
  padding: 16px;
}

.oc-how-feature-grid i {
  align-items: center;
  background: rgba(101, 223, 125, .14);
  border-radius: 14px;
  color: #75ee92;
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.oc-how-feature-grid span {
  color: #fff;
  font-weight: 850;
}

.oc-how-final {
  padding-top: 10px;
}

.oc-how-final-panel {
  align-items: center;
  grid-template-columns: 1fr auto;
}

.oc-how-final-panel .oc-how-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .oc-how-hero-grid,
  .oc-how-notebook-panel,
  .oc-how-final-panel {
    grid-template-columns: 1fr;
  }

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

  .oc-how-step::after {
    display: none !important;
  }

  .oc-how-final-panel .oc-how-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .oc-how-hero {
    padding: 46px 0 42px;
  }

  .oc-how-hero-card {
    min-height: auto;
    padding: 18px;
  }

  .oc-how-hero-card::before {
    display: none;
  }

  .oc-how-mini-card,
  .oc-how-core {
    margin-bottom: 14px;
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .oc-how-core {
    min-height: auto;
  }

  .oc-how-section {
    padding: 44px 0;
  }

  .oc-how-steps,
  .oc-how-truth-grid,
  .oc-how-path-grid,
  .oc-how-feature-grid {
    grid-template-columns: 1fr;
  }

  .oc-how-step {
    min-height: auto;
  }

  .oc-how-notebook-panel,
  .oc-how-final-panel {
    border-radius: 24px;
    padding: 24px;
  }

  .oc-how-actions .oc-home-btn {
    width: 100%;
  }
}

.oc-mini-profile {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.oc-mini-profile > span,
.oc-avatar {
  align-items: center;
  background: linear-gradient(135deg, #e8f7ef, #cceedd);
  border: 1px solid rgba(46, 125, 91, .18);
  border-radius: 50%;
  color: #0f3d4a;
  display: inline-flex;
  font-weight: 950;
  height: 56px;
  justify-content: center;
  text-transform: uppercase;
  width: 56px;
}

.oc-mini-profile small i {
  color: #f5bf4b;
}

.oc-inline-action {
  border: 1px solid rgba(46, 125, 91, .24);
  border-radius: 12px;
  color: #2e7d5b;
  display: inline-flex;
  font-weight: 850;
  margin-top: 8px;
  padding: 8px 12px;
}

.oc-trust-strip {
  align-items: stretch;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.oc-trust-strip > div {
  align-items: center;
  display: grid;
  gap: 4px 14px;
  grid-template-columns: auto 1fr;
  padding: 22px 26px;
}

.oc-trust-strip > div + div {
  border-left: 1px solid rgba(255,255,255,.12);
}

.oc-trust-strip i {
  color: #65df7d;
  font-size: 2rem;
  grid-row: span 2;
}

.oc-trust-strip strong {
  color: #fff;
  line-height: 1.15;
}

.oc-trust-strip small {
  color: rgba(232,242,245,.72);
}

.oc-home-section {
  padding: 58px 0;
}

.oc-home-section-heading {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.oc-home-section-heading h2,
.oc-professionals-heading h2,
.oc-home-cta-panel h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.oc-flow-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.oc-flow-card {
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 34px 24px 28px;
  position: relative;
  text-align: center;
}

.oc-flow-card span {
  align-items: center;
  background: linear-gradient(135deg, #65df7d, #32b960);
  border-radius: 999px;
  color: #062116;
  display: inline-flex;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 38px;
}

.oc-flow-card i {
  align-items: center;
  color: #c5f6d0;
  display: flex;
  font-size: 2.8rem;
  justify-content: center;
  margin: 0 0 20px;
  min-height: 52px;
}

.oc-flow-card h3 {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.18rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1.18;
  margin: 0 0 12px;
  min-height: 44px;
}

.oc-flow-card p,
.oc-home-cta-panel p {
  color: rgba(232,242,245,.72);
}

.oc-flow-card p {
  line-height: 1.55;
  margin: 0 auto;
  max-width: 230px;
}

.oc-service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(8, 1fr);
}

.oc-service-tile {
  align-items: center;
  background: #f7fbfa;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  color: #0f3d4a;
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 128px;
  padding: 20px 12px;
  text-align: center;
}

.oc-service-tile:hover {
  color: #2e7d5b;
  transform: translateY(-2px);
}

.oc-service-tile i {
  color: #2e7d5b;
  font-size: 2.3rem;
}

.oc-home-professionals {
  border-top: 1px solid rgba(255,255,255,.08);
}

.oc-professionals-heading {
  margin-bottom: 24px;
}

.oc-section-link {
  color: #81ef98;
  font-weight: 850;
}

.oc-section-link:hover {
  color: #fff;
}

.oc-pro-preview-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #f7fafc;
  min-height: 300px;
}

.oc-pro-preview-card:hover {
  color: #fff;
}

.oc-pro-preview-card h3 {
  color: #fff;
  margin-top: 16px;
}

.oc-pro-preview-card p,
.oc-pro-preview-card small {
  color: rgba(232,242,245,.72);
}

.oc-pro-preview-card strong {
  color: #9df0b1;
}

.oc-pro-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.oc-pro-preview-card .professional-lock {
  border-top-color: rgba(255,255,255,.12);
  color: #9df0b1;
}

.oc-carousel-nav {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.oc-home-cta-panel {
  align-items: center;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  display: grid;
  gap: 28px;
  grid-template-columns: 270px 1fr auto;
  padding: 28px;
}

.oc-home-cta-visual {
  align-items: center;
  background: linear-gradient(135deg, rgba(101,223,125,.24), rgba(224,122,63,.2));
  border-radius: 20px;
  color: #c8f8d3;
  display: flex;
  font-size: 5rem;
  height: 160px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .oc-home-hero-grid,
  .oc-home-cta-panel {
    grid-template-columns: 1fr;
  }

  .oc-home-stage {
    min-height: 560px;
  }

  .oc-flow-grid,
  .oc-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .oc-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .oc-home-hero {
    padding-top: 42px;
  }

  .oc-home-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .oc-home-stage {
    min-height: 740px;
  }

  .oc-floating-card {
    left: 18px !important;
    right: 18px !important;
    top: auto;
    transform: none;
    width: auto;
  }

  .oc-card-request { top: 18px; }
  .oc-card-pro { top: 168px; }
  .oc-card-platform { left: 50% !important; top: 320px; transform: translateX(-50%); width: 210px; }
  .oc-card-contact { bottom: 150px; }
  .oc-card-budget { bottom: 18px; }

  .oc-home-orbit-lg,
  .oc-home-orbit-sm {
    left: 50%;
    transform: translateX(-50%);
  }

  .oc-trust-strip,
  .oc-flow-grid,
  .oc-service-grid {
    grid-template-columns: 1fr;
  }

  .oc-trust-strip > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

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

  .oc-carousel-nav {
    display: none;
  }

  .oc-home-cta-panel {
    padding: 22px;
  }
}

/* Base publica no visual do print */
.oc-public-body {
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 181, 106, .09), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(224, 122, 63, .08), transparent 22%),
    #f6f8f7;
}

.oc-site-header {
  background: rgba(5, 27, 36, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  z-index: 1040;
}

.oc-site-header .navbar {
  min-height: 92px;
  padding: 0;
}

.oc-site-nav {
  align-items: center;
}

.oc-site-brand {
  align-items: center;
  display: inline-flex;
  min-height: 72px;
}

.oc-site-brand img {
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .2));
  height: 54px;
  max-width: 236px;
  object-fit: contain;
  width: auto;
}

.oc-site-menu {
  gap: 22px;
}

.oc-site-link {
  color: rgba(244, 250, 252, .9);
  display: inline-flex;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 12px 0;
  position: relative;
  text-decoration: none;
  transition: color .18s ease;
}

.oc-site-link::after {
  background: linear-gradient(90deg, #65df7d, #35b56a);
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.4);
  transition: opacity .18s ease, transform .18s ease;
}

.oc-site-link:hover,
.oc-site-link.active {
  color: #fff;
}

.oc-site-link:hover::after,
.oc-site-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.oc-site-cta {
  align-items: center;
  background: linear-gradient(135deg, #65df7d, #35b56a);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(53, 181, 106, .28);
  color: #062116;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  padding: 14px 25px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.oc-site-cta:hover,
.oc-site-cta.active {
  box-shadow: 0 22px 48px rgba(53, 181, 106, .34);
  color: #062116;
  transform: translateY(-2px);
}

.oc-site-toggler {
  border-color: rgba(255, 255, 255, .24);
  border-radius: 14px;
  padding: 10px 12px;
}

.oc-public-main {
  min-height: 58vh;
}

.oc-site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(101, 223, 125, .12), transparent 24%),
    linear-gradient(180deg, #082631, #051b24);
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  padding: 46px 0 28px;
}

.oc-footer-grid {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr .7fr .7fr .7fr;
}

.oc-footer-brand img {
  height: 54px;
  margin-bottom: 18px;
  width: auto;
}

.oc-footer-brand p {
  color: rgba(232, 242, 245, .74);
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
}

.oc-footer-links h6,
.oc-footer-social h6 {
  color: #fff;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.oc-footer-links a {
  color: rgba(232, 242, 245, .7);
  display: block;
  font-weight: 700;
  margin: 8px 0;
  text-decoration: none;
}

.oc-footer-links a:hover {
  color: #65df7d;
}

.oc-footer-social > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oc-footer-social a {
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: rgba(232, 242, 245, .82);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  width: 42px;
}

.oc-footer-social a:hover {
  background: rgba(101, 223, 125, .15);
  color: #65df7d;
}

.oc-footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(232, 242, 245, .66);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
}

.oc-footer-bottom a {
  color: rgba(232, 242, 245, .7);
  font-size: .92rem;
  margin-left: 22px;
  text-decoration: none;
}

.oc-footer-bottom a:hover {
  color: #65df7d;
}

.footer-dark {
  border-radius: 0;
}

@media (max-width: 991px) {
  .oc-site-header .navbar {
    min-height: 76px;
    padding: 8px 0;
  }

  .oc-site-brand {
    min-height: 56px;
  }

  .oc-site-brand img {
    height: 46px;
    max-width: 205px;
  }

  .oc-site-menu {
    align-items: stretch !important;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    gap: 0;
    margin-top: 12px;
    padding: 12px;
  }

  .oc-site-link {
    border-radius: 14px;
    padding: 12px 14px;
  }

  .oc-site-link::after {
    display: none;
  }

  .oc-site-link:hover,
  .oc-site-link.active {
    background: rgba(255, 255, 255, .08);
  }

  .oc-site-cta {
    margin-top: 10px;
    width: 100%;
  }

  .oc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .oc-footer-grid {
    grid-template-columns: 1fr;
  }

  .oc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .oc-footer-bottom a {
    display: inline-flex;
    margin: 0 18px 0 0;
  }
}

/* Ajustes de proporcao para paginas internas */
.oc-flash-wrap {
  padding-top: 14px;
}

.oc-site-header .navbar {
  min-height: 78px;
}

.oc-site-brand {
  min-height: 58px;
}

.oc-site-brand img {
  height: 44px;
  max-width: 210px;
}

.oc-site-menu {
  gap: 20px;
}

.oc-site-link {
  font-size: .95rem;
  padding: 10px 0;
}

.oc-site-cta {
  min-height: 50px;
  padding: 12px 23px;
}

.page-hero,
.hero-section:not(.oc-home-hero),
.welcome-hero {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 18px 42px rgba(18, 60, 70, .14);
  padding: 52px 0 58px;
}

.page-hero.compact-hero,
.compact-hero {
  padding: 42px 0 46px;
}

.page-hero h1,
.hero-section h1,
.welcome-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.page-hero p,
.hero-section p,
.welcome-hero p {
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 760px;
}

.page-hero::after,
.hero-section::after,
.welcome-hero::after {
  height: 230px;
  opacity: .58;
  right: -70px;
  top: -80px;
  width: 230px;
}

.page-hero::before,
.hero-section::before,
.welcome-hero::before {
  bottom: -92px;
  height: 210px;
  left: -78px;
  opacity: .5;
  width: 210px;
}

.page-hero {
  padding: 34px 0 38px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 8px;
}

.page-hero p {
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 720px;
}

.page-hero::after {
  height: 170px;
  right: -48px;
  top: -64px;
  width: 170px;
}

.page-hero::before {
  bottom: -76px;
  height: 170px;
  left: -58px;
  width: 170px;
}

.page-hero + .section-pad,
.hero-section + .section-pad,
.welcome-hero + .section-pad {
  padding-top: 34px;
}

.page-hero + .section-pad {
  padding-top: 24px;
}

.section-pad {
  padding-bottom: 52px;
}

@media (max-width: 767px) {
  .page-hero,
  .hero-section:not(.oc-home-hero),
  .welcome-hero {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    padding: 38px 0 42px;
  }

  .page-hero + .section-pad,
  .hero-section + .section-pad,
  .welcome-hero + .section-pad {
    padding-top: 22px;
  }

  .page-hero {
    padding: 30px 0 34px;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }
}

/* Refinamento premium da home */
@media (min-width: 992px) {
  .oc-site-header .navbar {
    min-height: 84px;
  }

  .oc-site-brand {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 15px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    min-height: 58px;
    padding: 7px 15px;
  }

  .oc-site-brand img {
    filter: none;
    height: 45px;
    max-width: 230px;
  }

  .oc-site-menu {
    gap: 24px;
  }

  .oc-site-link {
    color: rgba(244, 250, 252, .82);
    font-size: .95rem;
    font-weight: 720;
    padding: 10px 0;
  }

  .oc-site-link::after {
    bottom: 0;
    height: 2px;
  }

  .oc-site-cta {
    font-weight: 820;
    min-height: 52px;
    padding: 13px 26px;
  }

  .oc-home-hero {
    min-height: calc(100vh - 96px);
    padding: 32px 0 20px;
  }

  .oc-home-hero-grid {
    align-items: center;
    gap: 42px;
    grid-template-columns: minmax(0, .48fr) minmax(540px, .52fr);
    min-height: 508px;
  }

  .oc-home-copy {
    max-width: 620px;
  }

  .oc-home-copy h1 {
    font-size: clamp(3.05rem, 4.55vw, 5rem);
    line-height: .96;
    margin: 14px 0 16px;
    max-width: 620px;
  }

  .oc-home-kicker,
  .oc-home-section-heading span {
    font-size: .72rem;
    letter-spacing: .16em;
  }

  .oc-home-tagline {
    font-size: clamp(1.17rem, 1.65vw, 1.62rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .oc-home-lead {
    font-size: 1.02rem;
    line-height: 1.58;
    margin-bottom: 0;
  }

  .oc-home-actions {
    margin-top: 24px;
  }

  .oc-home-btn {
    min-height: 50px;
    padding: 12px 22px;
  }

  .oc-home-stage {
    align-self: center;
    border-radius: 30px;
    min-height: 500px;
  }

  .oc-home-orbit-lg {
    height: 360px;
    left: 19%;
    top: 72px;
    width: 360px;
  }

  .oc-home-orbit-sm {
    height: 230px;
    left: 34%;
    top: 138px;
    width: 230px;
  }

  .oc-floating-card {
    border-radius: 21px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
    padding: 16px;
  }

  .oc-floating-card h3 {
    font-size: .96rem;
    line-height: 1.18;
    margin: 8px 0 4px;
  }

  .oc-floating-card p {
    font-size: .88rem;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .oc-floating-card small {
    font-size: .78rem;
    line-height: 1.35;
  }

  .oc-card-label {
    gap: 8px;
  }

  .oc-card-label i {
    border-radius: 9px;
    height: 30px;
    width: 30px;
  }

  .oc-card-label strong {
    font-size: .84rem;
    line-height: 1.2;
  }

  .oc-status-pill {
    font-size: .72rem;
    margin-top: 8px;
    padding: 6px 10px;
  }

  .oc-card-request {
    left: 36px;
    top: 34px;
    transform: rotate(3deg);
    width: 224px;
    z-index: 3;
  }

  .oc-card-pro {
    right: 28px;
    top: 38px;
    transform: rotate(-3deg);
    width: 236px;
    z-index: 3;
  }

  .oc-card-platform {
    height: 198px;
    left: 50%;
    padding: 18px;
    top: 158px;
    transform: translateX(-50%);
    width: 208px;
    z-index: 5;
  }

  .oc-card-platform img {
    height: 47px;
    margin-bottom: 10px;
  }

  .oc-card-platform strong {
    font-size: 1.15rem;
  }

  .oc-card-platform p {
    font-size: .84rem;
    line-height: 1.38;
    margin-top: 7px;
  }

  .oc-platform-check {
    height: 30px;
    right: -9px;
    top: -9px;
    width: 30px;
  }

  .oc-card-contact {
    bottom: 38px;
    left: 34px;
    width: 216px;
    z-index: 2;
  }

  .oc-card-budget {
    bottom: 38px;
    right: 30px;
    width: 220px;
    z-index: 2;
  }

  .oc-mini-profile {
    gap: 10px;
    margin-top: 11px;
  }

  .oc-mini-profile > span,
  .oc-avatar {
    height: 48px;
    width: 48px;
  }

  .oc-inline-action {
    border-radius: 10px;
    font-size: .8rem;
    margin-top: 5px;
    padding: 7px 10px;
  }

  .oc-trust-strip {
    border-radius: 20px;
    margin-top: 14px;
  }

  .oc-trust-strip > div {
    padding: 14px 20px;
  }

  .oc-trust-strip i {
    font-size: 1.65rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .oc-home-hero-grid {
    grid-template-columns: minmax(0, .46fr) minmax(500px, .54fr);
  }

  .oc-home-stage {
    min-height: 500px;
  }

  .oc-card-request {
    left: 24px;
    width: 214px;
  }

  .oc-card-pro {
    right: 20px;
    width: 224px;
  }

  .oc-card-contact {
    left: 24px;
    width: 205px;
  }

  .oc-card-budget {
    right: 20px;
    width: 210px;
  }
}

@media (max-width: 760px) {
  .oc-home-hero {
    overflow: visible;
    padding: 36px 0 26px;
  }

  .oc-home-stage {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 14px;
    min-height: 0;
    overflow: visible;
  }

  .oc-home-stage::after,
  .oc-home-orbit {
    display: none;
  }

  .oc-floating-card,
  .oc-card-request,
  .oc-card-pro,
  .oc-card-platform,
  .oc-card-contact,
  .oc-card-budget {
    bottom: auto !important;
    left: auto !important;
    position: relative;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  .oc-card-platform {
    height: auto;
    min-height: 190px;
    order: 3;
  }

  .oc-card-request { order: 1; }
  .oc-card-pro { order: 2; }
  .oc-card-contact { order: 4; }
  .oc-card-budget { order: 5; }
}

/* Area profissional ObraCerta */
.oc-pro-body {
  background:
    radial-gradient(circle at 10% -8%, rgba(53, 181, 106, .16), transparent 32%),
    radial-gradient(circle at 90% -10%, rgba(224, 122, 63, .08), transparent 26%),
    linear-gradient(180deg, #eef6f2 0%, #f7faf8 42%, #f2f6f4 100%);
  color: #1f2933;
  min-height: 100vh;
}

.oc-pro-navbar {
  background: rgba(5, 27, 36, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 48px rgba(5, 27, 36, .18);
  backdrop-filter: blur(18px);
}

.oc-pro-nav-inner {
  gap: 18px;
  max-width: 1480px;
  padding: 12px 28px;
}

.oc-pro-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.oc-pro-brand:hover {
  color: #fff;
}

.oc-pro-brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #65df7d, #35b56a);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(53, 181, 106, .28);
  color: #062116;
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.oc-pro-brand strong,
.oc-pro-brand small {
  display: block;
  line-height: 1.05;
}

.oc-pro-brand strong {
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0;
}

.oc-pro-brand small {
  color: rgba(232, 242, 245, .74);
  font-size: .78rem;
  font-weight: 750;
  margin-top: 3px;
}

.oc-pro-menu {
  align-items: center;
  gap: 6px;
}

.oc-pro-nav-link {
  align-items: center;
  border-radius: 999px;
  color: rgba(244, 250, 252, .76);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 720;
  gap: 7px;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}

.oc-pro-nav-link i {
  color: #9df0b1;
}

.oc-pro-nav-link:hover,
.oc-pro-nav-link.active {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.oc-pro-nav-link.active {
  box-shadow: inset 0 0 0 1px rgba(101, 223, 125, .22);
}

.oc-pro-logout {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(244, 250, 252, .88);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.oc-pro-logout:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.oc-pro-toggler {
  border-color: rgba(255,255,255,.22);
  border-radius: 14px;
}

.oc-pro-shell {
  padding: 28px 18px 54px;
}

.oc-pro-page {
  margin: 0 auto;
  max-width: 1340px;
}

.oc-pro-hero {
  align-items: flex-end;
  background:
    radial-gradient(circle at 88% 12%, rgba(101, 223, 125, .16), transparent 26%),
    linear-gradient(135deg, #082631 0%, #0f3d4a 56%, #1f7a61 100%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 60, 70, .16);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.oc-pro-hero::after {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
  height: 260px;
  position: absolute;
  right: -90px;
  top: -115px;
  width: 260px;
}

.oc-pro-hero > * {
  position: relative;
  z-index: 1;
}

.oc-pro-kicker {
  align-items: center;
  color: #bff4d2;
  display: inline-flex;
  font-size: .76rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.oc-pro-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.oc-pro-hero p {
  color: rgba(244, 250, 252, .8);
  font-size: 1.04rem;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 760px;
}

.oc-pro-hero small {
  color: rgba(244, 250, 252, .72);
  display: inline-flex;
  margin-top: 12px;
}

.oc-pro-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: fit-content;
}

.oc-metric-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 24px;
}

.oc-metric-card,
.oc-panel-card,
.oc-work-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(18, 60, 70, .09);
}

.oc-metric-card {
  min-height: 140px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.oc-metric-card i {
  align-items: center;
  background: #eaf8f0;
  border-radius: 16px;
  color: #2e7d5b;
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 48px;
}

.oc-metric-card span {
  color: #6b7280;
  display: block;
  font-size: .82rem;
  font-weight: 850;
  margin-right: 56px;
}

.oc-metric-card strong {
  color: #0f3d4a;
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 34px;
}

.oc-dashboard-grid,
.oc-work-detail-grid,
.oc-profile-layout {
  display: grid;
  gap: 24px;
}

.oc-dashboard-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, .75fr);
}

.oc-work-detail-grid {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
}

.oc-profile-layout {
  align-items: start;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
}

.oc-profile-main {
  display: grid;
  gap: 24px;
}

.oc-panel-card {
  padding: 24px;
}

.oc-panel-heading {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.oc-panel-heading h2,
.oc-form-section h2,
.oc-profile-side h2 {
  color: #0f3d4a;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
}

.oc-panel-heading p {
  color: #6b7280;
  margin: 6px 0 0;
}

.oc-panel-link {
  color: #2e7d5b;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.oc-lead-list,
.oc-action-list {
  display: grid;
  gap: 12px;
}

.oc-lead-row {
  align-items: center;
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 14px;
}

.oc-lead-row strong {
  color: #0f3d4a;
  display: block;
  font-weight: 900;
}

.oc-lead-row small {
  color: #6b7280;
}

.oc-lead-hero {
  align-items: flex-end;
}

.oc-lead-detail-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.oc-lead-main {
  display: grid;
  gap: 24px;
}

.oc-lead-summary-card {
  position: sticky;
  top: 104px;
}

.oc-lead-avatar {
  align-items: center;
  background: linear-gradient(135deg, #e8f7ef, #c5f6d0);
  border: 1px solid rgba(46, 125, 91, .2);
  border-radius: 24px;
  color: #0f3d4a;
  display: inline-flex;
  font-size: 2.3rem;
  font-weight: 950;
  height: 86px;
  justify-content: center;
  text-transform: uppercase;
  width: 86px;
}

.oc-lead-summary-card .oc-status-badge {
  float: right;
  margin-top: 8px;
}

.oc-lead-summary-card h2 {
  clear: both;
  color: #0f3d4a;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 18px 0 4px;
}

.oc-lead-summary-card > p {
  color: #64748b;
  margin-bottom: 18px;
}

.oc-lead-contact-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.oc-lead-info-list {
  display: grid;
  gap: 10px;
}

.oc-lead-info-list div {
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  display: grid;
  gap: 3px;
  padding: 13px 14px;
}

.oc-lead-info-list span {
  color: #718096;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.oc-lead-info-list strong {
  color: #102532;
  font-size: .96rem;
  line-height: 1.35;
}

.oc-lead-message {
  background:
    linear-gradient(180deg, rgba(46, 125, 91, .07), rgba(46, 125, 91, .035));
  border: 1px solid rgba(46, 125, 91, .16);
  border-radius: 20px;
  color: #20313b;
  font-size: 1.03rem;
  line-height: 1.7;
  padding: 22px;
  white-space: pre-line;
}

.oc-lead-update-card textarea {
  min-height: 126px;
}

.oc-lead-timeline {
  display: grid;
  gap: 14px;
}

.oc-lead-timeline-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 18px minmax(0, 1fr);
  position: relative;
}

.oc-lead-timeline-item::before {
  background: #d9e9e0;
  bottom: -14px;
  content: "";
  left: 8px;
  position: absolute;
  top: 18px;
  width: 2px;
}

.oc-lead-timeline-item:last-child::before {
  display: none;
}

.oc-lead-timeline-item > span {
  background: #65df7d;
  border: 3px solid #e8f7ef;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(46, 125, 91, .2);
  height: 18px;
  margin-top: 3px;
  width: 18px;
}

.oc-lead-timeline-item > div {
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
}

.oc-lead-timeline-item strong {
  color: #0f3d4a;
  display: block;
  font-weight: 900;
}

.oc-lead-timeline-item small {
  color: #718096;
  display: block;
  margin-top: 3px;
}

.oc-lead-timeline-item p {
  color: #4b5f6d;
  margin: 8px 0 0;
  white-space: pre-line;
}

.oc-action-list a {
  align-items: center;
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  color: #0f3d4a;
  display: flex;
  gap: 12px;
  padding: 14px;
  text-decoration: none;
}

.oc-action-list a:hover {
  border-color: rgba(53, 181, 106, .38);
  color: #2e7d5b;
}

.oc-action-list i {
  align-items: center;
  background: #eaf8f0;
  border-radius: 13px;
  color: #2e7d5b;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.oc-status-badge {
  align-items: center;
  background: #eaf8f0;
  border: 1px solid rgba(53, 181, 106, .18);
  border-radius: 999px;
  color: #1d7448;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  padding: 8px 11px;
  white-space: nowrap;
}

.oc-status-badge.bg-primary,
.oc-status-badge.bg-info {
  background: #e8f4f7 !important;
  border-color: rgba(15, 61, 74, .12);
  color: #0f3d4a !important;
}

.oc-status-badge.bg-warning {
  background: #fff7e6 !important;
  border-color: rgba(245, 158, 11, .2);
  color: #8a5200 !important;
}

.oc-status-badge.bg-success,
.oc-status-badge.status-concluida {
  background: #eaf8f0 !important;
  border-color: rgba(53, 181, 106, .24);
  color: #1d7448 !important;
}

.oc-status-badge.bg-danger,
.oc-status-badge.status-cancelada {
  background: #fdecee !important;
  border-color: rgba(220, 53, 69, .18);
  color: #842029 !important;
}

.oc-status-badge.bg-dark,
.oc-status-badge.bg-secondary,
.oc-status-badge.status-pausada {
  background: #eef4f2 !important;
  border-color: #dce5e2;
  color: #42515a !important;
}

.oc-status-badge.status-em_andamento {
  background: #e8f4f7;
  border-color: rgba(15, 61, 74, .14);
  color: #0f3d4a;
}

.oc-empty-state {
  align-items: center;
  color: #6b7280;
  display: grid;
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.oc-empty-state i {
  align-items: center;
  background: #eaf8f0;
  border-radius: 18px;
  color: #2e7d5b;
  display: inline-flex;
  font-size: 1.8rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 14px;
  width: 58px;
}

.oc-empty-state strong {
  color: #0f3d4a;
  font-weight: 950;
}

.oc-empty-state p {
  margin: 6px 0 0;
}

.oc-info-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.oc-info-grid > div {
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}

.oc-info-grid span {
  color: #6b7280;
  display: block;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.oc-info-grid strong {
  color: #0f3d4a;
  display: block;
  margin-top: 4px;
}

.oc-crm-table {
  border-radius: 20px;
}

.oc-crm-table .table {
  margin: 0;
}

.oc-crm-table thead th {
  background: #f4f8f6;
  border-bottom: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 14px;
  text-transform: uppercase;
}

.oc-crm-table tbody td {
  border-color: #edf0ef;
  padding: 16px 14px;
}

.oc-form-section {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.oc-form-section:last-of-type {
  border-bottom: 0;
}

.oc-form-section h2 {
  margin-bottom: 16px;
}

.oc-work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.oc-work-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.oc-work-card-top,
.oc-work-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.oc-work-card-top small {
  color: #6b7280;
}

.oc-work-card h2 {
  color: #0f3d4a;
  font-size: 1.28rem;
  font-weight: 950;
  margin: 0;
}

.oc-work-meta {
  display: grid;
  gap: 9px;
}

.oc-work-meta span {
  align-items: center;
  color: #42515a;
  display: inline-flex;
  gap: 8px;
}

.oc-work-meta i {
  color: #2e7d5b;
}

.oc-timeline {
  display: grid;
  gap: 16px;
}

.oc-timeline-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 150px minmax(0, 1fr);
  position: relative;
}

.oc-timeline-date {
  align-content: start;
  display: grid;
  gap: 8px;
}

.oc-timeline-date strong {
  color: #0f3d4a;
  font-size: .98rem;
}

.oc-timeline-content {
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 18px;
}

.oc-timeline-content h3 {
  color: #0f3d4a;
  font-size: 1.1rem;
  font-weight: 950;
  margin: 0 0 10px;
}

.oc-timeline-content p {
  color: #42515a;
}

.oc-timeline-notes {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.oc-timeline-notes div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
}

.oc-timeline-notes strong,
.oc-timeline-notes span {
  display: block;
}

.oc-timeline-notes strong {
  color: #0f3d4a;
  font-size: .86rem;
  margin-bottom: 4px;
}

.oc-timeline-notes span {
  color: #42515a;
}

.oc-upload-box {
  align-items: center;
  background: #f8fbfa;
  border: 1px dashed rgba(46, 125, 91, .32);
  border-radius: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
}

.oc-upload-box > i {
  align-items: center;
  background: #eaf8f0;
  border-radius: 18px;
  color: #2e7d5b;
  display: inline-flex;
  font-size: 2rem;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.oc-pro-alert {
  align-items: flex-start;
  border: 0;
  border-radius: 20px;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 18px;
}

.oc-pro-alert i {
  font-size: 1.35rem;
}

.oc-pro-alert-info {
  background: #eaf6f8;
  color: #0f3d4a;
}

.oc-pro-alert p {
  margin: 4px 0 0;
}

.oc-report-card {
  max-width: 960px;
}

.oc-profile-side {
  position: sticky;
  top: 104px;
}

.oc-profile-side .profile-showcase-photo {
  margin-top: 16px;
}

.oc-profile-preview-card {
  background:
    radial-gradient(circle at 86% 6%, rgba(101, 223, 125, .18), transparent 34%),
    linear-gradient(135deg, #082631, #0f3d4a);
  border-radius: 22px;
  color: #fff;
  margin-top: 18px;
  padding: 18px;
}

.oc-profile-preview-card strong,
.oc-profile-preview-card small {
  display: block;
}

.oc-profile-preview-card strong {
  font-size: 1.15rem;
  font-weight: 950;
  margin-top: 12px;
}

.oc-profile-preview-card p,
.oc-profile-preview-card small {
  color: rgba(244, 250, 252, .76);
}

.oc-profile-preview-card p {
  margin: 8px 0;
}

.portfolio-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portfolio-card {
  background: #f8fbfa;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.portfolio-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.portfolio-card > div {
  padding: 14px;
}

.portfolio-card strong {
  color: #0f3d4a;
  display: block;
  font-weight: 950;
}

.portfolio-card p {
  color: #6b7280;
  margin: 6px 0 12px;
}

@media (max-width: 1199px) {
  .oc-pro-nav-inner {
    padding: 10px 18px;
  }

  .oc-pro-menu {
    align-items: stretch;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    gap: 4px;
    margin: 14px 0;
    padding: 10px;
  }

  .oc-pro-nav-link {
    border-radius: 14px;
    justify-content: flex-start;
    width: 100%;
  }

  .oc-pro-logout {
    margin-bottom: 8px;
    width: 100%;
  }

  .oc-dashboard-grid,
  .oc-work-detail-grid,
  .oc-lead-detail-layout,
  .oc-profile-layout {
    grid-template-columns: 1fr;
  }

  .oc-lead-summary-card,
  .oc-profile-side {
    position: static;
  }
}

@media (max-width: 767px) {
  .oc-pro-shell {
    padding: 18px 12px 42px;
  }

  .oc-pro-hero {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
    padding: 22px;
  }

  .oc-pro-hero-actions {
    justify-content: stretch;
    width: 100%;
  }

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

  .oc-panel-card {
    border-radius: 20px;
    padding: 18px;
  }

  .oc-lead-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .oc-info-grid {
    grid-template-columns: 1fr;
  }

  .oc-timeline-item {
    grid-template-columns: 1fr;
  }

  .oc-upload-box {
    grid-template-columns: 1fr;
  }

  .oc-work-card-top,
  .oc-work-actions,
  .oc-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
