:root {
  --navy: #00224d;
  --navy-dark: #13254b;
  --green: #18b857;
  --orange: #f39425;
  --gray-bg: #f3f3f3;
  --gray-line: #e5e5e5;
  --gray-soft: #f7f7f7;
  --gray-text: #666666;
  --title: #203a71;
  --panel-text: #4b4b4b;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.olipart-body {
  background: #ffffff;
  color: var(--panel-text);
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1240px;
}

.olipart-header,
.olipart-footer {
  background: var(--navy);
  color: #fff;
}

.olipart-header {
  min-height: 68px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.olipart-header-inner,
.olipart-footer-inner,
.olipart-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.olipart-header-inner {
  align-items: center;
  min-height: 68px;
  gap: 18px;
}

.olipart-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #fff;
}

.olipart-logo-image {
  display: block;
  width: 140px;
  height: auto;
}

.olipart-nav,
.olipart-header-actions,
.olipart-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
}

.olipart-nav {
  margin-left: auto;
}

.olipart-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.olipart-nav a.is-active,
.olipart-nav a:hover {
  color: #fff;
}

.olipart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.olipart-btn-light {
  background: #fff;
  color: var(--navy);
}

.olipart-header-register-btn:hover {
  background: var(--orange);
  color: #fff;
}

.olipart-btn-orange {
  background: var(--orange);
}

.olipart-btn-orange:hover {
  background: var(--navy);
  color: #fff;
}

.olipart-btn-green {
  background: var(--green);
}

.olipart-main {
  background: #f4f5f7;
}

.olipart-page {
  padding: 36px 0 52px;
}

.olipart-text-page {
  background: #fff;
}

.olipart-text-content {
  max-width: 860px;
  margin: 0 auto;
}

.olipart-text-content h1 {
  margin: 18px 0 22px;
  color: #33353b;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.olipart-text-content p {
  margin: 0 0 18px;
  color: #5f6672;
  font-size: 1rem;
  line-height: 1.75;
}

.olipart-auth-page {
  padding: 52px 0 68px;
  background: #f4f5f7;
}

.olipart-auth-layout {
  max-width: 520px;
  margin: 28px auto 0;
}

.olipart-auth-layout-wide {
  max-width: 1040px;
}

.olipart-auth-panel {
  padding: 34px 36px 32px;
  border: 1px solid #d8dce2;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.olipart-auth-panel-wide {
  padding: 36px;
}

.olipart-auth-intro {
  margin-bottom: 24px;
}

.olipart-auth-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  background: #eef0f3;
  color: #4c5563;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.olipart-auth-intro h1 {
  margin: 16px 0 10px;
  color: #273142;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.olipart-auth-intro p {
  margin: 0;
  color: #6a7280;
  font-size: 0.96rem;
  line-height: 1.65;
}

.olipart-auth-form {
  display: grid;
  gap: 18px;
}

.olipart-auth-links {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.olipart-auth-links a,
.olipart-auth-back-link {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.olipart-auth-links a:hover,
.olipart-auth-back-link:hover {
  color: var(--orange);
}

.olipart-auth-grid {
  display: grid;
  gap: 16px;
}

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

.olipart-auth-grid-balanced {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.olipart-auth-span-1 {
  grid-column: span 1;
}

.olipart-auth-span-2 {
  grid-column: span 2;
}

.olipart-auth-span-3 {
  grid-column: span 3;
}

.olipart-auth-span-4 {
  grid-column: span 4;
}

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

.olipart-auth-field span {
  color: #4b5563;
  font-size: 0.84rem;
  font-weight: 700;
}

.olipart-auth-field .olipart-auth-input,
.olipart-auth-field .olipart-auth-textarea,
.olipart-auth-form .olipart-auth-input,
.olipart-auth-form .olipart-auth-textarea {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #aeb6c1;
  background: #f1f3f5;
  color: #2f3744;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.olipart-auth-field .olipart-auth-textarea,
.olipart-auth-form .olipart-auth-textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.olipart-auth-field .olipart-auth-input::placeholder,
.olipart-auth-field .olipart-auth-textarea::placeholder,
.olipart-auth-form .olipart-auth-input::placeholder,
.olipart-auth-form .olipart-auth-textarea::placeholder {
  color: #7d8794;
}

.olipart-auth-field .olipart-auth-input:focus,
.olipart-auth-field .olipart-auth-textarea:focus,
.olipart-auth-form .olipart-auth-input:focus,
.olipart-auth-form .olipart-auth-textarea:focus {
  outline: none;
  background: #f5f6f7;
  border-color: #8a939f;
  box-shadow: 0 0 0 3px rgba(138, 147, 159, 0.1);
}
.olipart-auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5c6573;
  font-size: 0.9rem;
}

.olipart-auth-check input {
  width: 16px;
  height: 16px;
}

.olipart-auth-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  background: var(--orange);
  color: #fff;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.olipart-auth-submit:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.olipart-auth-back-link {
  justify-self: center;
}

.olipart-error-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.olipart-error-list li + li {
  margin-top: 4px;
}

.olipart-rules-box {
  border: 1px solid #d8dce2;
  background: #f8fafc;
}

.olipart-rules-box summary {
  min-height: 52px;
  padding: 16px 18px;
  color: #24344c;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.olipart-rules-content {
  max-height: 220px;
  overflow: auto;
  padding: 0 18px 18px;
  color: #5f6672;
  font-size: 0.9rem;
  line-height: 1.65;
}

.olipart-rules-content p {
  margin: 0 0 10px;
}

.olipart-rules-check {
  align-items: flex-start;
}

.olipart-rules-check input {
  margin-top: 3px;
}
.olipart-section-title,
.olipart-location-title,
.olipart-simple-title,
.olipart-why h2 {
  color: #33353b;
  font-weight: 900;
  text-align: center;
}

.olipart-section-title,
.olipart-why h2 {
  font-size: 2.85rem;
  margin-bottom: 46px;
}

.olipart-simple-title {
  font-size: 2.2rem;
  margin: 24px 0 40px;
}

.olipart-register-success {
  margin: 0 auto;
  text-align: center;
}

.olipart-register-success .olipart-simple-title {
  margin-bottom: 22px;
}

.olipart-register-success p {
  margin: 0 auto 10px;
  color: #5f6672;
  font-size: 1rem;
  line-height: 1.7;
}

.olipart-hero {
  min-height: 380px;
  padding: 48px 0 62px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.olipart-hero-copy {
  max-width: 80%;
  color: #444;
  padding-top: 6px;
}

.olipart-hero-line {
  display: block;
  width: 72px;
  height: 4px;
  background: var(--navy);
  margin-bottom: 18px;
}

.olipart-hero-copy h1 {
  margin: 0 0 10px;
  font-size: 3.8rem;
  line-height: 1.02;
  font-weight: 900;
  color: #33353b;
}

.olipart-hero-copy p {
  max-width: 60%;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3f434a;
}

.olipart-search {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr auto;
  gap: 1px;
  max-width: 100%;
  margin-top: 40px;
  background: var(--navy);
  border: 4px solid var(--navy);
}

.olipart-search-booking {
  grid-template-columns: 1.45fr 1fr 1fr auto;
  box-shadow: none;
}

.olipart-search input,
.olipart-search select,
.olipart-search button,
.olipart-input,
.olipart-textarea,
.olipart-file {
  width: 100%;
  min-height: 44px;
  border: 0;
  padding: 0 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  box-sizing: border-box;
}

.olipart-search input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.olipart-search select {
  appearance: none;
}

.olipart-search button,
.olipart-submit,
.olipart-primary-btn {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.olipart-periodo-input {
  letter-spacing: 0.02em;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.olipart-auth-form .olipart-auth-submit {
  background: var(--orange);
  color: #fff;
}

.olipart-auth-form .olipart-auth-submit:hover {
  background: var(--navy);
  color: #fff;
}

.olipart-accommodations {
  background: var(--gray-bg);
  padding: 72px 0 58px;
}

.olipart-access-gate,
.olipart-access-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.olipart-access-gate {
  margin-top: 40px;
}

.olipart-access-gate .olipart-btn,
.olipart-access-actions .olipart-btn {
  min-height: 44px;
  padding: 0 18px;
}

.olipart-access-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 36px;
  border: 1px solid #d8dce2;
  background: #fff;
  text-align: center;
}

.olipart-access-panel h3 {
  margin: 0 0 10px;
  color: #33353b;
  font-size: 1.55rem;
  font-weight: 900;
}

.olipart-access-panel p {
  margin: 0 auto 22px;
  max-width: 560px;
  color: var(--gray-text);
  line-height: 1.6;
}

.olipart-access-actions {
  justify-content: center;
}

.olipart-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.olipart-search-empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 38px 32px;
  border: 1px solid #d8dce2;
  background: #fff;
  text-align: center;
}

.olipart-search-empty h3 {
  margin: 0 0 10px;
  color: #33353b;
  font-size: 1.7rem;
  font-weight: 900;
}

.olipart-search-empty p {
  margin: 0;
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.6;
}

.olipart-card-media {
  height: 420px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.olipart-card-body {
  padding-top: 12px;
  color: #6a6a6a;
}

.olipart-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;
  background: rgba(23, 44, 89, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.olipart-card-city {
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.olipart-card-neighborhood {
  font-size: 0.9rem;
}

.olipart-card-address {
  margin-top: 6px;
  color: #555b66;
  font-size: 0.82rem;
  line-height: 1.35;
}

.olipart-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.olipart-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: #edf2fb;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.olipart-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

.olipart-card-actions a,
.olipart-card-price {
  min-height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.olipart-card-actions a {
  background: #f39425;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.olipart-card-actions a:hover {
  background: #00224d;
  color: #fff;
}

.olipart-card-price {
  background: var(--navy);
  flex-direction: column;
  line-height: 1;
}

.olipart-card-price .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 8px 12px;
}

.olipart-card-price strong {
  font-size: 1.55rem;
}
.olipart-card-price .eyebrow {
  text-align: left;
  width: 100%;
}
.olipart-card-price .eyebrow,
.olipart-card-price .suffix {
  font-size: 0.8rem;
  line-height: 0.5;
  letter-spacing: 0.04em;
}

.olipart-card-price.is-stacked .content {
  gap: 2px;
}

.olipart-why {
  padding: 68px 0 56px;
  background: #fff;
  text-align: center;
}

.olipart-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.olipart-why-item {
  max-width: 310px;
  margin: 0 auto;
  color: var(--title);
}

.olipart-why-icon {
  margin-bottom: 14px;
}

.olipart-why-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.olipart-why-item span {
  display: block;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.olipart-why-item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #666;
}

.olipart-form-panel,
.olipart-payment-panel,
.olipart-confirm-box,
.olipart-white-panel,
.olipart-side-card,
.olipart-detail-card {
  background: var(--gray-bg);
  color: var(--panel-text);
}

.olipart-form-panel,
.olipart-payment-panel,
.olipart-confirm-box,
.olipart-white-panel,
.olipart-side-card,
.olipart-detail-card {
  padding: 16px 18px;
}

.olipart-form-panel {
  max-width: 820px;
}

.olipart-payment-panel,
.olipart-confirm-box {
  max-width: 820px;
  margin: 0 auto;
}

.olipart-white-panel h2,
.olipart-side-card h2,
.olipart-detail-card h2,
.olipart-payment-panel h2,
.olipart-confirm-box h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 300;
}

.olipart-pix-page {
  padding: 24px 0 72px;
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 148, 37, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #00224d 0%, #1e376d 26%, #f3f6fb 26%, #f3f6fb 100%);
}

.olipart-pix-header {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
}

.olipart-pix-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.olipart-pix-header h1 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.olipart-pix-header p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.olipart-pix-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.olipart-pix-stack {
  display: grid;
  gap: 22px;
}

.olipart-pix-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(8, 15, 35, 0.12);
  color: #102245;
}

.olipart-pix-card-primary {
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 148, 37, 0.12),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.98);
}

.olipart-pix-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.olipart-pix-label {
  display: inline-block;
  color: #587092;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.olipart-pix-card h2,
.olipart-pix-card h3 {
  margin: 10px 0 0;
  color: #102245;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.olipart-pix-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.olipart-pix-card h3 {
  font-size: 1.7rem;
}

.olipart-pix-card p,
.olipart-pix-support {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.olipart-pix-total {
  min-width: 180px;
  padding: 14px 16px;
  background: #eff4fb;
  text-align: right;
}

.olipart-pix-total span {
  display: block;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.olipart-pix-total strong {
  display: block;
  margin-top: 8px;
  color: #102245;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.olipart-pix-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.olipart-pix-meta-item {
  padding: 14px 16px;
  border: 1px solid #dbe4f0;
  background: #f8fafc;
}

.olipart-pix-meta-item span {
  display: block;
  color: #64748b;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.olipart-pix-meta-item strong {
  display: block;
  margin-top: 8px;
  color: #102245;
  font-size: 1rem;
}

.olipart-pix-qr-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  margin-bottom: 20px;
  padding: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.olipart-pix-qr-image {
  display: block;
  width: min(100%, 290px);
  height: auto;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 34, 69, 0.12);
}

.olipart-pix-warning {
  padding: 16px 18px;
  border: 1px solid rgba(243, 148, 37, 0.3);
  background: rgba(243, 148, 37, 0.12);
  color: #9a4e05;
  font-size: 0.94rem;
  line-height: 1.6;
}

.olipart-pix-copy label {
  display: block;
  margin-bottom: 10px;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.olipart-pix-textarea {
  width: 100%;
  min-height: 132px;
  padding: 16px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #102245;
  font-size: 0.93rem;
  line-height: 1.5;
  resize: none;
  box-sizing: border-box;
}

.olipart-pix-steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.olipart-pix-step {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.olipart-pix-step strong {
  color: #102245;
  font-size: 1rem;
  font-weight: 900;
}

.olipart-pix-step span {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.55;
}

.olipart-pix-form {
  margin-top: 18px;
}

.olipart-pix-upload {
  margin-bottom: 14px;
  padding: 18px;
  border: 1px dashed #bfd0e5;
  background: #f8fafc;
}

.olipart-pix-upload .olipart-file {
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  box-sizing: border-box;
}

.olipart-pix-submit {
  width: 100%;
  min-height: 54px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.olipart-pix-link {
  display: inline-flex;
  margin-top: 14px;
  color: #102245;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.olipart-pix-link:hover {
  text-decoration: underline;
}

.olipart-row-2,
.olipart-row-3,
.olipart-row-4,
.olipart-row-5 {
  display: grid;
  gap: 10px;
}

.olipart-row-2 {
  grid-template-columns: repeat(2, 1fr);
}
.olipart-row-3 {
  grid-template-columns: repeat(3, 1fr);
}
.olipart-row-4 {
  grid-template-columns: repeat(4, 1fr);
}
.olipart-row-5 {
  grid-template-columns: repeat(5, 1fr);
}

.olipart-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  color: #747474;
}

.olipart-textarea {
  min-height: 110px;
  padding: 10px 12px;
  line-height: 1.45;
  resize: vertical;
}

.olipart-submit,
.olipart-primary-btn {
  min-height: 72px;
  padding: 0 16px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.olipart-tabs {
  padding-top: 8px;
  gap: 6px;
}

.olipart-tab {
  min-width: 122px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  position: relative;
}

.olipart-tab.is-active {
  background: var(--green);
}

.olipart-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--green);
}

.olipart-cadastro-grid,
.olipart-reservation-stack {
  max-width: 820px;
  margin: 0 auto;
}

.olipart-reservation-stack {
  gap: 26px;
}

.olipart-reservation-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.olipart-reservation-header.is-finished {
  background: #b9b9b9;
}

.olipart-reservation-header small {
  display: block;
  font-size: 0.5rem;
  opacity: 0.9;
}

.olipart-status-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.olipart-status-badge {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.olipart-section-label {
  margin: 18px 0 10px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #5a5a5a;
}

.olipart-values {
  font-size: 0.5rem;
}

.olipart-values-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.olipart-values-total {
  font-weight: 700;
}

.olipart-footer {
  margin-top: 0;
  padding: 36px 0 20px;
}

.olipart-footer-brand {
  max-width: 290px;
}

.olipart-footer-brand p,
.olipart-footer-links,
.olipart-footer-cities,
.olipart-footer-contact {
  font-size: 0.82rem;
  line-height: 1.55;
}

.olipart-footer-contact {
  font-size: 0.82rem;
  line-height: 1.55;
}

.olipart-footer-contact .contacts {
  margin: 15px 0px;
}

.olipart-footer-links{
  display: grid;
  gap: 8px;
}
.olipart-footer-cities {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.olipart-footer-links {
  margin-bottom: 20px;
}

.olipart-footer-links a,
.olipart-footer-cities a,
.olipart-footer-contact {
  color: rgba(255, 255, 255, 0.82);
}

.olipart-footer-cities a:hover {
  color: #fff;
}

.olipart-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.olipart-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.92rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.olipart-footer-social a:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.olipart-footer-bottom {
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  color: #fff;
}

.olipart-footer-bottom strong {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  .olipart-auth-layout,
  .olipart-auth-layout-wide {
    max-width: 100%;
  }

  .olipart-auth-panel,
  .olipart-auth-panel-wide {
    padding: 28px 24px;
  }
  .olipart-header-inner,
  .olipart-footer-inner,
  .olipart-footer-bottom,
  .olipart-card-grid,
  .olipart-why-grid,
  .olipart-row-2,
  .olipart-row-3,
  .olipart-row-4,
  .olipart-row-5,
  .olipart-search {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .olipart-nav,
  .olipart-header-actions,
  .olipart-tabs {
    flex-wrap: wrap;
  }

  .olipart-header-inner,
  .olipart-footer-inner,
  .olipart-footer-bottom {
    gap: 18px;
  }

  .olipart-pix-grid,
  .olipart-pix-meta {
    grid-template-columns: 1fr;
  }

  .olipart-pix-card,
  .olipart-pix-card-primary {
    padding: 22px;
  }

  .olipart-pix-card-head {
    flex-direction: column;
  }

  .olipart-pix-total {
    width: 100%;
    text-align: left;
  }

  .olipart-pix-qr-box {
    min-height: 240px;
  }
}

.olipart-raia-logo {
  width: 37px;
  height: auto;
  display: block;
}

.olipart-detail-page {
  padding-top: 18px;
  padding-bottom: 56px;
}

.olipart-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 34px;
  align-items: start;
}

.olipart-detail-main {
  max-width: 100%;
}

.olipart-gallery {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #e8edf3;
}

.olipart-gallery[style] {
  display: none;
}

.olipart-gallery[style] + .olipart-detail-location,
.olipart-gallery[style] + .olipart-detail-location + .olipart-detail-subtitle,
.olipart-gallery[style] + .olipart-detail-location + .olipart-detail-subtitle + .olipart-detail-address {
  display: none;
}

.olipart-gallery-track {
  display: flex;
  gap: 14px;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.olipart-gallery-track::-webkit-scrollbar {
  display: none;
}

.olipart-gallery-item {
  flex: 0 0 calc((100% - 14px) / 2);
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
}

.olipart-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.olipart-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.olipart-gallery-arrow.left {
  left: 0;
}

.olipart-gallery-arrow.right {
  right: 0;
}

.olipart-detail-location {
  margin-top: 12px;
  color: #2c2e35;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.olipart-detail-subtitle {
  margin-top: 8px;
  color: #6a6a6a;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 500;
}

.olipart-detail-address {
  max-width: 760px;
  margin-top: 12px;
  color: #404650;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
}

.olipart-detail-address-text {
  margin-bottom: 14px;
}

.olipart-detail-block {
  margin-top: 30px;
}

.olipart-detail-block h3 {
  margin: 0 0 14px;
  color: #666;
  font-size: 2rem;
  font-weight: 300;
}

.olipart-detail-block p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.45;
}

.olipart-detail-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 18px;
}

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

.olipart-offers-column h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.olipart-offers-column .olipart-detail-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.olipart-detail-list-item {
  position: relative;
  padding-left: 14px;
  color: #363636;
  font-size: 0.9rem;
}

.olipart-detail-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--panel-text);
}

.olipart-map {
  position: relative;
  width: 100%;
  height: 300px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.olipart-map .leaflet-control-attribution {
  font-size: 0.65rem;
}

.olipart-map-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 148, 37, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.olipart-map-empty-copy {
  max-width: 320px;
  padding: 24px;
  text-align: center;
  color: #51647f;
}

.olipart-map-empty-copy strong {
  display: block;
  margin-bottom: 8px;
  color: #102245;
  font-size: 1.02rem;
  font-weight: 800;
}

.olipart-map-empty-copy span {
  display: block;
  line-height: 1.6;
}

.olipart-booking-card {
  padding: 24px;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 148, 37, 0.14),
      transparent 34%
    ),
    #f8fafc;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.olipart-booking-header {
  margin-bottom: 18px;
}

.olipart-booking-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(16, 34, 69, 0.08);
  color: #526987;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.olipart-booking-card h2 {
  margin: 14px 0 8px;
  color: #102245;
  font-size: 2.15rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.olipart-booking-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.olipart-booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #eff4fb;
}

.olipart-booking-summary span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.olipart-booking-summary strong {
  color: #102245;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.olipart-booking-card .olipart-field {
  margin-top: 16px;
}

.olipart-booking-card .olipart-field label {
  display: block;
  margin-bottom: 8px;
  color: #526987;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.olipart-booking-card .olipart-input,
.olipart-booking-card .olipart-textarea {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #102245;
  font-size: 0.92rem;
  box-sizing: border-box;
}

.olipart-booking-card .olipart-textarea {
  min-height: 120px;
  padding: 14px 16px;
}

.olipart-booking-card .olipart-periodo-input,
.olipart-booking-card .olipart-período-input {
  background-color: #fff;
  background-image: none;
}

.olipart-booking-period-preview {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.84rem;
}

.olipart-booking-feedback {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.olipart-booking-feedback.is-warning {
  color: #a16207;
}

.olipart-booking-feedback.is-danger {
  color: #b42318;
  font-weight: 700;
}

.olipart-booking-totals {
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dbe4f0;
}

.olipart-booking-totals-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.olipart-booking-totals-head span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.olipart-booking-totals-head strong {
  color: #102245;
  font-size: 0.96rem;
  font-weight: 800;
}

.olipart-booking-values {
  font-size: 0.84rem;
}

.olipart-booking-values .olipart-values-row {
  margin-bottom: 10px;
  color: #526987;
}

.olipart-booking-values .olipart-values-total {
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  color: #102245;
}

.olipart-booking-group .reserva-checkbox-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
}

.olipart-booking-button {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #102245 0%, #1b3a70 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.olipart-booking-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.client-shell-hero {
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 148, 37, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, #102245 0%, #1c3970 58%, #274987 100%);
  color: #fff;
  padding: 44px 0 86px;
}

.client-shell-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
}

.client-shell-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-shell-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.client-shell-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.client-shell-summary {
  display: grid;
  gap: 16px;
}

.client-summary-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.client-summary-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.05;
}

.client-summary-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.client-summary-label {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.client-summary-actions .olipart-btn {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.client-shell-nav-wrap {
  margin-top: -42px;
}

.client-shell-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 34, 69, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.client-shell-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #587092;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.client-shell-link:hover,
.client-shell-link.is-active {
  background: #102245;
  color: #fff;
  transform: translateY(-1px);
}

.client-shell-content {
  padding: 28px 0 68px;
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 26%), #fff;
}

.client-page {
  display: grid;
  gap: 24px;
}

.client-panel,
.client-stat-card,
.client-list-card,
.client-form-card,
.client-detail-card,
.client-highlight-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.client-panel,
.client-form-card,
.client-detail-card,
.client-highlight-card {
  padding: 28px;
}

.client-panel-header,
.client-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.client-detail-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.client-print-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #102245;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.client-print-btn:hover {
  border-color: var(--green);
  background: #f4fbf6;
  color: #102245;
}
.client-section-head h2{
  margin-bottom: 30px !important;
}

.client-section-head h2,
.client-panel-header h2,
.client-form-title,
.client-detail-card h2 {
  margin: 6px 0 0;
  color: #12284e;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.client-kicker,
.client-mini-kicker {
  color: #617796;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.client-panel-subtitle,
.client-section-head p,
.client-empty,
.client-muted {
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.65;
}

.client-stats-grid,
.client-dashboard-grid,
.client-two-col,
.client-card-grid {
  display: grid;
  gap: 20px;
}

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

.client-dashboard-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
}

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

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

.client-stat-card {
  padding: 22px 22px 20px;
}

.client-stat-card strong {
  display: block;
  margin-top: 18px;
  color: #12284e;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.client-stat-card span {
  color: #617796;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-quick-list,
.client-stack,
.client-info-list,
.client-timeline {
  display: grid;
  gap: 14px;
}

.client-quick-item,
.client-info-card,
.client-timeline-item,
.client-reservation-card {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.client-quick-item,
.client-info-card,
.client-timeline-item {
  padding: 18px 18px 16px;
}

.client-quick-item strong,
.client-info-card strong,
.client-reservation-main strong,
.client-reservation-side strong {
  color: #11284d;
}

.client-chip,
.client-status-badge,
.client-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.client-chip {
  background: #eef4ff;
  color: #284d82;
}

.client-status-badge.status-aprovado,
.client-payment-badge.status-aprovado,
.client-payment-badge.status-pago,
.client-payment-badge.status-confirmado {
  background: rgba(24, 184, 87, 0.12);
  color: #0e8740;
}

.client-status-badge.status-pendente,
.client-payment-badge.status-pendente {
  background: rgba(243, 148, 37, 0.16);
  color: #a14d00;
}

.client-status-badge.status-reprovado,
.client-status-badge.status-cancelada,
.client-payment-badge.status-rejeitado,
.client-payment-badge.status-cancelado {
  background: rgba(220, 38, 38, 0.12);
  color: #b42318;
}

.client-status-badge.status-inativo {
  background: rgba(100, 116, 139, 0.16);
  color: #475569;
}

.client-highlight-card {
  background: linear-gradient(135deg, #0f2348 0%, #1b3a70 100%);
  color: #fff;
}

.client-highlight-card h2,
.client-highlight-card .client-muted,
.client-highlight-card .client-mini-kicker {
  color: inherit;
}

.client-highlight-card .client-muted {
  color: rgba(255, 255, 255, 0.78);
}

.client-highlight-card .client-info-card {
  color: #102245;
}

.client-highlight-card .client-info-card .client-mini-kicker,
.client-highlight-card .client-info-card .client-muted,
.client-highlight-card .client-info-card strong {
  color: #102245;
}

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

.client-catalog-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.client-catalog-media {
  min-height: 184px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(16, 34, 69, 0.92),
    rgba(39, 73, 135, 0.78)
  );
  color: #fff;
  display: flex;
  align-items: end;
}

.client-catalog-body {
  padding: 20px;
}

.client-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
  color: #102245;
  font-size: 1.35rem;
  font-weight: 900;
}

.client-price small {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}

.client-reservation-list {
  display: grid;
  gap: 18px;
}

.client-reservation-card {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: 16px;
  align-items: center;
}

.client-reservation-main .client-panel-header {
  align-items: flex-start;
  margin-bottom: 4px;
}

.client-reservation-main h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  margin-bottom: 0;
}

.client-reservation-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 4px;
}

.client-status-item {
  display: grid;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #d8e2f0;
  background: #ffffff;
  align-content: start;
  min-width: 0;
}

.client-status-item .client-mini-kicker {
  margin: 0;
}

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

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

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

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

.client-data-item,
.client-key-item {
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.client-data-item span,
.client-key-item span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.client-data-item strong,
.client-key-item strong {
  display: block;
  margin-top: 10px;
  color: #102245;
  font-size: 1rem;
}

.client-reservation-side {
  display: block;
  align-self: center;
  width: 100%;
}

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

.client-reservation-side .client-actions {
  margin-top: 18px;
  width: 100%;
}

.client-reservation-side-grid .olipart-btn,
.client-reservation-side-grid .client-outline-btn,
.client-reservation-side-grid form {
  width: 100%;
}

.client-reservation-side-grid .olipart-btn.is-full {
  grid-column: 1 / -1;
}

.client-outline-btn {
  width: 100%;
}

.client-reservation-side-grid form .client-outline-btn,
.client-reservation-side-grid form .olipart-btn {
  width: 100%;
}

.client-reservation-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.client-reservation-fact {
  display: grid;
  gap: 3px;
  min-width: 108px;
}

.client-reservation-fact span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.client-reservation-fact strong {
  color: #102245;
  font-size: 1rem;
  line-height: 1.2;
}

.client-reservation-inline-detail {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.client-reservation-inline-detail .client-reservation-fact {
  min-width: 150px;
  padding: 0;
}

.client-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.client-panel .client-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.client-panel .client-actions .olipart-btn,
.client-panel .client-actions .client-outline-btn {
  width: 100%;
}

.client-actions .olipart-btn,
.client-actions .olipart-submit,
.client-actions .olipart-primary-btn,
.client-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
}

.client-actions .client-pix-pay-btn {
  min-height: 58px;
  padding: 0 28px;
  background: var(--orange);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(243, 148, 37, 0.32);
}

.client-actions .client-pix-pay-btn:hover {
  background: #e38417;
  color: #fff;
  transform: translateY(-1px);
}

.client-payment-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.client-payment-actions .client-pix-pay-btn,
.client-payment-actions form,
.client-payment-actions form .olipart-btn {
  width: 100%;
}

.client-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #102245;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.client-form-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.client-two-col > .client-form-card:only-child,
.client-two-col > .client-panel:only-child {
  grid-column: 1 / -1;
}

.client-form-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.client-form-field label {
  color: #475569;
  font-size: 0.84rem;
  font-weight: 700;
}

.client-form-input,
.client-form-textarea,
.client-file-input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e293b;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.client-form-textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.client-form-input:focus,
.client-form-textarea:focus,
.client-file-input:focus {
  outline: none;
  border-color: #7c93ba;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 147, 186, 0.15);
}

.client-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.client-reservation-link-form {
  margin-bottom: 22px;
}

.client-option-list {
  display: grid;
  gap: 10px;
}

.client-option-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
}

.client-option-item input {
  margin-top: 3px;
}

.client-option-item span {
  display: grid;
  gap: 4px;
}

.client-option-item strong {
  color: #102245;
  font-size: 0.96rem;
  line-height: 1.3;
}

.client-option-item small {
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.4;
}

.client-email-option {
  margin-top: 14px;
  background: #fff7ed;
  border-color: #fed7aa;
}

.client-record-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.client-record-table th {
  padding: 0 14px 8px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-record-table td {
  padding: 16px 14px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
  vertical-align: middle;
}

.client-record-table td:first-child {
  border-left: 1px solid #e2e8f0;
}

.client-record-table td:last-child {
  border-right: 1px solid #e2e8f0;
}

.client-record-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.client-record-actions form {
  margin: 0;
  display: inline-flex;
}

.client-record-actions a,
.client-record-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  line-height: 1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-record-actions a {
  background: #102245;
  color: #fff;
}

.client-record-actions button {
  background: rgba(220, 38, 38, 0.1);
  color: #b42318;
}

.client-upload-box {
  padding: 18px;
  border: 1px dashed #b8c4d6;
  background: #f8fafc;
}

.client-upload-box .client-file-input {
  min-height: 48px;
  padding: 10px 14px;
  background: #fff;
}

.file-selected-name {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.4;
  word-break: break-word;
}

.client-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 4px 0;
}

.client-mobile-list {
  display: none;
  gap: 14px;
}

.client-mobile-card {
  padding: 18px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.client-mobile-card h3 {
  margin: 0 0 12px;
  color: #102245;
  font-size: 1.1rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .olipart-auth-page {
    padding: 34px 0 46px;
  }

  .olipart-auth-intro h1 {
    font-size: 2rem;
  }

  .olipart-auth-intro p {
    font-size: 0.92rem;
  }

  .olipart-auth-grid-3,
  .olipart-auth-grid-balanced {
    grid-template-columns: 1fr;
  }

  .olipart-auth-span-1,
  .olipart-auth-span-2,
  .olipart-auth-span-3,
  .olipart-auth-span-4 {
    grid-column: auto;
  }

  .olipart-auth-input,
  .olipart-auth-textarea,
  .olipart-auth-submit {
    min-height: 52px;
  }

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

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

  .olipart-offers-columns {
    grid-template-columns: 1fr;
  }

  .olipart-gallery {
    height: 240px;
  }

  .client-shell-hero {
    padding: 32px 0 72px;
  }

  .client-shell-hero-inner,
  .client-dashboard-grid,
  .client-two-col,
  .client-card-grid,
  .client-stats-grid,
  .client-catalog-grid,
  .client-reservation-card,
  .client-reservation-meta,
  .client-inline-meta,
  .client-key-grid,
  .client-detail-grid,
  .client-data-grid,
  .client-form-grid,
  .client-form-grid-3,
  .client-form-grid-5,
  .client-form-grid-6 {
    grid-template-columns: 1fr;
  }

  .client-shell-nav-wrap {
    margin-top: -34px;
  }

  .client-shell-nav {
    gap: 10px;
  }

  .client-shell-link {
    width: 100%;
  }

  .client-panel,
  .client-form-card,
  .client-detail-card,
  .client-highlight-card {
    padding: 22px;
  }

  .client-record-table {
    display: none;
  }

  .client-mobile-list {
    display: grid;
  }

  .client-reservation-card {
    padding: 18px;
  }

  .client-reservation-main h2 {
    font-size: 1.55rem;
  }

  .client-reservation-inline {
    gap: 12px;
  }

  .client-reservation-status-row {
    gap: 8px;
  }

  .client-reservation-side-grid {
    grid-template-columns: 1fr;
  }

  .client-status-item {
    width: 100%;
    justify-content: space-between;
  }

  .client-panel .client-actions {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  body.olipart-body {
    background: #fff;
    color: #102245;
  }

  .olipart-header,
  .olipart-footer,
  .client-shell-hero,
  .client-shell-nav-wrap,
  .olipart-alert,
  .client-detail-actions .client-print-btn,
  .client-reservation-link-form,
  .client-form-actions,
  .client-payment-actions,
  .client-form-card,
  .client-audit-panel {
    display: none !important;
  }

  .olipart-main,
  .client-shell-content,
  .client-page {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }

  .client-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-panel,
  .client-form-card,
  .client-detail-card,
  .client-highlight-card,
  .client-info-card,
  .client-data-item {
    border: 1px solid #d8dee8 !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  .client-panel,
  .client-detail-card,
  .client-highlight-card {
    padding: 16px !important;
    margin-bottom: 12px;
  }

  .client-panel-header,
  .client-section-head {
    align-items: flex-start;
  }

  .client-section-head h2,
  .client-panel-header h2,
  .client-detail-card h2,
  .client-highlight-card h2 {
    color: #102245 !important;
    font-size: 18pt !important;
    letter-spacing: 0;
  }

  .client-panel-subtitle,
  .client-section-head p,
  .client-empty,
  .client-muted {
    color: #334155 !important;
  }

  .client-status-badge,
  .client-payment-badge {
    border: 1px solid #cbd5e1;
    background: #fff !important;
    color: #102245 !important;
  }

  a {
    color: #102245 !important;
    text-decoration: none !important;
  }
}
