/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
}

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

body {
  color: #17324d;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, #dff7f2, transparent 35%),
    #f7fafc;
}

button {
  font: inherit;
}

.home {
  min-height: 100vh;
}

.topbar {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0d9488;
}

.brand strong {
  color: #17324d;
  font-size: 23px;
}

.topbar button {
  padding: 10px 20px;
  border: 1px solid #cbd8df;
  border-radius: 12px;
  color: #17324d;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 100px);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  grid-gap: 70px;
  gap: 70px;
  margin: 0 auto;
  padding: 60px 0 110px;
}

.hero-copy > span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 18px 0;
  font-size: clamp(45px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 630px;
  margin: 0;
  color: #64778a;
  font-size: 19px;
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.actions button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 22px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  background: #0d9488;
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.22);
}

.actions small {
  color: #64778a;
  font-weight: 700;
}

.hero-card {
  padding: 34px;
  border: 1px solid #d9e6e4;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 70px rgba(22, 50, 77, 0.12);
}

.hero-card > svg {
  padding: 10px;
  border-radius: 14px;
  color: #0d9488;
  background: #e7f8f4;
}

.hero-card h2 {
  margin: 22px 0;
  font-size: 27px;
}

.hero-card ul {
  display: grid;
  grid-gap: 17px;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #52687c;
  font-weight: 700;
}

.hero-card li svg {
  color: #0d9488;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 35px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

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

a {
  color: inherit;
  text-decoration: none;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-nav > a {
  color: #52687c;
  font-weight: 700;
}

.primary-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 15px 25px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 15px;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(3, 71, 65, 0.34);
  background:
    linear-gradient(
      145deg,
      #21b9aa 0%,
      #0d9a8e 44%,
      #087d74 100%
    );
  box-shadow:
    0 10px 24px rgba(8, 127, 114, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(3, 79, 72, 0.22);
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.primary-action::before {
  position: absolute;
  z-index: -1;
  inset: 1px 2px 48%;
  border-radius: 13px 13px 45% 45%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0)
  );
}

.primary-action::after {
  position: absolute;
  z-index: -1;
  inset: auto 8% 3px;
  height: 1px;
  pointer-events: none;
  content: "";
  background: rgba(255, 255, 255, 0.16);
}

.primary-action:hover {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 14px 30px rgba(8, 127, 114, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -2px 4px rgba(3, 79, 72, 0.2);
}

.primary-action:active {
  filter: brightness(0.98);
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 6px 15px rgba(8, 127, 114, 0.2),
    inset 0 2px 5px rgba(3, 79, 72, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.primary-action:focus-visible {
  outline: 3px solid rgba(32, 185, 169, 0.3);
  outline-offset: 5px;
}

.simple-header {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52687c;
  font-weight: 700;
}

.registration-page,
.marketplace-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

.registration-intro,
.marketplace-hero {
  width: min(900px, calc(100% - 40px));
  margin: 65px auto 35px;
  text-align: center;
}

.registration-intro > span,
.marketplace-hero > span,
.success-message > span,
.card-preview-area > span,
.results-heading span,
.form-section-title span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.registration-intro h1,
.marketplace-hero h1,
.success-message h1 {
  margin: 13px 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.registration-intro p,
.marketplace-hero p,
.success-message p {
  margin: 0 auto;
  max-width: 680px;
  color: #64778a;
  font-size: 18px;
  line-height: 1.6;
}

.company-form {
  display: grid;
  width: min(980px, calc(100% - 40px));
  grid-gap: 22px;
  gap: 22px;
  margin: 0 auto;
}

.form-section {
  padding: 30px;
  border: 1px solid #dce8e6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(23, 50, 77, 0.07);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: #0d9488;
}

.form-section-title h2 {
  margin: 4px 0 0;
  color: #17324d;
  font-size: 23px;
}

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

.field {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #52687c;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d4e0e5;
  border-radius: 12px;
  outline: none;
  color: #17324d;
  font: inherit;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.field textarea {
  resize: vertical;
}

.logo-upload {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px dashed #9ccbc5;
  border-radius: 15px;
  cursor: pointer;
  background: #f6fcfb;
}

.logo-upload > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.logo-upload-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  color: #0d9488;
  background: #e5f7f3;
}

.logo-upload-icon img,
.preview-logo-note img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-upload div:last-child {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.logo-upload span {
  color: #64778a;
  font-size: 13px;
}

.form-error {
  padding: 14px 17px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #991b1b;
  font-weight: 700;
  background: #fef2f2;
}

.form-submit-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 28px;
  border-radius: 20px;
  color: #ffffff;
  background: #17324d;
}

.form-submit-area > div {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
}

.form-submit-area span {
  color: #c7d4df;
  font-size: 14px;
}

.form-submit-area button,
.marketplace-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  background: #0d9488;
}

.form-submit-area button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.spin {
  animation: spin 0.8s linear infinite;
}

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

.registration-success {
  display: grid;
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  grid-gap: 55px;
  gap: 55px;
  margin: 80px auto;
}

.success-message > svg {
  margin-bottom: 20px;
  color: #0d9488;
}

.success-message h1 {
  font-size: clamp(36px, 5vw, 54px);
}

.trial-notice {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  margin: 25px 0;
  padding: 17px;
  border-radius: 14px;
  color: #0f766e;
  background: #e8f8f5;
}

.secondary-link {
  display: inline-flex;
  padding: 12px 17px;
  border: 1px solid #ccdbe0;
  border-radius: 12px;
  font-weight: 800;
  background: #ffffff;
}

.card-preview-area {
  display: grid;
  grid-gap: 17px;
  gap: 17px;
}

.preview-logo-note {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-logo-note img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
}

.preview-logo-note small {
  color: #64778a;
}

.company-card {
  display: grid;
  grid-gap: 19px;
  gap: 19px;
  padding: 24px;
  border: 1px solid #d9e6e4;
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(23, 50, 77, 0.09);
}

.company-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-logo {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce8e6;
  border-radius: 17px;
  color: #0d9488;
  font-size: 21px;
  font-weight: 900;
  background: #edf9f7;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-card-heading {
  min-width: 0;
}

.company-name-line {
  display: flex;
  align-items: center;
  gap: 7px;
}

.company-name-line h2 {
  overflow: hidden;
  margin: 0;
  font-size: 21px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verified-icon {
  flex: 0 0 auto;
  color: #0d9488;
}

.company-card-heading p {
  margin: 5px 0 0;
  color: #64778a;
  font-size: 14px;
  font-weight: 700;
}

.company-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #52687c;
  font-weight: 700;
}

.company-description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #64778a;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.company-service-area {
  color: #52687c;
  font-size: 14px;
}

.company-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding-top: 17px;
  border-top: 1px solid #e7eeee;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pending {
  color: #92400e;
  background: #fff7df;
}

.status-active {
  color: #0f766e;
  background: #e4f8f4;
}

.company-card-footer button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  background: #0d9488;
}

.company-card-footer button:disabled {
  color: #7b8a98;
  background: #edf1f3;
}

.marketplace-search {
  display: grid;
  max-width: 850px;
  grid-template-columns: 1fr 1fr auto;
  grid-gap: 10px;
  gap: 10px;
  margin: 30px auto 0;
  padding: 10px;
  border: 1px solid #d9e5e4;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(23, 50, 77, 0.08);
}

.marketplace-search label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  color: #8292a0;
}

.marketplace-search input {
  width: 100%;
  padding: 11px 0;
  border: 0;
  outline: none;
  color: #17324d;
  font: inherit;
}

.marketplace-results {
  width: min(1180px, calc(100% - 40px));
  margin: 55px auto 0;
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.results-heading h2 {
  margin: 6px 0 0;
}

.results-heading > a,
.marketplace-state > a {
  padding: 11px 15px;
  border-radius: 11px;
  color: #ffffff;
  font-weight: 800;
  background: #0d9488;
}

.company-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 21px;
  gap: 21px;
}

.marketplace-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  grid-gap: 11px;
  gap: 11px;
  padding: 35px;
  border: 1px dashed #cbdcda;
  border-radius: 22px;
  color: #64778a;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.marketplace-state h3,
.marketplace-state p {
  margin: 0;
}

.marketplace-error {
  color: #991b1b;
  border-color: #fecaca;
  background: #fef2f2;
}

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

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

  .marketplace-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .home-nav > a {
    display: none;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .form-section {
    padding: 22px 18px;
  }

  .form-submit-area,
  .results-heading,
  .company-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .company-card-grid {
    grid-template-columns: 1fr;
  }

  .registration-intro,
  .marketplace-hero {
    margin-top: 35px;
  }

  .registration-intro h1,
  .marketplace-hero h1 {
    font-size: 40px;
  }
}

/* SITE PUBLICO COMPLETO */

.public-navigation {
  display: flex;
  align-items: center;
  gap: 23px;
}

.public-navigation a {
  color: #52687c;
  font-size: 14px;
  font-weight: 750;
}

.login-coming-soon {
  padding: 10px 20px;
  border: 1px solid #cbd8df;
  border-radius: 12px;
  color: #17324d;
  font-weight: 800;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.78);
}

.hero-secondary-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 22px;
  border: 1px solid #c4d3dc;
  border-radius: 15px;
  color: #17324d;
  font-weight: 850;
  letter-spacing: -0.01em;
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f8fbfc 48%,
      #eaf1f5 100%
    );
  box-shadow:
    0 10px 24px rgba(23, 50, 77, 0.13),
    inset 0 1px 0 #ffffff,
    inset 0 -2px 4px rgba(102, 130, 146, 0.13);
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.hero-secondary-action::before {
  position: absolute;
  z-index: -1;
  inset: 1px 2px 48%;
  border-radius: 13px 13px 45% 45%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0)
  );
}

.hero-secondary-action::after {
  position: absolute;
  z-index: -1;
  inset: auto 8% 3px;
  height: 1px;
  pointer-events: none;
  content: "";
  background: rgba(13, 148, 136, 0.12);
}

.hero-secondary-action:hover {
  border-color: #9fc9c4;
  color: #087f72;
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 14px 30px rgba(23, 50, 77, 0.16),
    inset 0 1px 0 #ffffff,
    inset 0 -2px 4px rgba(102, 130, 146, 0.11);
}

.hero-secondary-action:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 6px 15px rgba(23, 50, 77, 0.11),
    inset 0 2px 5px rgba(102, 130, 146, 0.13),
    inset 0 1px 0 #ffffff;
}

.hero-secondary-action:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.2);
  outline-offset: 5px;
}

.hero-plan-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #52687c;
  font-size: 14px;
  font-weight: 750;
}

.hero-plan-note svg {
  color: #0d9488;
}

.public-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.public-section-heading > span,
.public-purpose-section article > span,
.public-how-section article > span,
.audience-panel > span,
.predyon-integration-copy > span,
.predyon-flow-card > span,
.plan-copy > span,
.price-card > span,
.trust-section > div > span,
.final-cta-section > span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.public-section-heading h2,
.plan-copy h2,
.trust-section h2,
.final-cta-section h2,
.predyon-integration-copy h2 {
  margin: 13px 0;
  color: #17324d;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.public-section-heading p,
.plan-copy > p,
.trust-section p,
.final-cta-section p,
.predyon-integration-copy > p {
  margin: 0;
  color: #64778a;
  font-size: 17px;
  line-height: 1.7;
}

.public-purpose-section,
.public-how-section,
.categories-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0;
}

.public-purpose-section {
  border-top: 1px solid #dfebe9;
}

.purpose-grid,
.steps-grid {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

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

.purpose-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 225px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(102, 236, 217, 0.42),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #18aa9c 0%,
      #0b9185 48%,
      #08756d 100%
    );
  box-shadow:
    0 18px 38px rgba(8, 117, 109, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -3px 8px rgba(3, 72, 67, 0.22);
  transform: translateY(0);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.purpose-grid article::before {
  position: absolute;
  z-index: -1;
  inset: 1px 2px 52%;
  border-radius: 21px 21px 55% 55%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.19),
    rgba(255, 255, 255, 0)
  );
}

.purpose-grid article::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.035),
    0 0 0 48px rgba(255, 255, 255, 0.025);
}

.purpose-grid article:hover {
  filter: saturate(1.07) brightness(1.03);
  transform: translateY(-5px);
  box-shadow:
    0 25px 48px rgba(8, 117, 109, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(3, 72, 67, 0.2);
}

.purpose-grid article > svg {
  box-sizing: content-box;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 18px rgba(3, 80, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.purpose-grid h3 {
  margin: 21px 0 10px;
  color: #ffffff;
  font-size: 21px;
  text-shadow: 0 1px 2px rgba(3, 65, 61, 0.24);
}

.purpose-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

.steps-grid article {
  padding: 28px;
  border: 1px solid #dce8e6;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(23, 50, 77, 0.06);
}

.steps-grid article > svg {
  padding: 9px;
  border-radius: 12px;
  color: #0d9488;
  background: #e8f8f5;
}

.steps-grid h3 {
  margin: 20px 0 9px;
  color: #17324d;
  font-size: 21px;
}

.steps-grid p {
  margin: 0;
  color: #64778a;
  line-height: 1.65;
}

.public-how-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: #17324d;
}

.public-how-section .public-section-heading h2 {
  color: #ffffff;
}

.public-how-section .public-section-heading p {
  color: #bdcad5;
}

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

.steps-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 245px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 15% 5%,
      rgba(137, 184, 215, 0.28),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #3b6381 0%,
      #2d506d 52%,
      #223f59 100%
    );
  box-shadow:
    0 18px 38px rgba(4, 22, 37, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -3px 8px rgba(8, 31, 49, 0.3);
  transform: translateY(0);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.steps-grid article::before {
  position: absolute;
  z-index: -1;
  inset: 1px 2px 52%;
  border-radius: 21px 21px 55% 55%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.19),
    rgba(255, 255, 255, 0)
  );
}

.steps-grid article::after {
  position: absolute;
  right: -62px;
  bottom: -82px;
  z-index: -1;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.035),
    0 0 0 48px rgba(255, 255, 255, 0.025);
}

.steps-grid article:hover {
  filter: saturate(1.07) brightness(1.04);
  transform: translateY(-5px);
  box-shadow:
    0 25px 48px rgba(2, 22, 35, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -3px 8px rgba(15, 65, 101, 0.24);
}

.steps-grid article > svg {
  box-sizing: content-box;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 18px rgba(3, 80, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.steps-grid article > strong {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 2px rgba(3, 65, 61, 0.18);
}

.steps-grid h3 {
  margin-top: 21px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(3, 65, 61, 0.24);
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

.public-audiences-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
  margin: 0 auto;
  padding: 105px 0;
}

.audience-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.audience-panel > * {
  position: relative;
  z-index: 2;
}

.audience-panel::before {
  position: absolute;
  z-index: 1;
  inset: 1px 2px 54%;
  border-radius: 26px 26px 55% 55%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0)
  );
}

.audience-panel::after {
  position: absolute;
  right: -80px;
  bottom: -105px;
  z-index: 1;
  width: 235px;
  height: 235px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.audience-panel:hover {
  transform: translateY(-5px);
}

.customer-panel {
  border: 1px solid #d5e3e6;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(13, 148, 136, 0.09),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fbfdfd 55%,
      #f0f6f7 100%
    );
  box-shadow:
    0 22px 48px rgba(23, 50, 77, 0.12),
    inset 0 1px 0 #ffffff,
    inset 0 -3px 8px rgba(102, 130, 146, 0.09);
}

.customer-panel::after {
  border: 1px solid rgba(13, 148, 136, 0.09);
  box-shadow:
    0 0 0 28px rgba(13, 148, 136, 0.025),
    0 0 0 58px rgba(13, 148, 136, 0.018);
}

.customer-panel:hover {
  box-shadow:
    0 30px 62px rgba(23, 50, 77, 0.17),
    inset 0 1px 0 #ffffff,
    inset 0 -3px 8px rgba(102, 130, 146, 0.08);
}

.company-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(43, 203, 187, 0.3),
      transparent 39%
    ),
    linear-gradient(
      145deg,
      #214561 0%,
      #173a56 48%,
      #132f49 100%
    );
  box-shadow:
    0 24px 52px rgba(10, 35, 57, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.19),
    inset 0 -3px 9px rgba(5, 22, 36, 0.26);
}

.company-panel::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0)
  );
}

.company-panel::after {
  border: 1px solid rgba(43, 203, 187, 0.11);
  box-shadow:
    0 0 0 28px rgba(43, 203, 187, 0.028),
    0 0 0 58px rgba(43, 203, 187, 0.018);
}

.company-panel:hover {
  filter: brightness(1.035);
  box-shadow:
    0 32px 66px rgba(10, 35, 57, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.23),
    inset 0 -3px 9px rgba(5, 22, 36, 0.23);
}

.audience-panel h2 {
  margin: 15px 0 25px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.audience-panel ul,
.plan-copy ul {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.audience-panel li,
.plan-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.audience-panel li svg,
.plan-copy li svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.company-panel li {
  color: #dbe5ed;
}

.audience-panel > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 850;
}

.customer-panel > a {
  color: #ffffff;
  background: #0d9488;
}

.company-panel > a {
  color: #17324d;
  background: #ffffff;
}

.predyon-integration-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  grid-gap: 65px;
  gap: 65px;
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid #dfebe9;
}

.predyon-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 30px;
  perspective: 1000px;
}

.predyon-feature-grid div {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 15px;
  color: #405b73;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 247, 0.92));
  box-shadow:
    0 8px 0 rgba(23, 50, 77, 0.055),
    0 15px 30px rgba(23, 50, 77, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 850;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.predyon-feature-grid div::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(118, 222, 209, 0.8),
    transparent
  );
  content: "";
}

.predyon-feature-grid div::after {
  position: absolute;
  top: -45px;
  right: -42px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(118, 222, 209, 0.12);
  content: "";
  z-index: -1;
  transition: transform 0.3s ease;
}

.predyon-feature-grid div:hover {
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow:
    0 10px 0 rgba(23, 50, 77, 0.065),
    0 23px 38px rgba(23, 50, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px) rotateX(3deg);
}

.predyon-feature-grid div:hover::after {
  transform: scale(1.28);
}

.predyon-feature-grid div:active {
  box-shadow:
    0 4px 0 rgba(23, 50, 77, 0.06),
    0 9px 18px rgba(23, 50, 77, 0.10);
  transform: translateY(1px);
}

.predyon-feature-grid svg {
  box-sizing: content-box;
  flex: 0 0 auto;
  padding: 8px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 11px;
  color: #087f77;
  background: linear-gradient(145deg, #e6fbf8, #c9f2ec);
  box-shadow:
    0 6px 12px rgba(13, 148, 136, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateZ(14px);
}

.predyon-feature-grid div > span {
  position: relative;
  z-index: 1;
  transform: translateZ(8px);
}

.predyon-flip-stage {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1500px;
}

.predyon-flip-stage::before {
  position: absolute;
  inset: 13px -8px -11px 15px;
  border-radius: 29px;
  background: linear-gradient(145deg, #1ba99d, #17324d);
  box-shadow: 0 30px 65px rgba(23, 50, 77, 0.24);
  transform: rotate(2deg);
  content: "";
  opacity: 0.28;
}

.predyon-flip-button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  outline: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.predyon-flip-button:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.35);
  outline-offset: 7px;
}

.predyon-flip-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  transform-style: preserve-3d;
  transition: transform 0.78s cubic-bezier(0.2, 0.72, 0.22, 1);
}

.predyon-flip-button.is-flipped .predyon-flip-card {
  transform: rotateY(180deg);
}

.predyon-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 28px 31px;
  border: 1px solid rgba(118, 222, 209, 0.17);
  border-radius: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    0 30px 70px rgba(23, 50, 77, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.predyon-flip-face::before {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(118, 222, 209, 0.14);
  filter: blur(4px);
  content: "";
  pointer-events: none;
}

.predyon-flip-face::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 125px;
  height: 125px;
  border-right: 1px solid rgba(118, 222, 209, 0.15);
  border-bottom: 1px solid rgba(118, 222, 209, 0.15);
  border-radius: 0 0 28px 0;
  content: "";
  pointer-events: none;
}

.predyon-flip-front {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(155deg, #193a57 0%, #132f49 55%, #0e263b 100%);
}

.predyon-flip-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at top right, rgba(118, 222, 209, 0.19), transparent 34%),
    linear-gradient(150deg, #0f5e5c 0%, #123f4e 44%, #102a42 100%);
}

.predyon-flip-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #76ded1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.predyon-flip-topline svg {
  filter: drop-shadow(0 5px 10px rgba(118, 222, 209, 0.30));
}

.predyon-flip-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 19px 0 17px;
}

.predyon-flip-logo {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: #17324d;
  background: linear-gradient(145deg, #9af1e6, #59d0c2);
  box-shadow:
    0 11px 25px rgba(118, 222, 209, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.predyon-flip-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.predyon-flip-brand-copy strong {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.predyon-flip-brand-copy small {
  color: #9eb2c1;
  font-size: 11px;
  font-weight: 700;
}

.predyon-flip-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.predyon-flip-steps > span {
  display: flex;
  min-height: 53px;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.predyon-flip-steps strong {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #17324d;
  background: linear-gradient(180deg, #8cefe3, #62d4c6);
  box-shadow: 0 7px 16px rgba(118, 222, 209, 0.18);
}

.predyon-flip-steps > span > span {
  color: #e5edf2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.predyon-flip-hint {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 13px;
  color: #91a8b8;
  font-size: 11px;
  font-weight: 800;
}

.predyon-flip-hint svg {
  flex: 0 0 auto;
  color: #76ded1;
}

.predyon-flip-back-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
}

.predyon-flip-back-title > svg {
  box-sizing: content-box;
  padding: 9px;
  border: 1px solid rgba(118, 222, 209, 0.22);
  border-radius: 13px;
  color: #76ded1;
  background: rgba(118, 222, 209, 0.10);
}

.predyon-flip-back-title > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.predyon-flip-back-title strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
}

.predyon-flip-back-title small {
  color: #b4c8d0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.predyon-flip-services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 9px;
  gap: 9px;
}

.predyon-flip-services > span {
  display: flex;
  min-height: 45px;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(118, 222, 209, 0.16);
  border-radius: 12px;
  color: #e4f1f1;
  background: rgba(255, 255, 255, 0.065);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.predyon-flip-highlight {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(118, 222, 209, 0.20);
  border-radius: 13px;
  color: #e0eeee;
  background: rgba(118, 222, 209, 0.09);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.predyon-flip-highlight svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #76ded1;
}

@media (max-width: 980px) {
  .predyon-flip-stage {
    width: min(540px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .predyon-flip-stage {
    height: 500px;
  }

  .predyon-flip-face {
    padding: 24px 20px;
    border-radius: 23px;
  }

  .predyon-flip-stage::before {
    border-radius: 23px;
  }

  .predyon-flip-services {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .predyon-flip-services > span {
    min-height: 38px;
  }

  .predyon-flip-back-title {
    margin-top: 18px;
  }
}

.categories-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: #eef8f6;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  perspective: 1200px;
}

.categories-grid div {
  --category-accent: #0d9488;
  --category-soft: rgba(13, 148, 136, 0.12);

  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 13px 15px 13px 18px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 16px;
  color: #405b73;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.94));
  box-shadow:
    0 7px 0 #d8e9e6,
    0 16px 28px rgba(23, 50, 77, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  font-weight: 850;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.categories-grid div:nth-child(4n + 2) {
  --category-accent: #1682a1;
  --category-soft: rgba(22, 130, 161, 0.12);
}

.categories-grid div:nth-child(4n + 3) {
  --category-accent: #397b68;
  --category-soft: rgba(57, 123, 104, 0.12);
}

.categories-grid div:nth-child(4n + 4) {
  --category-accent: #426b8a;
  --category-soft: rgba(66, 107, 138, 0.12);
}

.categories-grid div::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: var(--category-accent);
  box-shadow: 4px 0 16px var(--category-soft);
  content: "";
}

.categories-grid div::after {
  position: absolute;
  top: -48px;
  right: -45px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--category-soft);
  content: "";
  z-index: -1;
  transition: transform 0.3s ease;
}

.categories-grid div:hover {
  border-color: color-mix(in srgb, var(--category-accent) 38%, transparent);
  box-shadow:
    0 11px 0 #d4e6e3,
    0 25px 42px rgba(23, 50, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px) rotateX(4deg) rotateY(-1deg);
}

.categories-grid div:hover::after {
  transform: scale(1.35);
}

.categories-grid div:active {
  box-shadow:
    0 3px 0 #d4e6e3,
    0 10px 20px rgba(23, 50, 77, 0.10);
  transform: translateY(2px);
}

.categories-grid svg {
  box-sizing: content-box;
  flex: 0 0 auto;
  padding: 8px;
  border: 1px solid var(--category-soft);
  border-radius: 11px;
  color: var(--category-accent);
  background:
    linear-gradient(145deg, #ffffff, var(--category-soft));
  box-shadow:
    0 7px 15px var(--category-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateZ(18px);
}

.categories-grid div > span {
  position: relative;
  z-index: 1;
  transform: translateZ(10px);
}

.plan-section {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  grid-gap: 76px;
  gap: 76px;
  overflow: hidden;
  margin: 95px auto;
  padding: 72px 76px;
  border: 1px solid rgba(118, 222, 209, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 5%, rgba(118, 222, 209, 0.14), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(13, 148, 136, 0.18), transparent 31%),
    linear-gradient(145deg, #193a57 0%, #132f49 52%, #0d263c 100%);
  box-shadow:
    0 38px 90px rgba(23, 50, 77, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  isolation: isolate;
}

.plan-section::before {
  position: absolute;
  top: -180px;
  right: 26%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(118, 222, 209, 0.10);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 45px rgba(118, 222, 209, 0.025),
    0 0 0 90px rgba(118, 222, 209, 0.018);
  pointer-events: none;
}

.plan-section::after {
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.11);
  filter: blur(4px);
  content: "";
  pointer-events: none;
}

.plan-copy {
  position: relative;
  z-index: 1;
}

.plan-copy > span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(118, 222, 209, 0.20);
  border-radius: 999px;
  color: #76ded1;
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.plan-copy h2 {
  max-width: 570px;
  margin: 20px 0 17px;
  color: #ffffff;
  font-size: clamp(39px, 4.7vw, 59px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.plan-copy > p {
  max-width: 570px;
  margin: 0;
  color: #b8c9d5;
  font-size: 17px;
  line-height: 1.7;
}

.plan-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 11px;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plan-copy li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: #e3edf2;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 750;
}

.plan-copy li svg {
  flex: 0 0 auto;
  color: #76ded1;
  filter: drop-shadow(0 5px 10px rgba(118, 222, 209, 0.25));
}

.plan-trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 21px;
  color: #93aabc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.plan-trust-note svg {
  flex: 0 0 auto;
  color: #76ded1;
}

.price-card-stage {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  margin-left: auto;
  perspective: 1300px;
}

.price-card-stage::before,
.price-card-stage::after {
  position: absolute;
  inset: 15px -13px -13px 17px;
  border-radius: 31px;
  content: "";
  pointer-events: none;
}

.price-card-stage::before {
  background: linear-gradient(145deg, #76ded1, #0d9488);
  box-shadow: 0 30px 65px rgba(4, 18, 29, 0.34);
  opacity: 0.34;
  transform: rotate(3deg);
}

.price-card-stage::after {
  inset: 8px -6px -7px 9px;
  border: 1px solid rgba(118, 222, 209, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(1.5deg);
}

.price-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 37px 35px 31px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(118, 222, 209, 0.20), transparent 31%),
    linear-gradient(155deg, #ffffff 0%, #f5fbfa 100%);
  box-shadow:
    0 38px 80px rgba(4, 18, 29, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: rgba(118, 222, 209, 0.18);
  content: "";
  pointer-events: none;
}

.price-card-stage:hover .price-card {
  box-shadow:
    0 48px 95px rgba(4, 18, 29, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-7px) rotateY(0deg) rotateX(0deg);
}

.price-card-badges {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-card-badges span,
.price-card-badges small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-card-badges span {
  padding: 9px 13px;
  color: #083f3c;
  background: linear-gradient(145deg, #9bf0e6, #65d7c9);
  box-shadow:
    0 8px 18px rgba(13, 148, 136, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.price-card-badges small {
  padding: 8px 11px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  color: #0d7e76;
  background: rgba(231, 248, 244, 0.86);
  font-size: 9px;
}

.price-card-kicker {
  position: relative;
  z-index: 1;
  margin: 28px 0 2px;
  color: #708497;
  font-size: 12px;
  font-weight: 800;
}

.price-value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 3px 0 22px;
}

.price-value strong {
  color: #17324d;
  font-size: clamp(58px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.065em;
  text-shadow: 0 8px 18px rgba(23, 50, 77, 0.10);
}

.price-value small {
  color: #52687c;
  font-size: 13px;
  font-weight: 850;
}

.price-card-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 148, 136, 0.28),
    transparent
  );
}

.price-card-description {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #64778a;
  font-size: 14px;
  line-height: 1.6;
}

.price-card-security {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 19px;
  padding: 13px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: 13px;
  color: #4d687a;
  background: rgba(231, 248, 244, 0.72);
  text-align: left;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
}

.price-card-security svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.price-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(145deg, #12a597, #087f77);
  box-shadow:
    0 12px 25px rgba(13, 148, 136, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card > a:hover {
  box-shadow:
    0 17px 32px rgba(13, 148, 136, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.price-card-footnote {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: #8b9baa;
  font-size: 10px;
  font-weight: 700;
}

.final-cta-section > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 14px 19px;
  border-radius: 13px;
  color: #ffffff;
  font-weight: 850;
  background: #0d9488;
}

@media (max-width: 980px) {
  .plan-section {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 62px 54px;
  }

  .price-card-stage {
    width: min(470px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .plan-section {
    width: min(100% - 24px, 1180px);
    margin: 65px auto;
    padding: 45px 21px;
    border-radius: 27px;
  }

  .plan-copy ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 31px 22px 27px;
    transform: none;
  }

  .price-card-stage::before {
    inset: 11px -5px -9px 10px;
  }

  .price-card-stage::after {
    inset: 6px -2px -4px 6px;
  }
}

.trust-section {
  display: grid;
  width: min(1040px, calc(100% - 40px));
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: 27px;
  gap: 27px;
  margin: 0 auto 100px;
  padding: 38px;
  border: 1px solid #d8e7e4;
  border-radius: 25px;
  background: #ffffff;
}

.trust-section > svg {
  padding: 12px;
  border-radius: 16px;
  color: #0d9488;
  background: #e7f8f4;
}

.trust-section h2 {
  font-size: 31px;
}

.final-cta-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 0 auto 90px;
  border: 1px solid rgba(118, 222, 209, 0.17);
  border-radius: 40px;
  background:
    radial-gradient(circle at 78% 18%, rgba(118, 222, 209, 0.23), transparent 27%),
    radial-gradient(circle at 5% 100%, rgba(13, 148, 136, 0.18), transparent 31%),
    linear-gradient(145deg, #173b58 0%, #123249 49%, #0b263b 100%);
  box-shadow:
    0 42px 95px rgba(23, 50, 77, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  isolation: isolate;
}

.final-cta-section::before {
  position: absolute;
  top: -255px;
  left: 38%;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(118, 222, 209, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(118, 222, 209, 0.025),
    0 0 0 110px rgba(118, 222, 209, 0.017);
  content: "";
  pointer-events: none;
}

.final-cta-section::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(118, 222, 209, 0.10);
  filter: blur(7px);
  content: "";
  pointer-events: none;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  grid-gap: 78px;
  gap: 78px;
  padding: 78px 76px;
}

.final-cta-copy > span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(118, 222, 209, 0.21);
  border-radius: 999px;
  color: #76ded1;
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.final-cta-copy h2 {
  max-width: 600px;
  margin: 21px 0 18px;
  color: #ffffff;
  font-size: clamp(41px, 4.8vw, 61px);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.final-cta-copy > p {
  max-width: 600px;
  margin: 0;
  color: #bccbd6;
  font-size: 16px;
  line-height: 1.75;
}

.final-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.final-cta-benefits > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #e3eef2;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.final-cta-benefits svg {
  color: #76ded1;
}

.final-cta-copy > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(145deg, #16aa9c, #087f77);
  box-shadow:
    0 15px 30px rgba(5, 105, 98, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.final-cta-copy > a:hover {
  box-shadow:
    0 21px 38px rgba(5, 105, 98, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.final-cta-copy > a svg {
  transition: transform 0.22s ease;
}

.final-cta-copy > a:hover svg {
  transform: translateX(4px);
}

.final-cta-copy > small {
  display: block;
  margin-top: 13px;
  color: #8fa7b8;
  font-size: 10px;
  font-weight: 700;
}

.final-opportunity-stage {
  position: relative;
  width: min(430px, 100%);
  min-height: 430px;
  margin-left: auto;
  perspective: 1400px;
}

.final-opportunity-shadow {
  position: absolute;
  inset: 35px -16px -14px 24px;
  border-radius: 31px;
  background: linear-gradient(145deg, #76ded1, #0d9488);
  box-shadow: 0 35px 70px rgba(2, 17, 27, 0.40);
  opacity: 0.25;
  transform: rotate(4deg);
}

.final-opportunity-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 29px;
  background:
    radial-gradient(circle at top right, rgba(118, 222, 209, 0.22), transparent 31%),
    linear-gradient(150deg, #ffffff 0%, #f3faf9 100%);
  box-shadow:
    0 38px 85px rgba(3, 18, 29, 0.33),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease;
}

.final-opportunity-card::before {
  position: absolute;
  top: -115px;
  right: -95px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(118, 222, 209, 0.19);
  content: "";
  pointer-events: none;
}

.final-opportunity-stage:hover .final-opportunity-card {
  box-shadow:
    0 48px 100px rgba(3, 18, 29, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-8px) rotateY(0deg) rotateX(0deg);
}

.final-opportunity-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.final-opportunity-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.final-opportunity-logo {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(145deg, #16aa9c, #087f77);
  box-shadow:
    0 9px 20px rgba(13, 148, 136, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.final-opportunity-header > div > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.final-opportunity-header strong {
  color: #17324d;
  font-size: 15px;
}

.final-opportunity-header small {
  color: #8294a4;
  font-size: 10px;
  font-weight: 700;
}

.final-opportunity-status {
  padding: 7px 10px;
  border-radius: 999px;
  color: #087f77;
  background: #dff7f3;
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.12);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.10em;
}

.final-opportunity-alert {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  padding: 12px 13px;
  border: 1px solid rgba(13, 148, 136, 0.13);
  border-radius: 13px;
  color: #24645f;
  background: rgba(223, 247, 243, 0.75);
  font-size: 11px;
  font-weight: 850;
}

.final-opportunity-alert svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.final-opportunity-content {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 22px 0;
  border-top: 1px solid #e1ecea;
  border-bottom: 1px solid #e1ecea;
}

.final-opportunity-content > span {
  color: #0d9488;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.final-opportunity-content h3 {
  margin: 9px 0 17px;
  color: #17324d;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.final-opportunity-content > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64778a;
  font-size: 12px;
  font-weight: 750;
}

.final-opportunity-content svg {
  color: #0d9488;
}

.final-opportunity-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.final-opportunity-tags span {
  padding: 8px 10px;
  border: 1px solid #d9e8e5;
  border-radius: 10px;
  color: #52687c;
  background: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.final-opportunity-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 14px 15px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(145deg, #173b58, #102b43);
  box-shadow:
    0 11px 22px rgba(23, 50, 77, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.final-opportunity-action svg {
  color: #76ded1;
}

.final-opportunity-mini-card {
  position: absolute;
  z-index: 4;
  right: -30px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.93);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 45px rgba(3, 18, 29, 0.27);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: finalOpportunityFloat 3.8s ease-in-out infinite;
}

.final-opportunity-mini-card > svg {
  box-sizing: content-box;
  padding: 7px;
  border-radius: 10px;
  color: #0d9488;
  background: #e2f8f4;
}

.final-opportunity-mini-card > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.final-opportunity-mini-card strong {
  color: #17324d;
  font-size: 11px;
}

.final-opportunity-mini-card small {
  color: #8294a4;
  font-size: 9px;
  font-weight: 700;
}

@keyframes finalOpportunityFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .final-cta-shell {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 68px 55px;
  }

  .final-opportunity-stage {
    width: min(470px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    width: min(100% - 24px, 1180px);
    margin-bottom: 65px;
    border-radius: 28px;
  }

  .final-cta-shell {
    gap: 48px;
    padding: 48px 21px 58px;
  }

  .final-cta-copy h2 {
    font-size: 40px;
  }

  .final-cta-copy > a {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 13px;
  }

  .final-opportunity-stage {
    min-height: 440px;
  }

  .final-opportunity-card {
    padding: 24px 20px;
    transform: none;
  }

  .final-opportunity-shadow {
    inset: 20px -5px -10px 12px;
  }

  .final-opportunity-mini-card {
    right: 8px;
    bottom: -20px;
  }
}

.public-footer {
  padding: 65px max(20px, calc((100% - 1180px) / 2)) 25px;
  color: #c7d3dc;
  background: #10283e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-gap: 50px;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-brand p {
  max-width: 300px;
  color: #9fb0be;
  line-height: 1.6;
}

.public-footer .brand strong {
  color: #ffffff;
}

.footer-main > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  grid-gap: 12px;
  gap: 12px;
}

.footer-main > div > strong {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer-main a,
.footer-main span {
  color: #9fb0be;
  font-size: 14px;
}

.footer-main a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #8297a8;
  font-size: 13px;
}

@media (max-width: 980px) {
  .public-navigation > a:not(:last-of-type) {
    display: none;
  }

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

  .predyon-integration-section,
  .plan-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-main > div:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .public-navigation > a {
    display: none;
  }

  .login-coming-soon {
    padding: 9px 15px;
  }

  .purpose-grid,
  .steps-grid,
  .public-audiences-section,
  .categories-grid,
  .predyon-feature-grid {
    grid-template-columns: 1fr;
  }

  .public-purpose-section,
  .public-how-section,
  .public-audiences-section,
  .predyon-integration-section,
  .categories-section,
  .plan-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .audience-panel {
    padding: 28px 22px;
  }

  .trust-section {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
    padding: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* HERO PREMIUM 3D */

.hero-premium-stage {
  position: relative;
  min-height: 470px;
  perspective: 1300px;
}

.hero-premium-glow {
  position: absolute;
  inset: 10% 4% 5%;
  border-radius: 45%;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.24),
    rgba(13, 148, 136, 0.05) 45%,
    transparent 72%
  );
  filter: blur(30px);
  transform: translateZ(-40px);
}

.hero-premium-card {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 251, 249, 0.94)
    );
  box-shadow:
    0 45px 80px rgba(23, 50, 77, 0.18),
    0 18px 35px rgba(13, 148, 136, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.hero-premium-card::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(
    circle,
    rgba(45, 212, 191, 0.23),
    transparent 68%
  );
}

.hero-premium-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  content: "";
  background:
    linear-gradient(
      135deg,
      transparent 48%,
      rgba(13, 148, 136, 0.05) 49%,
      rgba(13, 148, 136, 0.05) 52%,
      transparent 53%
    );
  background-size: 18px 18px;
  opacity: 0.7;
}

.hero-premium-stage:hover .hero-premium-card {
  box-shadow:
    0 55px 95px rgba(23, 50, 77, 0.22),
    0 22px 42px rgba(13, 148, 136, 0.16);
  transform: rotateY(-3deg) rotateX(1deg) translateY(-5px);
}

.premium-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 29px 22px;
  border-bottom: 1px solid rgba(157, 191, 188, 0.3);
  transform: translateZ(35px);
}

.premium-company-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.premium-company-logo {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 16px;
  color: #0d9488;
  background:
    linear-gradient(145deg, #f1fffc, #dff7f2);
  box-shadow:
    0 10px 20px rgba(13, 148, 136, 0.12),
    inset 0 1px 0 #ffffff;
}

.premium-company-brand > div:last-child {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.premium-company-brand span,
.premium-card-footer span,
.premium-floating-badge small {
  color: #0d9488;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.premium-company-brand strong {
  color: #17324d;
  font-size: 16px;
}

.premium-verified-icon {
  color: #0d9488;
  filter: drop-shadow(0 6px 10px rgba(13, 148, 136, 0.2));
}

.premium-card-content {
  position: relative;
  z-index: 2;
  padding: 27px 29px 25px;
  transform: translateZ(45px);
}

.premium-eyebrow {
  color: #0d9488;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.premium-card-content h2 {
  max-width: 390px;
  margin: 11px 0 12px;
  color: #17324d;
  font-size: 30px;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.premium-card-content > p {
  max-width: 400px;
  margin: 0;
  color: #64778a;
  font-size: 15px;
  line-height: 1.6;
}

.premium-benefits {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 23px;
}

.premium-benefits > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #435d73;
  font-size: 14px;
  font-weight: 750;
}

.premium-benefits svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.premium-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 29px 23px;
  border-top: 1px solid rgba(157, 191, 188, 0.3);
  background: rgba(236, 249, 246, 0.72);
  transform: translateZ(30px);
}

.premium-card-footer > div:first-child {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.premium-card-footer strong {
  color: #17324d;
  font-size: 17px;
}

.premium-automatic-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(13, 148, 136, 0.17);
  border-radius: 999px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.86);
}

.premium-floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 38px rgba(23, 50, 77, 0.16),
    inset 0 1px 0 #ffffff;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.premium-floating-badge > div {
  display: grid;
  grid-gap: 2px;
  gap: 2px;
}

.premium-floating-badge svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.premium-floating-badge strong {
  color: #17324d;
  font-size: 12px;
  white-space: nowrap;
}

.premium-floating-verified {
  top: 38px;
  right: -21px;
  animation: premiumFloat 4.6s ease-in-out infinite;
}

.premium-floating-opportunity {
  bottom: 44px;
  left: -35px;
  animation: premiumFloat 5.2s ease-in-out infinite reverse;
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1050px) {
  .premium-floating-verified {
    right: -5px;
  }

  .premium-floating-opportunity {
    left: -8px;
  }
}

@media (max-width: 820px) {
  .hero-premium-stage {
    min-height: 440px;
  }

  .hero-premium-card {
    min-height: 410px;
    transform: none;
  }

  .hero-premium-stage:hover .hero-premium-card {
    transform: translateY(-3px);
  }
}

@media (max-width: 560px) {
  .hero-premium-stage {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-premium-card {
    min-height: auto;
    border-radius: 24px;
  }

  .premium-card-top,
  .premium-card-content,
  .premium-card-footer {
    padding-right: 21px;
    padding-left: 21px;
  }

  .premium-card-content h2 {
    font-size: 27px;
  }

  .premium-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-floating-badge {
    display: none;
  }
}

/* AJUSTE DO SELO FLUTUANTE DO HERO */
.premium-floating-verified {
  top: 6px;
}

/* SELO ACIMA DO CARD PRINCIPAL */
.premium-floating-verified {
  top: -22px;
}


/* COMPANY CARDS PREMIUM - INICIO */

.company-card-premium {
  position: relative;
  isolation: isolate;
  gap: 20px;
  overflow: hidden;
  min-height: 430px;
  padding: 25px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.12), transparent 35%),
    linear-gradient(145deg, #ffffff 0%, #fbfefd 62%, #f4fbfa 100%);
  box-shadow:
    0 22px 55px rgba(15, 42, 63, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.company-card-premium::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 30px;
  left: 30px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #67e8f9);
  content: "";
}

.company-card-premium:hover {
  transform: translateY(-7px);
  border-color: rgba(13, 148, 136, 0.34);
  box-shadow:
    0 30px 70px rgba(15, 42, 63, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.company-card-glow {
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -85px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  filter: blur(5px);
}

.company-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.company-card-kicker,
.company-card-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.company-card-kicker {
  color: #087f73;
  background: rgba(204, 251, 241, 0.82);
}

.company-card-category-badge {
  overflow: hidden;
  max-width: 47%;
  color: #40566a;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(241, 245, 249, 0.92);
}

.company-logo-premium {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 21px;
  background:
    linear-gradient(145deg, #f0fdfa, #ffffff);
  box-shadow:
    0 12px 28px rgba(13, 148, 136, 0.13),
    inset 0 1px 0 #ffffff;
}

.company-card-premium .company-name-line h2 {
  color: #102f48;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.company-card-premium .company-card-heading p {
  overflow: hidden;
  max-width: 220px;
  color: #74869a;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-card-premium .company-location {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid #e3eceb;
  border-radius: 11px;
  color: #415d72;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.company-card-premium .company-description {
  min-height: 75px;
  color: #5e7285;
  line-height: 1.6;
}

.company-service-area-premium {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid #dcebe8;
  border-radius: 15px;
  background: rgba(240, 253, 250, 0.7);
}

.company-service-area-premium span {
  color: #78909f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-service-area-premium strong {
  color: #27465b;
  font-size: 14px;
}

.company-card-premium .company-card-footer {
  margin-top: auto;
}

.company-card-premium .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.25;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.company-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.company-card-action:hover {
  transform: translateY(-2px);
}

.company-card-action-secondary {
  border: 1px solid #cfe4e1;
  color: #176d66;
  background: #ffffff;
}

.company-card-action-secondary:hover {
  background: #f0fdfa;
}

.company-card-action-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #087f73);
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.24);
}

.company-card-action-primary:hover {
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.32);
}

.company-card-action-disabled {
  color: #7b8a98;
  background: #edf1f3;
}

.company-profile-page {
  min-height: 100vh;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 90% 15%, rgba(45, 212, 191, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbfb 0%, #edf5f5 100%);
}

.company-profile-shell {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-gap: 28px;
  gap: 28px;
  margin: 56px auto 0;
}

.company-profile-main {
  overflow: hidden;
  border: 1px solid #dce8e7;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 75px rgba(23, 50, 77, 0.11);
}

.company-profile-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px;
  border-bottom: 1px solid #e6eeee;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.18), transparent 42%),
    linear-gradient(135deg, #f0fdfa, #ffffff);
}

.company-profile-logo {
  display: grid;
  width: 110px;
  height: 110px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 28px;
  color: #0d9488;
  font-size: 30px;
  font-weight: 950;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(13, 148, 136, 0.15);
}

.company-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-profile-heading h1 {
  margin: 12px 0 5px;
  color: #102f48;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.045em;
}

.company-profile-heading > p {
  margin: 0;
  color: #758799;
  font-weight: 700;
}

.company-profile-verified,
.company-profile-contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #087f73;
  font-size: 12px;
  font-weight: 900;
  background: #ccfbf1;
}

.company-profile-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #4e687c;
  font-weight: 800;
}

.company-profile-content {
  padding: 38px;
}

.company-profile-eyebrow {
  color: #0d9488;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.company-profile-content h2 {
  max-width: 620px;
  margin: 10px 0 15px;
  color: #17324d;
  font-size: 30px;
  letter-spacing: -0.025em;
}

.company-profile-content > p {
  margin: 0;
  color: #617588;
  font-size: 17px;
  line-height: 1.75;
}

.company-profile-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin-top: 30px;
}

.company-profile-details > div {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  padding: 18px;
  border: 1px solid #e0ebea;
  border-radius: 17px;
  background: #f8fbfb;
}

.company-profile-details span {
  color: #8293a2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-profile-details strong {
  color: #28465b;
}

.company-profile-contact {
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.13), transparent 38%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(23, 50, 77, 0.1);
}

.company-profile-contact h2 {
  margin: 22px 0 8px;
  color: #17324d;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.company-profile-contact > p {
  margin: 0 0 22px;
  color: #697d8e;
  line-height: 1.55;
}

.company-profile-contact-primary,
.company-profile-contact-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  margin-top: 10px;
  border-radius: 14px;
  font-weight: 900;
}

.company-profile-contact-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #087f73);
  box-shadow: 0 13px 26px rgba(13, 148, 136, 0.25);
}

.company-profile-contact-secondary {
  border: 1px solid #d5e6e3;
  color: #176d66;
  background: #f7fbfb;
}

.company-profile-trust {
  display: flex;
  gap: 11px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid #e4eceb;
  color: #0d9488;
}

.company-profile-trust div {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.company-profile-trust strong {
  color: #28465b;
}

.company-profile-trust span {
  color: #78909f;
  font-size: 12px;
  line-height: 1.45;
}

.company-profile-state {
  display: grid;
  min-height: 450px;
  place-items: center;
  align-content: center;
  grid-gap: 12px;
  gap: 12px;
  color: #64778a;
  text-align: center;
}

.company-profile-state h1,
.company-profile-state p {
  margin: 0;
}

.company-profile-state a {
  margin-top: 12px;
  padding: 11px 16px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: #0d9488;
}

.company-profile-error {
  color: #7f1d1d;
}

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

  .company-profile-contact {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .company-card-premium {
    min-height: auto;
    padding: 21px;
  }

  .company-card-topline {
    align-items: flex-start;
  }

  .company-card-actions {
    width: 100%;
  }

  .company-card-action {
    flex: 1 1;
  }

  .company-profile-shell {
    width: min(100% - 24px, 1180px);
    margin-top: 28px;
  }

  .company-profile-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .company-profile-logo {
    width: 88px;
    height: 88px;
    border-radius: 23px;
  }

  .company-profile-content {
    padding: 26px 22px;
  }

  .company-profile-content h2 {
    font-size: 25px;
  }

  .company-profile-details {
    grid-template-columns: 1fr;
  }

  .company-profile-contact {
    padding: 23px;
  }
}

/* COMPANY CARDS PREMIUM - FIM */


/* RODAPE CARD TAMANHOS PADRAO - INICIO */

.company-card-premium .company-card-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  grid-gap: 12px;
  gap: 12px;
}

.company-card-premium .status-pill,
.company-card-premium .company-card-action-primary {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.2;
}

.company-card-premium .status-pill {
  font-size: 12px;
}

.company-card-premium .company-card-action-primary {
  font-size: 13px;
}

@media (max-width: 650px) {
  .company-card-premium .company-card-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* RODAPE CARD TAMANHOS PADRAO - FIM */


/* COMPANY PROFILE PREMIUM WHATSAPP - INICIO */

.company-profile-main {
  position: relative;
  border: 1px solid rgba(13, 148, 136, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 252, 0.98));
  box-shadow:
    0 26px 70px rgba(23, 50, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.company-profile-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.company-profile-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 212, 191, 0.18), transparent 28%),
    radial-gradient(circle at 15% 0%, rgba(103, 232, 249, 0.16), transparent 25%),
    linear-gradient(145deg, #f4fdfb 0%, #ffffff 58%, #eef9f8 100%);
}

.company-profile-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.08);
  box-shadow:
    0 0 0 24px rgba(45, 212, 191, 0.045),
    0 0 0 48px rgba(45, 212, 191, 0.03);
}

.company-profile-logo {
  position: relative;
  background:
    linear-gradient(145deg, #ffffff, #f2fdfb);
  box-shadow:
    0 18px 40px rgba(13, 148, 136, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.company-profile-contact {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
  box-shadow:
    0 24px 65px rgba(23, 50, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.company-profile-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #67e8f9);
}

.company-profile-contact-tag {
  box-shadow:
    0 8px 18px rgba(13, 148, 136, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.company-profile-whatsapp {
  min-height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d9488, #087f73);
  box-shadow:
    0 16px 32px rgba(13, 148, 136, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.company-profile-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(13, 148, 136, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: saturate(1.04);
}

.company-profile-contact-number {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid #dce9e7;
  border-radius: 16px;
  background: rgba(240, 253, 250, 0.65);
}

.company-profile-contact-number span {
  color: #8093a2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-profile-contact-number strong {
  color: #17324d;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.company-profile-details > div {
  box-shadow:
    0 10px 24px rgba(23, 50, 77, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* COMPANY PROFILE PREMIUM WHATSAPP - FIM */


/* AUTH E PAINEL DA EMPRESA - INICIO */

.field small {
  color: #7b8d9c;
  font-size: 11px;
  line-height: 1.4;
}

.login-page {
  min-height: 100vh;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 15% 25%, rgba(45, 212, 191, 0.14), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(103, 232, 249, 0.11), transparent 23%),
    linear-gradient(145deg, #eef8f7 0%, #f9fcfc 52%, #edf7f6 100%);
}

.login-shell {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  grid-gap: 70px;
  gap: 70px;
  margin: 70px auto 0;
}

.login-presentation > span,
.login-card > span {
  color: #0d9488;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.login-presentation h1 {
  max-width: 610px;
  margin: 14px 0 18px;
  color: #102f48;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.login-presentation > p {
  max-width: 570px;
  color: #607589;
  font-size: 18px;
  line-height: 1.7;
}

.login-feature {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 13px;
  margin-top: 30px;
  padding: 17px 19px;
  border: 1px solid rgba(13, 148, 136, 0.17);
  border-radius: 17px;
  color: #0d9488;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 35px rgba(23, 50, 77, 0.07);
}

.login-feature div {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.login-feature strong {
  color: #28465b;
}

.login-feature span {
  color: #748797;
  font-size: 13px;
}

.login-card {
  position: relative;
  display: grid;
  grid-gap: 17px;
  gap: 17px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.19);
  border-radius: 29px;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.97);
  box-shadow:
    0 30px 80px rgba(23, 50, 77, 0.14),
    inset 0 1px 0 #ffffff;
}

.login-card::before {
  position: absolute;
  top: 0;
  right: 38px;
  left: 38px;
  height: 4px;
  border-radius: 0 0 9px 9px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #67e8f9);
  content: "";
}

.login-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(145deg, #14b8a6, #087f73);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.26);
}

.login-card h2 {
  margin: -5px 0 0;
  color: #17324d;
  font-size: 31px;
  letter-spacing: -0.035em;
}

.login-card > p {
  margin: -8px 0 4px;
  color: #6d8091;
  line-height: 1.5;
}

.login-card label {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
}

.login-card label > span {
  color: #405a6d;
  font-size: 13px;
  font-weight: 850;
}

.login-card label > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #dbe7e5;
  border-radius: 14px;
  color: #8494a1;
  background: #fbfdfd;
}

.login-card input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  outline: 0;
  color: #17324d;
  font: inherit;
  background: transparent;
}

.login-card button {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #0d9488, #087f73);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.25);
}

.login-card button:disabled {
  opacity: 0.7;
}

.login-card > small {
  color: #7a8b99;
  text-align: center;
}

.login-card > small a {
  color: #0d9488;
  font-weight: 900;
}

.login-error {
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #991b1b;
  font-size: 13px;
  font-weight: 750;
  background: #fef2f2;
}

.dashboard-loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  grid-gap: 13px;
  gap: 13px;
  color: #64778a;
  background: #eff6f5;
}

.company-dashboard {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 270px minmax(0, 1fr);
  background: #f0f6f5;
}

.dashboard-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 27px 20px;
  color: #d8e7e5;
  background:
    radial-gradient(circle at 0% 0%, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(180deg, #102f48 0%, #0c273c 100%);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.dashboard-company-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 30px 0 23px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-company-mini > div {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #0c6f67;
  font-size: 13px;
  font-weight: 950;
  background: #ccfbf1;
}

.dashboard-company-mini > span {
  display: grid;
  min-width: 0;
  grid-gap: 3px;
  gap: 3px;
}

.dashboard-company-mini strong,
.dashboard-company-mini small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-company-mini strong {
  color: #ffffff;
  font-size: 13px;
}

.dashboard-company-mini small {
  color: #9eb4c0;
  font-size: 11px;
}

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

.dashboard-sidebar nav a,
.dashboard-sidebar nav span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border-radius: 12px;
  color: #adc0c9;
  font-size: 14px;
  font-weight: 750;
}

.dashboard-sidebar nav .active {
  color: #ffffff;
  background: rgba(45, 212, 191, 0.16);
  box-shadow: inset 3px 0 0 #2dd4bf;
}

.dashboard-sidebar > button {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 12px 13px;
  border: 0;
  border-radius: 12px;
  color: #adc0c9;
  font-weight: 800;
  background: transparent;
}

.dashboard-content {
  width: min(1380px, 100%);
  padding: 36px 42px 55px;
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.dashboard-topbar span,
.dashboard-section-heading span,
.dashboard-profile-card > span {
  color: #0d9488;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.dashboard-topbar h1 {
  margin: 7px 0 4px;
  color: #17324d;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.dashboard-topbar p {
  margin: 0;
  color: #758797;
}

.dashboard-topbar > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d9e6e4;
  border-radius: 13px;
  color: #4c687a;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 50, 77, 0.07);
}

.dashboard-plan-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 29px;
  padding: 18px 21px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 18px;
  color: #0d9488;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.15), transparent 33%),
    #ffffff;
  box-shadow: 0 15px 34px rgba(23, 50, 77, 0.06);
}

.dashboard-plan-banner > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-plan-banner span {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.dashboard-plan-banner strong {
  color: #26465b;
}

.dashboard-plan-banner small {
  color: #718696;
}

.dashboard-active-pill {
  display: inline-flex !important;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #087f73 !important;
  font-size: 12px;
  font-weight: 900;
  background: #ccfbf1;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-top: 20px;
}

.dashboard-stats article {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  padding: 21px;
  border: 1px solid #dce8e6;
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 13px 30px rgba(23, 50, 77, 0.055);
}

.dashboard-stats span {
  color: #78909f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.dashboard-stats strong {
  color: #17324d;
  font-size: 35px;
  letter-spacing: -0.04em;
}

.dashboard-stats small {
  color: #8a9ba8;
  font-size: 11px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  grid-gap: 19px;
  gap: 19px;
  margin-top: 20px;
}

.dashboard-main-card,
.dashboard-profile-card {
  border: 1px solid #dce8e6;
  border-radius: 21px;
  background: #ffffff;
  box-shadow: 0 15px 34px rgba(23, 50, 77, 0.06);
}

.dashboard-main-card {
  padding: 24px;
}

.dashboard-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0d9488;
}

.dashboard-section-heading h2,
.dashboard-profile-card h2 {
  margin: 7px 0 0;
  color: #17324d;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.dashboard-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 22px;
  padding: 30px;
  border: 1px dashed #cbdcda;
  border-radius: 18px;
  color: #0d9488;
  text-align: center;
  background: #f8fbfb;
}

.dashboard-empty h3,
.dashboard-empty p {
  margin: 0;
}

.dashboard-empty h3 {
  color: #28465b;
}

.dashboard-empty p {
  max-width: 520px;
  color: #738796;
  line-height: 1.55;
}

.dashboard-profile-card {
  align-self: start;
  padding: 24px;
}

.dashboard-profile-card > div {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #e2ecea;
  border-radius: 14px;
  background: #f8fbfb;
}

.dashboard-profile-card small {
  color: #8294a2;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-profile-card strong {
  color: #345267;
  font-size: 13px;
}

.dashboard-profile-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding: 13px 14px;
  border-radius: 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #0d9488, #087f73);
}

@media (max-width: 1050px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .login-shell {
    gap: 35px;
  }
}

@media (max-width: 780px) {
  .login-shell {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

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

  .dashboard-sidebar {
    position: static;
    height: auto;
  }

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

  .dashboard-sidebar > button {
    margin-top: 20px;
  }

  .dashboard-content {
    padding: 28px 18px 45px;
  }
}

@media (max-width: 520px) {
  .login-shell {
    width: min(100% - 24px, 1120px);
  }

  .login-presentation h1 {
    font-size: 40px;
  }

  .login-card {
    padding: 27px 21px;
  }

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

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

  .dashboard-plan-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* AUTH E PAINEL DA EMPRESA - FIM */


/* CORREÇÃO DEFINITIVA DO LINK ENTRAR */
.topbar {
  position: relative;
  z-index: 100;
  isolation: isolate;
}

.public-navigation {
  position: relative;
  z-index: 101;
}

.login-coming-soon {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.specialties-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.specialties-field legend {
  margin-bottom: 4px;
  font-weight: 700;
}

.specialties-field > small {
  display: block;
  margin-bottom: 12px;
}

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

.specialty-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.specialty-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.specialty-option:has(input:checked) {
  border-color: currentColor;
  font-weight: 700;
}

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

.dashboard-specialties-card {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.dashboard-specialties-card .dashboard-section-heading {
  align-items: flex-start;
}

.dashboard-specialties-card .dashboard-section-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.6;
}

.dashboard-specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 11px;
  gap: 11px;
  margin-top: 22px;
}

.dashboard-specialty-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 13px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.dashboard-specialty-option:hover {
  border-color: rgba(13, 148, 136, 0.55);
  transform: translateY(-1px);
}

.dashboard-specialty-option.selected {
  border-color: #0d9488;
  background: rgba(13, 148, 136, 0.09);
  color: #0f766e;
  font-weight: 700;
}

.dashboard-specialty-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #0d9488;
}

.dashboard-specialties-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.dashboard-specialties-actions span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-specialties-actions button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-specialties-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.dashboard-specialties-success,
.dashboard-specialties-error {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 11px;
  font-weight: 700;
}

.dashboard-specialties-success {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}

.dashboard-specialties-error {
  background: rgba(220, 38, 38, 0.09);
  color: #b91c1c;
}

@media (max-width: 1100px) {
  .dashboard-specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .dashboard-specialties-card {
    padding: 20px 16px;
  }

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

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

  .dashboard-specialties-actions button {
    width: 100%;
  }
}

.dashboard-opportunity-list {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 20px;
}

.dashboard-opportunity-card {
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 1),
      rgba(241, 245, 249, 0.72)
    );
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.dashboard-opportunity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.dashboard-opportunity-top > span {
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-opportunity-top > strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 0.74rem;
}

.dashboard-opportunity-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
}

.dashboard-opportunity-card > p {
  margin: 8px 0 15px;
  color: #64748b;
  line-height: 1.55;
}

.dashboard-opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.dashboard-opportunity-meta span {
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(15, 23, 42, 0.055);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-opportunity-card > small {
  color: #94a3b8;
  font-size: 0.76rem;
}

.dashboard-opportunity-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.09);
  color: #b91c1c;
  font-weight: 700;
}

@media (max-width: 680px) {
  .dashboard-opportunity-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-opportunity-card {
    padding: 17px;
  }
}

.dashboard-specialties-summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-specialties-summary-header .dashboard-section-heading {
  flex: 1 1;
}

.dashboard-specialties-edit-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(13, 148, 136, 0.35);
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.08);
  color: #0f766e;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-specialties-edit-button:hover {
  background: rgba(13, 148, 136, 0.14);
}

.dashboard-specialties-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-specialties-summary span {
  padding: 9px 13px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.08);
  color: #0f766e;
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-specialties-summary p {
  margin: 0;
  color: #64748b;
}

.dashboard-specialties-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-specialties-actions
  .dashboard-specialties-cancel {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: #475569;
}

@media (max-width: 680px) {
  .dashboard-specialties-summary-header {
    flex-direction: column;
  }

  .dashboard-specialties-edit-button {
    width: 100%;
  }

  .dashboard-specialties-buttons {
    width: 100%;
    flex-direction: column-reverse;
  }

  .dashboard-specialties-buttons button {
    width: 100%;
  }
}

.dashboard-opportunity-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.dashboard-opportunity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.dashboard-opportunity-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 800;
}

.opportunity-details-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(45, 212, 191, 0.12),
      transparent 32%
    ),
    #f4f8f8;
}

.opportunity-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #0d3047;
}

.opportunity-details-header .dashboard-brand {
  color: #ffffff;
}

.opportunity-details-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dffcf7;
  font-weight: 750;
  text-decoration: none;
}

.opportunity-details-container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.opportunity-details-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.opportunity-details-hero > div:first-child > span,
.opportunity-details-title span,
.opportunity-details-aside > span {
  color: #0d9488;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity-details-hero h1 {
  margin: 9px 0 8px;
  color: #0f2940;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.opportunity-details-hero p {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.65;
}

.opportunity-details-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  font-size: 0.82rem;
  font-weight: 850;
}

.opportunity-details-status.interested {
  background: rgba(22, 163, 74, 0.11);
  color: #15803d;
}

.opportunity-details-indicators {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 15px;
  gap: 15px;
  margin-top: 18px;
}

.opportunity-details-indicators article {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 17px;
  background: #ffffff;
}

.opportunity-details-indicators svg {
  color: #0d9488;
}

.opportunity-details-indicators span {
  color: #8494a7;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.opportunity-details-indicators strong {
  color: #0f2940;
  font-size: 1rem;
}

.opportunity-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-gap: 20px;
  gap: 20px;
  margin-top: 20px;
}

.opportunity-details-main,
.opportunity-details-aside {
  padding: 27px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.opportunity-details-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.opportunity-details-title h2 {
  margin: 6px 0 0;
  color: #0f2940;
  font-size: 1.35rem;
}

.opportunity-details-title svg {
  color: #0d9488;
}

.opportunity-items-list {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 22px;
}

.opportunity-items-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-gap: 16px;
  gap: 16px;
  padding: 19px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 16px;
  background: #f8fafc;
}

.opportunity-item-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 900;
}

.opportunity-items-list article > div:last-child > span {
  color: #0d9488;
  font-size: 0.72rem;
  font-weight: 900;
}

.opportunity-items-list h3 {
  margin: 5px 0 7px;
  color: #0f2940;
}

.opportunity-items-list p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}

.opportunity-item-documents {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 750;
}

.opportunity-details-aside {
  align-self: start;
}

.opportunity-details-aside > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 13px;
  background: #f8fafc;
}

.opportunity-details-aside > div svg {
  color: #0d9488;
}

.opportunity-details-aside section {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.opportunity-details-aside small {
  color: #8494a7;
}

.opportunity-details-aside strong {
  color: #0f2940;
}

.opportunity-details-aside > p {
  margin: 20px 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.opportunity-details-aside > button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.opportunity-details-aside > button:disabled {
  cursor: default;
  opacity: 0.68;
}

.opportunity-interest-success,
.opportunity-interest-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.45;
}

.opportunity-interest-success {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}

.opportunity-interest-error {
  background: rgba(220, 38, 38, 0.09);
  color: #b91c1c;
}

.opportunity-details-loading {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 30px;
  background: #f4f8f8;
  color: #0f2940;
  text-align: center;
}

.opportunity-details-loading a {
  color: #0f766e;
  font-weight: 800;
}

@media (max-width: 900px) {
  .opportunity-details-indicators {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .opportunity-details-header {
    padding: 0 18px;
  }

  .opportunity-details-header .dashboard-brand strong {
    display: none;
  }

  .opportunity-details-container {
    width: min(100% - 22px, 1180px);
    padding-top: 20px;
  }

  .opportunity-details-hero {
    flex-direction: column;
    padding: 21px;
  }

  .opportunity-details-indicators {
    grid-template-columns: 1fr 1fr;
  }

  .opportunity-details-main,
  .opportunity-details-aside {
    padding: 20px 16px;
  }

  .opportunity-items-list article {
    grid-template-columns: 1fr;
  }
}

/* Respiro entre a data e o acesso aos detalhes */
.dashboard-opportunity-card > small {
  display: block;
  margin-top: 4px;
}

.dashboard-opportunity-open {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
}


/* CHAT DA OPORTUNIDADE — PREDYON / CHAMACERTO */

.opportunity-chat-panel {
  margin-top: 20px;
  padding: 27px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.opportunity-chat-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7edf0;
}

.opportunity-chat-panel > header span {
  color: #0d9488;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.opportunity-chat-panel > header h2 {
  margin: 6px 0 5px;
  color: #0f2940;
  font-size: 1.35rem;
}

.opportunity-chat-panel > header p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.opportunity-chat-panel > header svg {
  flex: 0 0 auto;
  color: #0d9488;
}

.opportunity-chat-messages {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  max-height: 430px;
  margin-top: 20px;
  overflow-y: auto;
}

.opportunity-chat-message {
  width: min(78%, 720px);
  padding: 14px 16px;
  border: 1px solid #dce7eb;
  border-radius: 16px 16px 16px 5px;
  background: #f6fafb;
}

.opportunity-chat-message.predyon {
  justify-self: start;
  border-color: #cde7e2;
  background: #eef9f6;
}

.opportunity-chat-message.chamacerto {
  justify-self: end;
  border-radius: 16px 16px 5px 16px;
  background: #edf4f8;
}

.opportunity-chat-message > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.opportunity-chat-message strong {
  color: #0f766e;
  font-size: 0.82rem;
}

.opportunity-chat-message small {
  color: #8190a0;
  font-size: 0.72rem;
}

.opportunity-chat-message p {
  margin: 8px 0 0;
  color: #334155;
  line-height: 1.55;
  white-space: pre-wrap;
}

.opportunity-chat-state {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #64748b;
}

.opportunity-chat-state.empty {
  flex-direction: column;
  padding: 25px;
  border: 1px dashed #cad7dd;
  border-radius: 16px;
  text-align: center;
  background: #f8fafc;
}

.opportunity-chat-state.empty svg {
  color: #0d9488;
}

.opportunity-chat-state.empty strong {
  color: #0f2940;
}

.opportunity-chat-state.empty p {
  max-width: 540px;
  margin: 0;
  color: #64748b;
}

.opportunity-chat-error {
  margin-top: 13px;
  padding: 12px;
  border-radius: 11px;
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.09);
}

.opportunity-chat-panel > footer {
  margin-top: 15px;
  color: #8a99aa;
  font-size: 0.75rem;
  text-align: right;
}

@media (max-width: 620px) {
  .opportunity-chat-panel {
    padding: 20px 16px;
  }

  .opportunity-chat-panel > header {
    flex-direction: column;
  }

  .opportunity-chat-message {
    width: 100%;
  }

  .opportunity-chat-message > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}


.opportunity-chat-composer {
  display: grid;
  grid-gap: 11px;
  gap: 11px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e7edf0;
}

.opportunity-chat-composer textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  padding: 14px 15px;
  border: 1px solid #cbd8de;
  border-radius: 14px;
  outline: none;
  background: #ffffff;
  color: #0f2940;
  font: inherit;
  line-height: 1.5;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.opportunity-chat-composer textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.opportunity-chat-composer textarea:disabled {
  background: #f3f6f7;
  cursor: not-allowed;
}

.opportunity-chat-composer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.opportunity-chat-composer small {
  color: #8190a0;
  font-size: 0.74rem;
}

.opportunity-chat-composer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: #0f766e;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.opportunity-chat-composer button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

@media (max-width: 620px) {
  .opportunity-chat-composer > div {
    align-items: stretch;
    flex-direction: column;
  }

  .opportunity-chat-composer button {
    width: 100%;
  }
}


/* Proposta técnica e comercial da oportunidade */
.opportunity-proposal-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(240, 249, 255, 0.96)
    );
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.09);
}

.opportunity-proposal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
  background:
    radial-gradient(
      circle at top right,
      rgba(34, 211, 238, 0.16),
      transparent 38%
    ),
    linear-gradient(135deg, #0f172a, #164e63);
  color: #fff;
}

.opportunity-proposal-header > div {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
}

.opportunity-proposal-header span {
  color: #67e8f9;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.opportunity-proposal-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.opportunity-proposal-header p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.opportunity-proposal-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  padding: 28px;
  color: #475569;
  font-weight: 800;
}

.opportunity-proposal-form {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
  padding: 26px;
}

.opportunity-proposal-block {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
  padding: 24px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.opportunity-proposal-block-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.opportunity-proposal-block-title > span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #ecfeff;
  color: #0e7490;
  font-size: 0.78rem;
  font-weight: 950;
}

.opportunity-proposal-block-title h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 1.08rem;
}

.opportunity-proposal-block-title p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.opportunity-proposal-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.opportunity-proposal-field {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.opportunity-proposal-field.full {
  grid-column: 1 / -1;
}

.opportunity-proposal-field > span {
  color: #334155;
  font-size: 0.82rem;
  font-weight: 850;
}

.opportunity-proposal-field input,
.opportunity-proposal-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: #0f172a;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.opportunity-proposal-field input {
  min-height: 48px;
  padding: 0 14px;
}

.opportunity-proposal-field textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.55;
}

.opportunity-proposal-field input:focus,
.opportunity-proposal-field textarea:focus {
  border-color: #0891b2;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.money-input,
.days-input {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  background: #fff;
}

.money-input:focus-within,
.days-input:focus-within {
  border-color: #0891b2;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.money-input small,
.days-input small {
  padding: 0 13px;
  color: #0e7490;
  font-weight: 900;
  white-space: nowrap;
}

.money-input input,
.days-input input {
  min-width: 0;
  border: 0;
  box-shadow: none !important;
}

.opportunity-proposal-items {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

.opportunity-proposal-items > article {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #f8fafc;
}

.opportunity-proposal-items > article > header {
  padding: 18px 20px;
  border-bottom: 1px solid #dbeafe;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.opportunity-proposal-items header div {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}

.opportunity-proposal-items header small {
  color: #0891b2;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.opportunity-proposal-items header h4 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.opportunity-proposal-items header span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.opportunity-proposal-items
  > article
  > .opportunity-proposal-fields-grid {
  padding: 20px;
}

.opportunity-proposal-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px 20px;
}

.opportunity-proposal-checks label,
.opportunity-proposal-toggle {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 750;
}

.opportunity-proposal-checks label {
  padding: 11px 13px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #fff;
}

.opportunity-proposal-checks input,
.opportunity-proposal-toggle input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #0891b2;
}

.opportunity-proposal-toggle {
  padding: 16px;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  background: #f0f9ff;
}

.opportunity-proposal-toggle div {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.opportunity-proposal-toggle strong {
  color: #0f172a;
}

.opportunity-proposal-toggle span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.opportunity-proposal-total {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(300px, 1.2fr);
  grid-gap: 22px;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(14, 116, 144, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(236, 254, 255, 0.96),
      rgba(239, 246, 255, 0.96)
    );
}

.opportunity-proposal-total-fields {
  align-self: end;
}

.opportunity-proposal-calculation {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.opportunity-proposal-calculation > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px dashed rgba(14, 116, 144, 0.2);
  color: #475569;
}

.opportunity-proposal-calculation strong {
  color: #0f172a;
}

.opportunity-proposal-calculation .final {
  margin-top: 4px;
  padding: 15px 17px;
  border: 0;
  border-radius: 14px;
  background: #0f172a;
  color: #cffafe;
}

.opportunity-proposal-calculation .final strong {
  color: #67e8f9;
  font-size: 1.35rem;
}

.opportunity-proposal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
}

.opportunity-proposal-footer > div {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 560px;
}

.opportunity-proposal-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.opportunity-proposal-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  color: #082f49;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 182, 212, 0.24);
}

.opportunity-proposal-footer button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.opportunity-proposal-error,
.opportunity-proposal-success {
  margin: 0 26px 24px;
  padding: 14px 16px;
  border-radius: 13px;
  font-size: 0.86rem;
  font-weight: 800;
}

.opportunity-proposal-form
  .opportunity-proposal-error,
.opportunity-proposal-form
  .opportunity-proposal-success {
  margin: 0;
}

.opportunity-proposal-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #be123c;
}

.opportunity-proposal-success {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.opportunity-proposal-sent {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
  padding: 26px;
}

.opportunity-proposal-sent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 21px;
  border: 1px solid #a7f3d0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.opportunity-proposal-sent-top > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #047857;
}

.opportunity-proposal-sent-top section {
  display: grid;
  grid-gap: 3px;
  gap: 3px;
}

.opportunity-proposal-sent-top span {
  color: #059669;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.opportunity-proposal-sent-top h3 {
  margin: 0;
  color: #064e3b;
}

.opportunity-proposal-sent-top > strong {
  color: #065f46;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.opportunity-proposal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
}

.opportunity-proposal-summary article {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #fff;
}

.opportunity-proposal-summary small {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.opportunity-proposal-summary strong {
  color: #0f172a;
  font-size: 0.9rem;
}

.opportunity-proposal-sent-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.85rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .opportunity-proposal-header,
  .opportunity-proposal-footer,
  .opportunity-proposal-sent-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .opportunity-proposal-form,
  .opportunity-proposal-sent {
    padding: 17px;
  }

  .opportunity-proposal-block {
    padding: 18px;
  }

  .opportunity-proposal-fields-grid,
  .opportunity-proposal-total {
    grid-template-columns: 1fr;
  }

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

  .opportunity-proposal-footer button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .opportunity-proposal-header {
    padding: 22px 19px;
  }

  .opportunity-proposal-form,
  .opportunity-proposal-sent {
    padding: 13px;
  }

  .opportunity-proposal-block {
    padding: 15px;
    border-radius: 16px;
  }

  .opportunity-proposal-block-title {
    align-items: center;
  }

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

  .opportunity-proposal-checks {
    align-items: stretch;
    flex-direction: column;
  }

  .opportunity-proposal-checks label {
    width: 100%;
  }

  .opportunity-proposal-total,
  .opportunity-proposal-footer {
    padding: 17px;
  }

  .opportunity-proposal-sent-top > strong {
    font-size: 1.55rem;
  }
}


.opportunity-proposal-single-note {
  margin: 0 20px 20px;
  padding: 13px 15px;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  background: #f0f9ff;
  color: #075985;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.5;
}


.opportunity-proposal-panel {
  scroll-margin-top: 22px;
}

