:root {
  --ink: #121212;
  --muted: #6f7177;
  --line: #dedfe2;
  --surface: #f6f6f4;
  --white: #fff;
  --accent: #E2223D;
  --accent-dark: #bd2424;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
}

.tgt-nav {
  padding: 22px 0;
  color: var(--white);
  background: #111;
  border-bottom: 1px solid #2c2c2c;
}

.tgt-nav .container {
  position: relative;
}

.tgt-logo {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.tgt-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  height: 38px;
  object-fit: contain;
}

.member-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.member-menu a {
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  color: #d7d7d7;
  border: 1px solid transparent;
  border-radius: 0px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.member-menu a:hover,
.member-menu a.is-active {
border-bottom: 1px solid var(--accent);
}

.tgt-member-header {
  color: var(--white);
  background: #111;
}

.tgt-member-topbar {
  background:
    radial-gradient(circle at 75% 20%, rgba(226, 34, 61, .1), transparent 24%),
    #0f1010;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.tgt-member-topbar-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
}

.tgt-member-logo {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.tgt-member-logo:hover,
.tgt-member-logo:focus {
  color: var(--accent);
}

.tgt-member-logo img {
  display: block;
  width: auto;
  max-width: 118px;
  height: 34px;
  object-fit: contain;
}

.tgt-member-user {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #f3f3f3;
  font-size: .82rem;
  font-weight: 700;
  z-index: 30;
}

.tgt-member-user-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  color: #f3f3f3;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tgt-member-user-toggle:hover,
.tgt-member-user-toggle:focus {
  color: #fff;
  outline: 0;
}

.tgt-member-user-toggle i {
  color: #fff;
  font-size: .72rem;
  transition: transform .18s ease;
}

.tgt-member-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  background: #fff;
  border: 1px solid #dedfe2;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, .22);
}

.tgt-member-user-menu::before {
  position: absolute;
  top: -8px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid #dedfe2;
  border-left: 1px solid #dedfe2;
  content: "";
  transform: rotate(45deg);
}

.tgt-member-user:hover .tgt-member-user-menu,
.tgt-member-user:focus-within .tgt-member-user-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tgt-member-user:hover .tgt-member-user-toggle i,
.tgt-member-user:focus-within .tgt-member-user-toggle i {
  transform: rotate(180deg);
}

.tgt-member-user-menu a,
.tgt-member-user-menu button {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #151515;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
}

.tgt-member-user-menu a:hover,
.tgt-member-user-menu a:focus,
.tgt-member-user-menu button:hover,
.tgt-member-user-menu button:focus,
.tgt-member-user-menu a.is-active {
  color: var(--accent);
  background: #f4f4f4;
  outline: 0;
}

.tgt-member-user-menu form {
  position: relative;
  z-index: 1;
  margin: 0;
}

.tgt-member-navrow {
  background: linear-gradient(180deg, #1b1b1b 0%, #151515 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.tgt-member-navrow-inner {
  display: flex;
  justify-content: flex-end;
}

.tgt-member-header .member-menu {
  position: static;
  left: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  transform: none;
}

.tgt-member-header .member-menu a,
.tgt-member-header .member-menu button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 3px solid transparent;
  border-radius: 0;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.tgt-member-header .member-menu a:last-of-type,
.tgt-member-header .member-menu button {
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.tgt-member-header .member-menu a:hover,
.tgt-member-header .member-menu a:focus,
.tgt-member-header .member-menu button:hover,
.tgt-member-header .member-menu button:focus,
.tgt-member-header .member-menu a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: 0;
}

.member-logout-form {
  display: flex;
  margin: 0;
}

.tgt-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 55, 55, .2), transparent 28%),
    #111;
}

.tgt-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1.30;
  
}

.tgt-hero .accent,
.tgt-step-num {
  color: var(--accent);
}

.tgt-hero p {
  margin: 0;
  color: #c5c5c5;
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.75;
}

.tgt-hero.member-pattern-hero,
.member-search-hero.member-pattern-hero {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 35%, rgba(226, 34, 61, .2), transparent 34%),
    radial-gradient(circle at 48% 78%, rgba(226, 34, 61, .18), transparent 26%),
    linear-gradient(120deg, rgba(226, 34, 61, .08), transparent 36%),
    #0f1010;
}

.member-pattern-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-position: center 12px;
  background-size: 9px 9px;
  opacity: .22;
  -webkit-mask-image: radial-gradient(circle at 56% 42%, #000 0 28%, transparent 58%);
  mask-image: radial-gradient(circle at 56% 42%, #000 0 28%, transparent 58%);
  pointer-events: none;
}

.member-pattern-hero .container {
  position: relative;
  z-index: 1;
}

#formAlertWrap {
  padding-top: 28px;
}

#formAlertWrap:has(#formAlert[hidden]) {
  padding-top: 0;
}

#formAlert {
  margin: 0;
}

.member-search-page {
  min-height: calc(100vh - 79px);
  background: var(--surface);
}

.member-search-hero {
  padding: 52px 0 34px;
  color: var(--white);
  background: #111;
}

.member-search-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.member-search-form {
  display: flex;
  max-width: 760px;
  gap: 10px;
}

.member-search-input-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.member-search-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
}

.member-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.member-search-suggestion {
  display: flex;
  padding: 12px 16px;
  color: #000;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.member-search-suggestion + .member-search-suggestion {
  border-top: 1px solid var(--line);
}

.member-search-suggestion:hover,
.member-search-suggestion:focus {
  color: #000;
  background: var(--surface);
  outline: 0;
}

.member-search-suggestion-label {
  font-weight: 800;
  line-height: 1.35;
}

.member-search-suggestion-meta {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.member-search-suggestion-empty {
  color: var(--muted);
  cursor: default;
  font-weight: 800;
}

.member-search-form button {
  min-width: 130px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
}

.member-region-filter {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.member-region-filter span {
  margin-right: 6px;
  color: #a7a7a7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.member-region-filter a {
  display: inline-flex;
  min-height: 38px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.member-region-filter a:hover,
.member-region-filter a.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.member-results-section {
  padding: 42px 0 72px;
}

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

.member-results-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.member-results-heading span {
  color: var(--muted);
  font-weight: 700;
}

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

.member-card,
.member-empty,
.member-access-message {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.member-card {
  display: flex;
  min-height: 100%;
  padding: 22px;
  flex-direction: column;
  gap: 18px;
}

.member-card-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.member-card-logo,
.member-card-flag {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #FFF;
}

.member-card-logo img,
.member-card-flag img {
  display: block;
  max-width: 86%;
  max-height: 70px;
  object-fit: contain;
}

.member-card-logo span,
.member-card-flag span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.member-card-logo span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eceff3;
  color: var(--ink);
  font-size: 1.25rem;
}

.member-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #E3213E;
}

.member-trade-name {
  margin: 5px 0 0;
  color: var(--muted);
}

.member-card dl {
  display: grid;
  margin: 0;
  gap: 12px;
}

.member-card dt {
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.member-card dd {
  margin: 3px 0 0;
}

.member-services {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.member-services strong {
  flex: 0 0 100%;
  color: #000;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
}

.mailcontato{
  color: #000;
  text-decoration: none;
}
.mailcontato:hover{
  text-decoration: none;
}

.member-services span {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

.member-actions {
  display: flex;
  margin-top: auto;
  gap: 10px;
  flex-wrap: wrap;
}

.member-actions a {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.member-empty {
  padding: 24px;
  color: var(--muted);
  font-weight: 700;
}

.member-access-message {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.member-back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.member-back-link:hover,
.member-back-link:focus {
  color: var(--accent);
}

.member-details-page {
  min-height: calc(100vh - 124px);
  background: #f4f4f4;
}

.member-details-hero {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  overflow: hidden;
  padding: 42px 0 112px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 35%, rgba(226, 34, 61, .2), transparent 34%),
    radial-gradient(circle at 48% 78%, rgba(226, 34, 61, .18), transparent 26%),
    linear-gradient(120deg, rgba(226, 34, 61, .08), transparent 36%),
    #0f1010;
}

.member-details-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-position: center 12px;
  background-size: 9px 9px;
  opacity: .22;
  -webkit-mask-image: radial-gradient(circle at 56% 42%, #000 0 28%, transparent 58%);
  mask-image: radial-gradient(circle at 56% 42%, #000 0 28%, transparent 58%);
  pointer-events: none;
}

.member-details-hero .container {
  position: relative;
  z-index: 1;
}

.member-details-hero h1 {
  max-width: 1040px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.member-details-hero h1::after {
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 20px;
  background: var(--accent);
  content: "";
}

.member-details-hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.12rem;
  font-weight: 700;
}

.member-detail-section {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: 82px;
}

.member-detail-section .container {
  max-width: 1340px;
}

.member-detail-layout {
  display: grid;
  gap: 14px;
}

.member-detail-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9dbdf;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, .1);
}

.member-detail-card-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}

.member-detail-icon {
display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  color: #e3213e;
  border-radius: 4px;
  font-size: 1rem;
  border: 1px solid #e3213e;
  box-shadow: 2px 2px 3px #c7c7c7;
}

.member-detail-card h2 {
  margin: 0;
  color: #0b0b0b;
  font-size: 1.17rem;
  font-weight: 800;
}

.member-detail-card h3 {
  margin: 0 0 14px;
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: 800;
}

.member-detail-card-body {
  padding: 18px 24px 22px;
}

.member-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 16px 44px;
}

.member-detail-grid .full {
  grid-column: 1 / -1;
}

.member-detail-split::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}

.member-detail-grid-compact {
  gap: 13px 34px;
}

.member-detail-grid dt {
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.member-detail-grid dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: #101010;
  font-size: .92rem;
  line-height: 1.45;
}

.member-detail-grid a {
  color: var(--accent);
  text-decoration: none;
}

.member-services-detail {
  margin-bottom: 20px;
}

.member-services-detail strong {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.member-services-detail span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin: 0 6px 8px 0;
  padding: 0 10px;
  color: #111;
  background: #eef0f3;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}

.member-muted {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.additional-contact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.member-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.member-material-preview {
  display: grid;
  min-height: 100%;
  padding: 14px;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.member-material-preview strong {
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.member-material-preview img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.member-material-placeholder {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(226, 34, 61, .05), transparent 42%),
    #fff;
  border: 1px dashed #c9ccd2;
  border-radius: 4px;
  text-align: center;
}

.member-material-placeholder i {
  color: var(--accent);
  font-size: 1.45rem;
}

.member-material-placeholder span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.member-material-preview span {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.member-material-preview a {
  color: var(--ink);
}

.tgt-group-public-page {
  min-height: calc(100vh - 124px);
  padding: 36px 0 70px;
  background: #f1f2f4;
}

.tgt-group-public-block {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d7d9dd;
}

.tgt-group-public-title {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
  background: transparent;
}

.tgt-group-public-title h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(1.7rem, 2.9vw, 2.55rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.tgt-group-public-title span {
  width: 48px;
  height: 3px;
  margin: 20px 0 18px;
  background: var(--accent);
}

.tgt-group-public-title i {
  color: var(--accent);
  font-size: 2.8rem;
}

.tgt-group-public-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.tgt-group-public-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .06);
}

.tgt-group-public-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e6e9;
}

.tgt-group-public-row:last-child {
  border-bottom: 0;
}

.tgt-group-public-row-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(226, 34, 61, .08);
  border-radius: 50%;
  font-size: 1.55rem;
}

.tgt-group-public-row h2,
.tgt-group-public-section-title {
  margin: 0;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.tgt-group-public-row p {
  max-width: 520px;
  margin: 5px 0 0;
  color: #202020;
  font-size: .9rem;
  line-height: 1.35;
}

.tgt-group-public-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.tgt-group-public-links a {
  display: inline-flex;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  color: var(--accent);
  background: #fff3f5;
  border: 1px solid rgba(226, 34, 61, .18);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.tgt-group-public-text {
  margin-top: 10px;
  color: #252525;
  font-size: .9rem;
  line-height: 1.5;
}

.tgt-group-public-arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
}

.tgt-group-public-arrow.is-muted {
  color: #c1c4c9;
}

.tgt-group-public-section-title {
  margin-bottom: 14px;
  color: var(--accent);
}

.tgt-group-public-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tgt-group-person-card,
.tgt-group-partner-card {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .05);
}

.tgt-group-person-card {
  display: flex;
  min-height: 210px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.tgt-group-person-photo {
  display: flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  color: #fff;
  background: #d8dce1;
  border-radius: 50%;
  font-size: 2rem;
}

.tgt-group-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tgt-group-person-card h3,
.tgt-group-partner-card h3 {
  margin: 0;
  color: #111;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.25;
}

.tgt-group-person-card p,
.tgt-group-partner-card p {
  margin: 3px 0 11px;
  color: #333;
  font-size: .82rem;
  line-height: 1.4;
}

.tgt-group-person-card a,
.tgt-group-person-card span,
.tgt-group-partner-card a,
.tgt-group-partner-card span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: #222;
  font-size: .82rem;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.tgt-group-person-card .fa-envelope,
.tgt-group-partner-card .fa-envelope {
  color: var(--accent);
}

.tgt-group-person-card .fa-whatsapp,
.tgt-group-partner-card .fa-whatsapp {
  color: #16a34a;
}

.tgt-group-partner-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tgt-group-partner-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 156px;
}

.tgt-group-partner-logo {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--muted);
  background: #f7f8fa;
  border: 1px solid #e5e6e9;
  border-radius: 6px;
  font-size: 1.55rem;
}

.tgt-group-partner-logo img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.tgt-group-partner-card h3 a {
  display: inline;
  margin: 0;
  color: #111;
  font-size: inherit;
}

.tgt-group-public-empty {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 8px;
  font-weight: 800;
}

.tgt-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.tgt-step-num,
.tgt-step-title {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.tgt-step-title {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.35;
}

.form-control,
.form-select {
  min-height: 62px;
  border: 1px solid #cfd0d3;
  border-radius: 3px;
}

textarea.form-control {
  min-height: 145px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 .2rem rgba(18, 18, 18, .08);
}

.ts-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ts-wrapper.form-select {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 62px;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
}

.ts-control {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 6px;
  padding: 1.625rem 2.25rem .625rem .75rem;
  border: 1px solid #cfd0d3;
  border-radius: 3px;
  background: var(--white);
  box-shadow: none;
  cursor: text;
}

.ts-wrapper.single .ts-control::after {
  position: absolute;
  right: .9rem;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-color: var(--ink) transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
}

.ts-wrapper.dropdown-active .ts-control::after {
  border-color: transparent transparent var(--ink);
  border-width: 0 5px 5px;
}

.ts-control > input {
  flex: 1 1 auto;
  min-width: 80px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink);
  font: inherit;
}

.ts-control .item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ts-wrapper.multi .ts-control {
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-right: .75rem;
}

.ts-wrapper.multi .ts-control .item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 4px 4px 10px;
  border: 1px solid #d8dde5;
  border-radius: 999px;
  background: #f7f8fa;
  color: var(--ink);
  line-height: 1.2;
}

.ts-wrapper.multi .ts-control .item .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 0 0 2px;
  border: 0;
  border-radius: 50%;
  background: #e8ebef;
  color: #59616d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}

.ts-wrapper.multi .ts-control .item .remove:hover,
.ts-wrapper.multi .ts-control .item .remove:focus {
  background: #dfe3e8;
  color: #121212;
}

.ts-wrapper.multi .ts-dropdown .option.selected,
.ts-wrapper.multi .ts-dropdown .option[aria-selected="true"] {
  background: #f0f2f5;
  color: #6b7280;
}

.ts-wrapper.focus .ts-control {
  border-color: var(--ink);
  box-shadow: 0 0 0 .2rem rgba(18, 18, 18, .08);
}

.ts-wrapper.is-invalid .ts-control {
  border-color: #dc3545;
}

.ts-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 1050;
  width: 100%;
  overflow: hidden;
  border: 1px solid #cfd0d3;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(18, 18, 18, .12);
}

.ts-dropdown-content {
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px 0;
}

.ts-dropdown .option,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 8px 12px;
  color: var(--ink);
  cursor: pointer;
}

.ts-dropdown .active {
  background: var(--surface);
  color: var(--ink);
}

.fieldset-label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 8px;
}

.tgt-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tgt-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.services-error {
  display: none;
  margin-top: 9px;
  color: #dc3545;
  font-size: .875rem;
}

.services-error.is-visible {
  display: block;
}

.upload-card {
  display: flex;
  min-height: 132px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  background: var(--surface);
  border: 1px dashed #afb1b6;
  border-radius: 4px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.upload-card.has-file {
  justify-content: center;
  background: #fff;
}

.upload-card.is-removing {
  opacity: .64;
  border-color: #dc3545;
}

.upload-card:hover,
.upload-card:focus-within {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--ink);
}

.upload-card.is-invalid {
  border-color: #dc3545;
}

.upload-icon {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.35rem;
}

.upload-existing {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.upload-existing-preview {
  display: flex;
  width: 100%;
  min-height: 136px;
  max-height: 136px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  text-decoration: none;
}

.upload-existing-preview img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 136px;
  object-fit: contain;
}

.upload-document-icon {
  display: inline-flex;
  min-width: 72px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.upload-title {
  font-size: .9rem;
  font-weight: 700;
}

.upload-hint,
.upload-filename {
  margin-top: 5px;
  color: var(--muted);
  font-size: .76rem;
  overflow-wrap: anywhere;
}

.upload-filename {
  color: var(--ink);
  font-weight: 600;
}

.upload-current {
  display: grid;
  width: 100%;
  gap: 3px;
  color: var(--muted);
  font-size: .76rem;
}

.upload-current strong {
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.upload-remove-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #dc3545;
  border-radius: 4px;
  background: #fff;
  color: #dc3545;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, opacity .15s ease;
}

.upload-remove-button:hover,
.upload-remove-button:focus {
  background: #dc3545;
  color: #fff;
}

.upload-remove-button:disabled {
  opacity: .6;
  cursor: wait;
}

.tgt-confirm-overlay,
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18, 18, 18, .48);
}

.tgt-confirm-box,
.confirm-box {
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(18, 18, 18, .22);
}

.tgt-confirm-box h2,
.confirm-box h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.tgt-confirm-box p,
.confirm-box p {
  margin: 0;
  color: var(--muted);
}

.tgt-confirm-actions,
.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.tgt-confirm-actions button,
.confirm-actions button {
  min-width: 86px;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.tgt-confirm-no,
.confirm-no {
  background: #e9ecef;
  color: var(--ink);
}

.tgt-confirm-yes,
.confirm-yes {
  background: #dc3545;
  color: #fff;
}

.agreement-wrap {
  padding: 26px;
  background: var(--surface);
}

.tgt-submit-section {
  padding: 40px 0 90px;
}

.btn-submit {
  display: inline-flex;
  min-height: 58px;
  padding: 0 28px;
  gap: 22px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: background .2s ease, transform .2s ease;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn-submit.is-loading .spinner {
  display: inline-block;
}

.btn-submit.is-loading .btn-arrow {
  display: none;
}

.tgt-footer {
  min-height: 80px;
  background: #111;
}

.login-page {
  display: grid;
  min-height: calc(100vh - 76px);
  padding: 42px 18px;
  place-items: center;
  background: var(--surface);
}

.login-panel {
  width: min(100%, 460px);
  padding: clamp(28px, 5vw, 44px);
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, .07);
}

.login-panel h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.login-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

.login-submit {
  width: 100%;
}

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

@media (max-width: 991.98px) {
  .tgt-group-public-block {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
  }

  .tgt-group-public-content {
    padding: 0;
  }

  .tgt-group-public-cards,
  .tgt-group-partner-cards {
    grid-template-columns: 1fr;
  }

  .tgt-group-public-row {
    grid-template-columns: 58px minmax(0, 1fr) 26px;
    padding: 14px 16px;
  }

  .tgt-group-public-row-icon {
    width: 50px;
    height: 50px;
  }

  .tgt-nav .container {
    flex-direction: column;
    gap: 16px;
  }

  .member-menu {
    position: static;
    transform: none;
  }

  .tgt-member-navrow-inner {
    justify-content: center;
  }

  .tgt-member-header .member-menu {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .tgt-member-header .member-menu a,
  .tgt-member-header .member-menu button {
    min-height: 54px;
    padding: 0 18px;
  }
}

@media (max-width: 767.98px) {
  .tgt-group-public-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tgt-group-public-title {
    min-height: 0;
    padding: 10px 0 0;
  }

  .tgt-group-public-content {
    padding: 0;
  }

  .tgt-group-public-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .tgt-group-public-arrow {
    display: none;
  }

  .tgt-group-partner-card {
    grid-template-columns: 1fr;
  }

  .tgt-group-partner-logo {
    min-height: 120px;
  }

  .tgt-group-partner-logo img {
    height: 120px;
  }

  .tgt-member-topbar-inner {
    min-height: 74px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .tgt-member-user {
    max-width: 100%;
  }

  .tgt-member-user-toggle span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .member-details-hero {
    min-height: 320px;
    padding: 34px 0 94px;
  }

  .tgt-hero.member-pattern-hero,
  .member-search-hero.member-pattern-hero {
    min-height: 320px;
  }

  .member-detail-card-body {
    padding: 16px;
  }

  .member-detail-split::before {
    display: none;
  }

  .additional-contact-grid {
    grid-template-columns: 1fr;
  }

  .member-search-form,
  .member-results-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .member-region-filter {
    align-items: stretch;
  }

  .member-region-filter span {
    width: 100%;
  }

  .member-results-grid {
    grid-template-columns: 1fr;
  }

  .member-detail-grid {
    grid-template-columns: 1fr;
  }

  .member-detail-grid .full {
    grid-column: auto;
  }

  .member-materials-grid {
    grid-template-columns: 1fr;
  }

  .tgt-section {
    padding: 52px 0;
  }

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

  .btn-submit {
    width: 100%;
  }
}

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

.BorderLink{ }
.BorderLink a{ color: var(--accent); text-decoration: none; }
.BorderLink a:hover{ }
.Border00{
  border-bottom: 1px solid #E3E3E3;
  padding: 0px 0px 5px 0px;
}
