:root {
  --public-bg: #ffffff;
  --public-muted: #f8fafc;
  --public-text: #0f172a;
  --public-text-soft: #475569;
  --public-text-faint: #64748b;
  --public-border: #e2e8f0;
  --public-green: #059669;
  --public-green-dark: #047857;
  --public-red: #dc2626;
  --public-white: #ffffff;
  --public-dark: #0f172a;
  --public-shadow-sm: 0 8px 24px -18px rgba(15, 23, 42, 0.25);
  --public-shadow-md: 0 24px 70px -40px rgba(15, 23, 42, 0.28);
  --public-shell: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--public-bg);
  color: var(--public-text);
  font-family: 'Manrope', system-ui, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.public-shell {
  width: min(calc(100% - 48px), var(--public-shell));
  margin: 0 auto;
}

.public-shell--narrow {
  max-width: 960px;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.public-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.public-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.public-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--public-text-soft);
  transition: color 0.2s ease;
}

.public-nav a:hover {
  color: var(--public-text);
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.public-button--primary {
  background: var(--public-green);
  color: #fff;
}

.public-button--primary:hover {
  background: var(--public-green-dark);
}

.public-button--outline {
  background: #fff;
  border-color: var(--public-border);
  color: var(--public-text);
}

.public-button--dark {
  background: var(--public-dark);
  color: #fff;
}

.public-button--dark:hover {
  background: #1e293b;
}

.public-button--block {
  width: 100%;
}

.public-button--light {
  background: #fff;
  color: var(--public-green-dark);
}

.public-button--light-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.public-hero {
  background: var(--public-muted);
}

.public-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 80px 0 108px;
}

.public-hero__pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--public-green-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.public-hero__content h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 5.8vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.public-hero__content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--public-text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.public-hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.public-hero__micro span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--public-border);
  border-radius: 999px;
  background: #fff;
  color: var(--public-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.public-hero__micro i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--public-green) 0 38%, rgba(5, 150, 105, 0.18) 40% 100%);
}

.public-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.public-hero-shot {
  position: relative;
}

.public-hero-shot__frame {
  padding: 16px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.45);
}

.public-hero-shot__screen {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #d1fae5 0%, #ecfeff 45%, #f8fafc 100%);
}

.public-hero-shot__bar {
  height: 26px;
  background:
    radial-gradient(circle at 22px 13px, rgba(15, 23, 42, 0.18) 0 5px, transparent 6px),
    radial-gradient(circle at 40px 13px, rgba(15, 23, 42, 0.12) 0 5px, transparent 6px),
    radial-gradient(circle at 58px 13px, rgba(15, 23, 42, 0.08) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.6);
}

.public-hero-shot__surface {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 460px;
}

.public-hero-shot__menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(226, 232, 240, 0.9);
}

.public-hero-shot__menu span {
  height: 14px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.18);
}

.public-hero-shot__menu span:first-child {
  height: 54px;
  margin-bottom: 8px;
  border-radius: 18px;
}

.public-hero-shot__menu .is-active {
  background: rgba(5, 150, 105, 0.9);
}

.public-hero-shot__main {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.public-hero-shot__title {
  width: 55%;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
}

.public-hero-shot__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.public-hero-shot__stats span,
.public-hero-shot__panel,
.public-hero-shot__rows span {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.public-hero-shot__stats span {
  height: 88px;
}

.public-hero-shot__panel {
  min-height: 140px;
}

.public-hero-shot__rows {
  display: grid;
  gap: 12px;
}

.public-hero-shot__rows span {
  height: 50px;
}

.public-section {
  padding: 88px 0;
}

.public-section--muted {
  background: var(--public-muted);
}

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

.public-section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.public-section-title p {
  margin: 14px 0 0;
  color: var(--public-text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.public-features-grid,
.public-benefits-grid,
.public-steps-grid,
.public-plans-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.public-card {
  padding: 36px;
  border: 1px solid var(--public-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--public-shadow-sm);
}

.public-feature-card,
.public-benefit-card,
.public-plan-card {
  padding: 28px;
}

.public-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
}

.public-icon--1 {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.public-icon--2 {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.public-icon--3 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.public-icon--4 {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.public-feature-card h3,
.public-benefit-card h3,
.public-step h3,
.public-plan-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.public-feature-card p,
.public-benefit-card p,
.public-step p,
.public-faq-item p,
.public-footer p,
.public-footer span,
.public-footer a {
  color: var(--public-text-soft);
  line-height: 1.75;
}

.public-feature-card p,
.public-benefit-card p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.public-benefit-card {
  text-align: center;
}

.public-benefit-card__mark {
  display: flex;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--public-green);
  font-size: 1.5rem;
  font-weight: 800;
}

.public-benefit-card h3 {
  font-size: 1.8rem;
}

.public-steps-grid {
  align-items: start;
}

.public-step {
  text-align: center;
}

.public-step__badge {
  display: flex;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--public-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 28px -18px rgba(5, 150, 105, 0.8);
}

.public-step p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.public-plan-card {
  position: relative;
}

.public-plan-card.is-highlight {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: var(--public-shadow-md);
  outline: 2px solid rgba(16, 185, 129, 0.1);
}

.public-plan-card__tag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--public-green);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.public-plan-card__head {
  text-align: center;
}

.public-plan-card__price {
  margin-top: 18px;
}

.public-plan-card__price strong {
  font-size: 2.4rem;
  line-height: 1;
}

.public-plan-card__price span {
  margin-left: 8px;
  color: var(--public-text-faint);
  font-size: 0.92rem;
}

.public-plan-card__list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.public-plan-card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--public-text-soft);
}

.public-plan-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--public-green) 0 40%, rgba(5, 150, 105, 0.2) 42% 100%);
}

.public-faq-list {
  display: grid;
  gap: 16px;
}

.public-faq-item {
  border: 1px solid var(--public-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--public-shadow-sm);
}

.public-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.public-faq-item summary::-webkit-details-marker {
  display: none;
}

.public-faq-item__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.public-faq-item[open] .public-faq-item__chevron {
  transform: rotate(-135deg);
}

.public-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.public-final-cta {
  background: var(--public-green);
  color: #fff;
}

.public-final-cta__inner {
  padding: 88px 0;
  text-align: center;
}

.public-final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.public-final-cta p {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.public-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.public-footer {
  background: #020617;
  color: #cbd5e1;
  padding-top: 80px;
}

.public-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

.public-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.public-footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.public-footer__brand p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #94a3b8;
}

.public-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.public-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.public-footer__social a:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-3px);
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.public-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.public-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.public-footer__social a:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-3px);
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.public-footer__nav h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.public-footer__nav a,
.public-footer__nav span {
  display: block;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.public-footer__nav a:hover {
  color: #fff;
}

.public-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.public-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.public-footer__legal {
  display: flex;
  gap: 24px;
}

.public-footer__legal a {
  font-size: 0.88rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.public-footer__legal a:hover {
  color: #fff;
}

/* Shared Portal Footer */
.tenant-footer {
  border-top: 1px solid #eef2f7;
  background: #fbfdff;
  padding: 64px 0 0;
  overflow-x: hidden;
}

.tenant-footer__inner {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.tenant-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

@media (max-width: 1024px) {
  .tenant-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .tenant-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.tenant-footer__brand {
  max-width: 420px;
}

.tenant-footer__brand-title {
  display: block;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 700;
}

.tenant-footer__brand-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tenant-footer__logo-wrapper {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.tenant-footer__logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.tenant-footer__brand p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

.tenant-footer__nav h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.tenant-footer__nav a {
  display: block;
  font-size: 0.94rem;
  color: #475569;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.tenant-footer__nav a:hover {
  color: #10b981;
}

.tenant-footer__contact {
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tenant-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.tenant-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #10b981;
}

.tenant-footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tenant-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tenant-footer__social a:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-2px);
  border-color: #10b981;
}

.tenant-footer__bottom {
  border-top: 1px solid #f1f5f9;
  padding: 24px 0;
  margin-top: 0;
}

.tenant-footer__bottom-bar {
  background: #043d24;
  margin-top: 16px;
  width: 100%;
}

.tenant-footer__bottom-bar .tenant-footer__bottom-content {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
}

.tenant-footer__bottom-bar .tenant-footer__credit,
.tenant-footer__bottom-bar .tenant-footer__credit strong {
  color: #fff;
}

.tenant-footer__bottom-bar .tenant-footer__credit:hover {
  text-decoration: underline;
}

.tenant-footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  color: #94a3b8;
}

@media (max-width: 640px) {
  .tenant-footer__bottom-bar .tenant-footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.tenant-footer__bottom-content p {
  margin: 0;
}

.tenant-footer__credit {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.tenant-footer__credit strong {
  color: #10b981;
  font-weight: 800;
}

.public-access__main {
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.public-access__hero {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.public-access__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--public-green-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-access__hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.public-access__hero p {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--public-text-soft);
  line-height: 1.75;
}

.public-access__main--maintenance {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 32px 0;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.public-access__hero--maintenance {
  padding: 40px 36px;
  border: 1px solid var(--public-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--public-shadow-md);
}

.public-access__hero--maintenance h1,
.public-access__hero--maintenance p {
  text-align: center;
}

.public-access__maintenance-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.public-access__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: flex-start;
}

.public-form-card__head {
  margin-bottom: 24px;
}

.public-form-card__head h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.public-form-card__head p {
  margin: 0;
}

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

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

.public-form__field {
  display: grid;
  gap: 8px;
}

.public-form__field span {
  font-size: 0.94rem;
  font-weight: 700;
}

.public-form__field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--public-border);
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--public-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.public-form__field input:focus {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.public-subdomain-preview {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--public-border);
  border-radius: 14px;
  background: #f8fafc;
}

.public-subdomain-preview strong {
  font-size: 0.88rem;
}

.public-subdomain-preview span {
  color: var(--public-text-soft);
  word-break: break-all;
}

.public-form__feedback {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.public-form__feedback.is-error {
  color: #b91c1c;
}

.public-form__feedback.is-success {
  color: var(--public-green-dark);
}

.tenant-page-content {
  padding: 48px 0 72px;
}

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

.tenant-post {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px;
}

.tenant-post__header {
  display: grid;
  gap: 20px;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 56px;
}

.tenant-post__meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--public-text-faint);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tenant-post__header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--public-text);
}

.tenant-post__lead {
  margin: 0 auto;
  color: var(--public-text-soft);
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 880px;
  font-weight: 500;
}

.tenant-post__cover {
  width: 100%;
  min-height: clamp(320px, 45vw, 680px);
  border-radius: 32px;
  background-position: center;
  background-size: cover;
  margin-bottom: 56px;
}

.tenant-post__body {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.75;
}

.portal-page-form-container {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--public-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.portal-form-intro {
  display: grid;
  gap: 8px;
}

.portal-form-intro h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.portal-form-intro p {
  margin: 0;
  color: var(--public-text-soft);
}

.portal-public-form {
  display: grid;
  gap: 20px;
}

.portal-public-form--structured {
  gap: 24px;
}

.portal-public-form__intro,
.portal-public-form__text-block,
.portal-public-form__final-note {
  display: grid;
  gap: 10px;
}

.portal-public-form__intro h3,
.portal-public-form__text-block h3,
.portal-public-form__section-header h3,
.portal-public-form__final-note h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.portal-public-form__intro-text,
.portal-public-form__text-block div,
.portal-public-form__final-note div {
  color: var(--public-text-soft);
  line-height: 1.75;
}

.portal-public-form__intro {
  padding: 6px 4px 0;
}

.portal-public-form__intro h3 {
  color: var(--public-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.portal-public-form__section {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.04);
}

.portal-public-form__section--terms {
  gap: 14px;
}

.portal-public-form__section-header {
  display: grid;
  gap: 8px;
}

.portal-public-form__section-header p {
  margin: 0;
  color: var(--public-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.portal-public-form__terms-body {
  max-height: 260px;
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--public-border);
  border-radius: 18px;
  background: #fbfdff;
  color: var(--public-text-soft);
  line-height: 1.8;
}

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

.portal-public-form__field {
  display: grid;
  gap: 8px;
}

.portal-public-form__field.is-full,
.portal-public-form__field--textarea,
.portal-public-form__field--checkbox,
.portal-public-form__field--radio {
  grid-column: 1 / -1;
}

.portal-public-form__field.is-half {
  grid-column: span 1;
}

.portal-public-form__field.is-third {
  grid-column: span 1;
}

.portal-public-form__field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--public-text);
}

.portal-public-form__field small {
  color: var(--public-text-faint);
  font-size: 0.85rem;
  line-height: 1.5;
}

.portal-public-form__subheading {
  display: flex;
  align-items: flex-end;
  min-height: 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  grid-column: 1 / -1;
}

.portal-public-form__subheading span {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--public-text);
}

.portal-public-form__input {
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid var(--public-border);
  border-radius: 14px;
  background: #fff;
  color: var(--public-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portal-public-form__currency {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--public-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portal-public-form__currency:focus-within {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.portal-public-form__currency-prefix {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 14px 0 16px;
  border-right: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(241, 245, 249, 0.9);
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
}

.portal-public-form__input--currency {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-left: 14px;
}

.portal-public-form__input--currency:focus {
  box-shadow: none;
}

.portal-public-form__input:focus,
.portal-public-form__textarea:focus {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.portal-public-form__textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.portal-public-form__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-public-form__choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--public-border);
  border-radius: 16px;
  background: #fbfdff;
  font-weight: 600;
}

.portal-public-form__choice input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.portal-public-form__submit {
  display: grid;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(5, 150, 105, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fffb 0%, #f0fdf4 100%);
}

.portal-public-form__submit-stack {
  display: grid;
  gap: 18px;
}

.portal-public-form__submit-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 18px;
}

.portal-public-form__terms-accept {
  display: grid;
  gap: 12px;
}

.portal-public-form__terms-accept .portal-public-form__choices {
  grid-template-columns: minmax(0, 420px);
}

.portal-public-form__submit-actions {
  display: grid;
  gap: 12px;
}

.portal-public-form__submit .public-button {
  width: 100%;
}

.portal-public-form__final-note {
  gap: 6px;
}

.portal-public-form__final-note div {
  font-size: 0.95rem;
}

.tenant-post--form .tenant-post__header {
  padding-bottom: 12px;
}

.tenant-page-content--form .tenant-post__body {
  max-width: none;
}

.public-section-title--left {
  margin-left: 0;
  text-align: left;
}

.public-header--tenant {
  position: sticky;
}

.public-tenant-hero {
  background:
    radial-gradient(circle at top right, rgba(5, 150, 105, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.public-tenant-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding: 72px 0 88px;
}

.public-tenant-hero__content h1 {
  margin: 22px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.public-tenant-hero__content p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--public-text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.public-tenant-hero__panel {
  display: flex;
  justify-content: flex-end;
}

.public-tenant-card {
  width: min(100%, 360px);
  padding: 28px;
  border-radius: 28px;
}

.public-tenant-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--public-green-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-tenant-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.public-tenant-card p {
  margin: 0;
  color: var(--public-text-soft);
  line-height: 1.7;
}

.public-tenant-grid,
.public-tenant-links {
  display: grid;
  gap: 24px;
}

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

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

.public-tenant-link-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.public-tenant-link-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.public-tenant-link-card p {
  margin: 0;
  color: var(--public-text-soft);
  line-height: 1.75;
}

.public-shell--wide {
  max-width: 1120px;
}

.public-access__hero--left {
  margin-left: 0;
  text-align: left;
}

.public-form-card--full {
  padding: 36px;
}

.public-form--stacked {
  gap: 28px;
}

.public-signup-progress {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.public-signup-progress__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.public-signup-progress__head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
}

.public-signup-progress__head strong {
  color: var(--public-green-dark);
  font-size: 0.98rem;
}

.public-signup-progress__bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.9);
}

.public-signup-progress__bar span {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  transition: width 0.2s ease;
}

.public-progress__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-progress__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #fff;
}

.public-progress__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--public-green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.public-progress__label {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.institutional-card {
  border: 1px solid var(--public-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px -32px rgba(15, 23, 42, 0.3);
}

.institutional-card__header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.institutional-card__header strong {
  color: var(--public-green-dark);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.associado-profile-block {
  padding: 28px;
}

.associado-edit-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

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

.field > span {
  font-size: 0.94rem;
  font-weight: 700;
}

.field > input:not([type='radio']):not([type='checkbox']),
.field select,
.field textarea {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--public-border);
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--public-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .public-shell,
  .public-shell--wide,
  .tenant-page-content--form {
    width: min(calc(100% - clamp(8px, 2.6vw, 18px)), 100%);
    max-width: 100%;
  }

  .portal-page-form-container {
    width: 100%;
    padding: 0;
  }

  .tenant-post--form,
  .portal-public-form,
  .portal-public-form--structured {
    min-width: 0;
  }

  .tenant-post--form {
    padding: 6px 0 2px;
    border-radius: 18px;
  }

  .portal-public-form__intro,
  .portal-public-form__text-block,
  .portal-public-form__final-note,
  .portal-public-form__section {
    padding: clamp(18px, 4vw, 24px) clamp(14px, 4vw, 22px);
    border-radius: clamp(18px, 4vw, 22px);
  }

  .portal-public-form__section-header {
    gap: 12px;
    margin-bottom: 22px;
  }

  .portal-public-form__section-header h3 {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .portal-public-form__section-header p,
  .portal-public-form__intro-text,
  .portal-public-form__text-block div,
  .portal-public-form__final-note div {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .portal-public-form__terms-body {
    max-height: 280px;
    padding: clamp(16px, 3.8vw, 18px) clamp(14px, 4vw, 20px);
    font-size: 0.92rem;
    line-height: 1.7;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .portal-public-form__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .portal-public-form__field.is-half,
  .portal-public-form__field.is-third,
  .portal-public-form__field.is-full,
  .portal-public-form__field--textarea,
  .portal-public-form__field--checkbox,
  .portal-public-form__field--radio {
    grid-column: 1 / -1;
  }

  .portal-public-form__field {
    min-width: 0;
  }

  .portal-public-form__field span {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .portal-public-form__input,
  .portal-public-form__textarea,
  .portal-public-form__currency {
    min-height: clamp(50px, 11vw, 54px);
    width: 100%;
    max-width: 100%;
  }

  .portal-public-form__textarea {
    min-height: 120px;
  }

  .portal-public-form__currency-prefix {
    padding: 0 12px 0 14px;
    font-size: 0.92rem;
  }

  .portal-public-form__choices {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .portal-public-form__terms-accept .portal-public-form__choices {
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-public-form__choice {
    width: 100%;
    min-width: 0;
    min-height: clamp(48px, 10vw, 52px);
    padding: clamp(14px, 3.4vw, 16px) clamp(14px, 4vw, 18px);
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .portal-public-form__choice span {
    min-width: 0;
    white-space: normal;
    word-break: break-word;
  }

  .portal-public-form__submit {
    gap: 16px;
    padding: clamp(18px, 4vw, 20px) clamp(14px, 4vw, 22px);
    border-radius: clamp(18px, 4vw, 20px);
  }

  .portal-public-form__submit-footer {
    grid-template-columns: 1fr;
  }

  .portal-public-form__submit .public-button {
    min-height: 52px;
  }

  .portal-public-form__subheading {
    min-height: 0;
    padding-top: 12px;
    margin-top: 8px;
  }
}

.field textarea {
  min-height: 140px;
  padding: 14px 16px;
}

.field > input:not([type='radio']):not([type='checkbox']):focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.field small {
  color: var(--public-text-faint);
  line-height: 1.5;
}

.field--radio-group,
.field--checkbox-group {
  gap: 14px;
}

.field-choice-group,
.field-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.field-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--public-border);
  border-radius: 16px;
  background: #fbfdff;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field-choice input {
  min-height: auto;
  padding: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  appearance: auto;
}

.field-choice:has(input:checked) {
  border-color: rgba(5, 150, 105, 0.4);
  background: #ecfdf5;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

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

.field-choice--chip {
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  text-align: center;
}

.associado-profile-block--preco .associado-edit-form__grid {
  grid-template-columns: minmax(0, 1fr);
}

.associado-profile-block--preco .field--choice-chips {
  gap: 16px;
}

.associado-profile-block--preco .field-choice-grid--chips {
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.associado-profile-block--preco .field-choice--chip {
  min-height: 64px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.associado-profile-block--preco .field-choice--chip span {
  line-height: 1.35;
}

.field-choice--checkbox {
  align-items: flex-start;
  min-height: 58px;
  padding: 14px 16px;
}

.field--checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #f8fafc;
}

.field--checkbox input {
  min-height: auto;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  appearance: auto;
}

.public-upload-preview {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  border-radius: 18px;
  background: #f8fafc;
}

.public-upload-preview:empty {
  display: none;
}

.public-upload-preview p,
.public-upload-preview span {
  margin: 0;
  color: var(--public-text-soft);
}

.public-upload-preview__image {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--public-border);
  background: #fff;
}

.public-upload-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.public-upload-preview__error {
  color: #b91c1c;
}

.public-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(5, 150, 105, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.public-form-submit__content {
  display: grid;
  gap: 8px;
}

.public-form-submit__content strong {
  font-size: 1.02rem;
  color: var(--public-text);
}

.public-form-submit__content p {
  margin: 0;
  color: var(--public-text-soft);
  line-height: 1.7;
}

.public-form-submit__actions {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

.public-button--large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.public-terms-card {
  display: grid;
  gap: 18px;
}

.public-terms-card__content {
  max-height: 360px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--public-text-soft);
  line-height: 1.8;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 150, 105, 0.45) rgba(226, 232, 240, 0.65);
}

.public-terms-card__content::-webkit-scrollbar {
  width: 10px;
}

.public-terms-card__content::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.65);
  border-radius: 999px;
}

.public-terms-card__content::-webkit-scrollbar-thumb {
  background: rgba(5, 150, 105, 0.45);
  border-radius: 999px;
}

.public-terms-card__content p,
.public-terms-card__content ol {
  margin: 0;
}

.public-terms-card__content ol {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 18px;
}

.field--checkbox-terms {
  align-items: flex-start;
}

.field--checkbox-terms span {
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .public-hero__grid,
  .public-features-grid,
  .public-benefits-grid,
  .public-steps-grid,
  .public-plans-grid,
  .public-footer__grid,
  .public-access__grid,
  .public-tenant-grid,
  .public-tenant-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-hero__grid {
    align-items: start;
  }

  .public-tenant-hero__grid {
    grid-template-columns: 1fr;
  }

  .public-tenant-hero__panel {
    justify-content: flex-start;
  }

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

  .field-choice-grid--chips {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .public-header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .public-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
  }

  .public-hero__grid,
  .public-features-grid,
  .public-benefits-grid,
  .public-steps-grid,
  .public-plans-grid,
  .public-footer__grid,
  .public-access__grid,
  .public-tenant-grid,
  .public-tenant-links,
  .public-form__split,
  .associado-edit-form__grid,
  .field-choice-grid {
    grid-template-columns: 1fr;
  }

  .public-signup-progress__head,
  .public-form-submit {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: initial;
  }

  .public-form-submit__actions {
    min-width: 0;
  }

  .public-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .public-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tenant-footer {
    padding: 64px 24px 0;
    width: 100%;
  }

  .tenant-footer__inner {
    width: 100%;
  }

  .tenant-footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .tenant-footer__brand {
    max-width: none;
  }

  .tenant-footer__bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .public-hero__grid {
    padding: 56px 0 72px;
  }

  .public-hero-shot__surface {
    grid-template-columns: 88px 1fr;
    min-height: 360px;
  }

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

  .field-choice-grid--chips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .public-shell {
    width: min(calc(100% - 28px), var(--public-shell));
  }

  .public-button,
  .public-header .public-button,
  .public-hero__actions .public-button,
  .public-final-cta__actions .public-button {
    width: 100%;
  }

  .public-hero__micro,
  .public-hero__actions,
  .public-final-cta__actions {
    display: grid;
  }

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

  .associado-profile-block,
  .public-signup-progress,
  .public-form-submit,
  .public-form-card--full {
    padding: 22px;
  }

  .tenant-page-content {
    padding: 28px 0 48px;
  }

  .tenant-post__cover {
    min-height: 220px;
  }

  .portal-page-form-container {
    padding: 22px;
    border-radius: 24px;
  }

  .portal-public-form__grid {
    grid-template-columns: 1fr;
  }

  .portal-public-form__choices,
  .portal-public-form__submit {
    grid-template-columns: 1fr;
  }

  .portal-public-form__submit-footer {
    grid-template-columns: 1fr;
  }

  .portal-public-form__section {
    padding: 22px;
    border-radius: 22px;
  }
}

.turismo-shell {
  min-height: 100vh;
  background: #f5f7fa;
  color: #17324d;
}

.turismo-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 50, 77, 0.06);
  backdrop-filter: blur(12px);
}

.turismo-header__inner,
.turismo-footer__inner,
.turismo-main {
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}

.turismo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.turismo-brand img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

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

.turismo-nav a,
.turismo-footer__nav a,
.turismo-footer__nav h4,
.turismo-footer__brand p,
.turismo-footer__bottom {
  font-family: 'Manrope', system-ui, sans-serif;
}

.turismo-nav a {
  color: #4c6486;
  font-size: 0.82rem;
  font-weight: 700;
}

.turismo-nav a.is-active {
  color: #1e6eb8;
}

.turismo-header__cta,
.turismo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.turismo-header__cta,
.turismo-button--primary {
  background: linear-gradient(135deg, #1ba05d 0%, #13824d 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(19, 130, 77, 0.18);
}

.turismo-button--light {
  background: #ffffff;
  color: #17345f;
}

.turismo-main {
  display: grid;
  gap: 0;
  padding: 0 0 56px;
}

.turismo-main--home {
  gap: 0;
  padding-bottom: 0;
}

.turismo-home-hero {
  margin: 0 calc((100vw - min(calc(100% - 48px), 1240px)) / -2);
}

.turismo-home-hero__media {
  min-height: 360px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.turismo-home-hero__overlay {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.42) 0%, rgba(7, 17, 28, 0.5) 100%);
  color: #fff;
}

.turismo-home-hero__overlay h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.turismo-home-hero__overlay p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.turismo-home-hero__actions {
  margin-top: 8px;
}

.turismo-button--hero {
  min-height: 42px;
  padding: 0 22px;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.turismo-hero,
.turismo-listing-hero {
  overflow: hidden;
  border-radius: 28px;
  background: #dce9f3;
  box-shadow: 0 20px 44px rgba(16, 41, 79, 0.08);
}

.turismo-hero__media,
.turismo-listing-hero {
  min-height: 340px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.turismo-hero__overlay,
.turismo-listing-hero__overlay {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 42px 48px;
  background: linear-gradient(90deg, rgba(11, 24, 43, 0.72) 0%, rgba(11, 24, 43, 0.3) 54%, rgba(11, 24, 43, 0.08) 100%);
  color: #fff;
}

.turismo-hero__overlay span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.turismo-hero__overlay h1,
.turismo-listing-hero__overlay h1,
.turismo-content__header h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.turismo-hero__overlay p,
.turismo-listing-hero__overlay p,
.turismo-content__header p {
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.turismo-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.turismo-section {
  display: grid;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.turismo-section--muted {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.turismo-section--home {
  padding-top: 44px;
  padding-bottom: 32px;
}

.turismo-section--home-muted {
  background: #f2f5f8;
  margin: 8px calc((100vw - min(calc(100% - 48px), 1240px)) / -2) 0;
  padding-left: max(32px, calc((100vw - min(calc(100% - 48px), 1240px)) / 2));
  padding-right: max(32px, calc((100vw - min(calc(100% - 48px), 1240px)) / 2));
}

.turismo-section__title {
  display: grid;
  gap: 8px;
}

.turismo-section__title--center {
  justify-items: center;
  text-align: center;
}

.turismo-section__title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: #17345f;
  letter-spacing: -0.04em;
}

.turismo-section__title p {
  margin: 0;
  color: #6681a9;
  line-height: 1.6;
  font-size: 0.92rem;
}

.turismo-quick-grid,
.turismo-publication-grid,
.turismo-agenda-grid,
.turismo-activity-grid,
.turismo-company-grid {
  display: grid;
  gap: 18px;
}

.turismo-quick-grid,
.turismo-publication-grid,
.turismo-activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.turismo-quick-card,
.turismo-card,
.turismo-agenda-card,
.turismo-activity-card,
.turismo-company-card,
.turismo-content {
  border: 1px solid rgba(23, 50, 77, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 41, 79, 0.04);
}

.turismo-publication-grid--home {
  gap: 22px;
}

.turismo-card--home {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 41, 79, 0.06);
}

.turismo-quick-card {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.turismo-quick-card strong,
.turismo-card__body strong,
.turismo-agenda-card__copy strong,
.turismo-activity-card strong,
.turismo-company-card__copy strong {
  color: #17345f;
}

.turismo-quick-card span,
.turismo-card__body p,
.turismo-agenda-card__copy p,
.turismo-activity-card p,
.turismo-company-card__copy span,
.turismo-content__body {
  color: #6681a9;
  line-height: 1.65;
}

.turismo-card--publication {
  overflow: hidden;
}

.turismo-card__media {
  min-height: 168px;
  display: block;
  background-color: #dbe8f2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.turismo-card__body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.turismo-card__body--home {
  gap: 8px;
  padding: 16px 16px 18px;
}

.turismo-card__body span,
.turismo-content__header span {
  color: #7c8fab;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.turismo-card__body a,
.turismo-agenda-card a,
.turismo-activity-card a {
  color: #1e6eb8;
  font-weight: 800;
  font-size: 0.88rem;
}

.turismo-agenda-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.turismo-agenda-card__day {
  display: grid;
  place-items: center;
  min-height: 74px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1ba05d 0%, #13824d 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.turismo-agenda-card--home {
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  padding: 18px 18px 16px;
  border-radius: 14px;
}

.turismo-agenda-card--home a {
  grid-column: 2;
  margin-top: 4px;
}

.turismo-agenda-card__day small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.88;
}

.turismo-agenda-grid--home {
  gap: 16px;
}

.turismo-activity-card {
  display: grid;
  gap: 12px;
  place-items: center;
  padding: 26px 22px;
  text-align: center;
}

.turismo-activity-card__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d8cc8 0%, #149a66 100%);
  color: #fff;
  font-size: 1.6rem;
}

.turismo-company-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.turismo-company-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.turismo-company-card__logo {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4fa 100%);
  overflow: hidden;
}

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

.turismo-company-card__logo span {
  color: #1e6eb8;
  font-weight: 800;
}

.turismo-company-card__copy {
  display: grid;
  gap: 6px;
}

.turismo-company-card__actions {
  display: flex;
  justify-content: flex-start;
}

.turismo-company-card__disabled {
  color: #8aa0bc;
  font-weight: 700;
}

.turismo-content {
  overflow: hidden;
}

.turismo-content__header {
  display: grid;
  gap: 10px;
  padding: 30px 32px 0;
}

.turismo-content__header p {
  color: #6681a9;
}

.turismo-content__cover {
  min-height: 360px;
  margin: 24px 32px 0;
  border-radius: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.turismo-content__body {
  padding: 26px 32px 32px;
}

.turismo-footer {
  background: #242a31;
  color: #d9e0ea;
  margin-top: 0;
}

.turismo-footer__inner {
  display: grid;
  gap: 0;
}

.turismo-footer__inner {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding: 44px 0 32px;
}

.turismo-footer__brand img {
  max-height: 60px;
  margin-bottom: 16px;
  object-fit: contain;
}

.turismo-footer__brand p,
.turismo-footer__nav a {
  color: rgba(233, 239, 245, 0.78);
}

.turismo-footer__nav {
  display: grid;
  gap: 12px;
}

.turismo-footer__nav h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.turismo-footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.9rem;
  color: rgba(233, 239, 245, 0.6);
}

.turismo-home-links {
  padding: 28px 0 42px;
}

.turismo-home-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.turismo-home-links__card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid rgba(23, 50, 77, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 41, 79, 0.04);
  text-align: center;
}

.turismo-home-links__card i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d8cc8 0%, #149a66 100%);
  color: #fff;
  font-style: normal;
  font-size: 1.05rem;
}

.turismo-home-links__card strong {
  color: #17345f;
  font-size: 0.92rem;
}

.turismo-home-links__card span {
  color: #6681a9;
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .turismo-quick-grid,
  .turismo-publication-grid,
  .turismo-activity-grid,
  .turismo-company-grid,
  .turismo-agenda-grid,
  .turismo-footer__inner,
  .turismo-home-links__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .turismo-header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .turismo-nav {
    justify-content: center;
  }

  .turismo-home-hero__overlay,
  .turismo-hero__overlay,
  .turismo-listing-hero__overlay,
  .turismo-section,
  .turismo-content__header,
  .turismo-content__body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .turismo-content__cover {
    margin-left: 22px;
    margin-right: 22px;
    min-height: 240px;
  }

  .turismo-quick-grid,
  .turismo-publication-grid,
  .turismo-activity-grid,
  .turismo-company-grid,
  .turismo-agenda-grid,
  .turismo-footer__inner,
  .turismo-home-links__grid {
    grid-template-columns: 1fr;
  }

  .turismo-agenda-card {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .turismo-home-hero {
    margin: 0;
  }

  .turismo-section--home-muted {
    margin: 0;
    padding-left: 22px;
    padding-right: 22px;
  }
}

.landing-maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(22, 163, 74, 0.12), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #eef6f1 100%);
}

.landing-maintenance__shell {
  width: min(100%, 760px);
}

.landing-maintenance__card {
  padding: 56px 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 59, 99, 0.08);
  box-shadow: 0 30px 80px -40px rgba(21, 59, 99, 0.35);
  text-align: center;
}

.landing-maintenance__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-maintenance__card h1 {
  margin: 20px 0 14px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #153b63;
}

.landing-maintenance__card p {
  width: min(100%, 560px);
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.landing-maintenance__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 40px -24px rgba(22, 163, 74, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-maintenance__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px -24px rgba(22, 163, 74, 0.7);
}

.tenant-home {
  min-height: 100vh;
  background: #f8fafc;
  padding: 20px 0 64px;
}

.tenant-home__frame,
.tenant-page__shell,
.tenant-post {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.tenant-home__header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.tenant-home__brand img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.tenant-home__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.tenant-home__nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.tenant-home__nav a:hover {
  color: #122033;
}

.tenant-home__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.tenant-home__nav a:hover::after {
  width: 100%;
}

.tenant-home__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.tenant-home__menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #0f172a;
  border-radius: 999px;
  pointer-events: none;
}

.tenant-home__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: #122033;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.tenant-home__cta:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.tenant-home__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: #2e6b3b;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
}

.tenant-home__content {
  padding: 16px 24px 32px;
}

.tenant-home__hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  margin-bottom: 32px;
  align-items: start;
}

.tenant-home__hero-image,
.tenant-home__headline-image,
.tenant-home__grid-image,
.tenant-home__sidebar-image,
.tenant-post__cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tenant-home__hero-image {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.2);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenant-home__hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.tenant-home__hero-image {
  display: block;
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
}

.tenant-home__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 5vw, 40px);
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  color: #fff;
}

.tenant-home__footer {
  border-top: 1px solid #eef2f7;
  background: #fbfdff;
}

.tenant-home__footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px 20px;
  color: #64748b;
  font-size: 0.9rem;
}

.tenant-home__footer-inner a {
  color: #153b63;
  font-weight: 700;
}

.tenant-home__footer-inner a:hover {
  color: #0f2f4d;
}

.tenant-home__section--agenda-mobile {
  display: none;
}

.tenant-home__hero-overlay span {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.85);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.tenant-home__hero-overlay strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}

.tenant-home__hero-overlay small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.tenant-home__hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 480px; /* Alinhado com min-height de .tenant-home__hero-image */
}

.tenant-home__headline {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
  flex: 1; /* Distribui o espaço igualmente */
  min-height: 0; /* Permite encolher se necessário */
}

.tenant-home__headline:hover {
  background: #f8fafc;
}

.tenant-home__headline-image {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #f1f5f9;
}

.tenant-home__headline strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #122033;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tenant-home__headline-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
}

.tenant-home__headline strong,
.tenant-home__grid-title,
.tenant-home__sidebar-title {
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

.tenant-home__headline strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #122033;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tenant-home__row {
  margin-bottom: 32px;
}

.tenant-home__promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100px;
  margin-bottom: 32px;
  padding: 24px 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #10b981;
  border-radius: 16px;
  color: #122033;
}

.tenant-home__promo-copy span {
  display: block;
  margin-bottom: 6px;
  color: #10b981;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tenant-home__promo-copy strong {
  max-width: 820px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.tenant-home__promo-banner a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  background: #122033;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.tenant-home__promo-banner a:hover {
  background: #10b981;
  transform: translateY(-2px);
}

.tenant-home__row--split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

.tenant-home__section {
  border-top: none;
  padding-top: 0;
}

.tenant-home__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tenant-home__section-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #122033;
  position: relative;
  padding-bottom: 10px;
}

.tenant-home__section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: #10b981;
}

.tenant-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tenant-home__grid-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.tenant-home__grid-image {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 12px;
  background-color: #f1f5f9;
  background-size: cover;
  background-position: center;
}

.tenant-home__section--news .tenant-home__grid-image {
  height: 165px;
}

.tenant-home__section--events .tenant-home__grid-image {
  height: 170px;
}

.tenant-home__grid-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.tenant-home__grid-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #122033;
  min-height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.tenant-home__grid-title:hover {
  color: #10b981;
}

.tenant-home__grid-card p,
.tenant-home__agenda-item p,
.tenant-home__sidebar-card p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.tenant-home__sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tenant-home__agenda {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tenant-home__agenda-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.tenant-home__agenda-item:last-child {
  border-bottom: none;
}

.tenant-home__agenda-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #10b981;
  color: #fff;
  border-radius: 10px;
}

.tenant-home__agenda-date strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.tenant-home__agenda-date span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tenant-home__agenda-item > div:last-child strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #122033;
  margin-bottom: 2px;
}

.tenant-home__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tenant-home__sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tenant-home__sidebar-image {
  display: block;
  width: 100%;
  height: 140px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #f1f5f9;
}

.tenant-home__sidebar-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #122033;
  line-height: 1.3;
}

.tenant-home__banner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 16px;
}

.tenant-home__banner-kicker {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tenant-home__banner strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #122033;
}

.tenant-home__banner p {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

.tenant-home__banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: #059669;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tenant-home__cv-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.tenant-home__cv-banner:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #10b981;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1);
}

.tenant-home__cv-kicker {
  display: block;
  margin-bottom: 4px;
  color: #10b981;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tenant-home__cv-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #122033;
}

.tenant-home__cv-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  background: #122033;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

/* New sections to fill white space */
.tenant-home__benefits-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding: 44px 36px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #eef2f7;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.03);
}

.tenant-home__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.tenant-home__benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  border-radius: 18px;
  font-size: 26px;
  color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
  transition: transform 0.3s ease;
}

.tenant-home__benefit-item:hover .tenant-home__benefit-icon {
  transform: translateY(-4px) scale(1.05);
}

.tenant-home__benefit-item strong {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tenant-home__benefit-item span {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

.tenant-home__partners-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #f1f5f9;
}

.tenant-home__partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.tenant-home__partner-logo {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  opacity: 0.45;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(1);
}

.tenant-home__partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: rgba(16, 185, 129, 0.4);
  background: #fdfdfd;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.tenant-home__partner-logo span {
  font-size: 0.78rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.12em;
}

@media (max-width: 1024px) {
  .tenant-home__benefits-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .tenant-home__benefits-bar {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 40px 24px;
    gap: 36px;
  }
  
  .tenant-home__partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .tenant-home__partner-logo {
    height: 72px;
  }
}

.tenant-home__about-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.tenant-home__about-logo {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.tenant-home__about-card strong {
  display: block;
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.tenant-home__about-desc {
  font-size: 0.88rem !important;
  color: #64748b !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
}

.tenant-home__about-details {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  margin-top: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tenant-home__about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #475569;
}

.tenant-home__about-item svg {
  color: #10b981;
  flex-shrink: 0;
  opacity: 0.8;
}

.tenant-home__about-social {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tenant-home__about-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f8fafc;
  color: #64748b;
  transition: all 0.2s ease;
  border: 1px solid #f1f5f9;
}

.tenant-home__about-social a:hover {
  background: #10b981 !important;
  color: #fff !important;
  transform: translateY(-2px);
  border-color: #10b981 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}


.tenant-page {
  min-height: 100vh;
  background: #d9d9d9;
  padding: 32px 0 60px;
}

.tenant-home__frame--shared {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--public-shadow-sm);
}

.tenant-page__header,
.tenant-post__header {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

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

.tenant-page__excerpt {
  color: #6b7280;
  line-height: 1.55;
}

.tenant-post {
  padding: 34px;
}

.tenant-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
}

.tenant-post__header h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tenant-post__header p {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.tenant-post__cover {
  min-height: 420px;
  margin-bottom: 28px;
  background-color: #edf2f7;
}

.tenant-post__body {
  color: #1f2937;
  font-size: 1.04rem;
  line-height: 1.9;
}

.tenant-post__body p {
  margin: 0 0 18px;
}

.tenant-home__section-head,
.tenant-page__header {
  position: relative;
}

.tenant-home__section-head::after,
.tenant-page__header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #111827;
  border-right: 2px solid #111827;
  transform: rotate(45deg);
}

@media (max-width: 992px) {
  .tenant-home__header {
    position: sticky;
    top: 0;
    z-index: 1010;
    background: #fff;
    padding: 12px 16px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .tenant-home__menu-toggle {
    display: flex !important;
    flex-direction: column;
    order: 1;
    margin: 0;
    z-index: 1011;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .tenant-home__menu-toggle span {
    margin: 1.5px 0;
    width: 20px;
    height: 2px;
  }

  .tenant-home__brand {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 !important;
  }

  .tenant-home__brand img {
    max-height: 42px !important;
  }

  .tenant-home__cta {
    display: inline-flex !important;
    order: 3;
    padding: 0 14px !important;
    font-size: 0.75rem !important;
    min-height: 38px !important;
    margin: 0;
  }

  .tenant-home__nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: auto;
    width: min(280px, calc(100vw - 40px));
    height: auto;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    z-index: 1009;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    flex: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
  }

  .tenant-home__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .tenant-home__menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .tenant-home__menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .tenant-home__menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .tenant-home__nav a {
    width: 100%;
    min-height: 0;
    padding: 14px 2px;
    border-bottom: 1px solid #e9eef5;
    font-weight: 600;
    color: #334155;
  }

  .tenant-home__nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1120px) {
  .tenant-home__hero,
  .tenant-home__row--split,
  .tenant-page__grid {
    grid-template-columns: 1fr;
  }

  .tenant-home__promo-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .tenant-home__hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
  }

  .tenant-home__headline {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .landing-maintenance {
    padding: 18px;
  }

  .landing-maintenance__card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .landing-maintenance__card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .landing-maintenance__button {
    width: 100%;
    min-width: 0;
  }

  .tenant-home__frame,
  .tenant-page__shell,
  .tenant-post {
    width: min(calc(100% - clamp(8px, 2.6vw, 18px)), 1220px);
  }

  .tenant-home__content,
  .tenant-post {
    padding: clamp(10px, 2.8vw, 16px);
  }

  .tenant-home__promo-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    margin-bottom: 24px;
    padding: 28px 20px;
    border-radius: 20px;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f7ed 100%);
    border: 1px solid #dcfce7;
    border-left: 6px solid #10b981;
    box-shadow: 0 15px 35px -12px rgba(16, 185, 129, 0.15);
  }

  .tenant-home__promo-copy span {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .tenant-home__promo-copy strong {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #1a2b42;
    display: block;
  }

  .tenant-home__promo-banner a {
    display: flex !important;
    width: 100% !important;
    min-height: 48px;
    font-size: 0.9rem;
    border-radius: 12px;
    justify-content: center;
  }

  .tenant-home__hero-image {
    min-height: 260px;
  }

  .tenant-home__header {
    padding: 22px 20px;
  }

  .tenant-home__cta {
    width: auto;
    max-width: none;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
    justify-self: end;
  }

  .tenant-home__menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .tenant-home__header {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .tenant-home__brand {
    min-width: 0;
  }

  .tenant-footer {
    padding: 48px 20px 0;
    width: 100%;
  }

  .tenant-footer__inner {
    width: 100%;
  }

  .tenant-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .tenant-footer__brand {
    max-width: none;
    text-align: center;
  }

  .tenant-footer__brand-logo {
    margin: 0 auto 16px;
  }

  .tenant-footer__social {
    justify-content: center;
  }

  .tenant-footer__nav {
    text-align: center;
  }

  .tenant-footer__nav-list {
    align-items: center;
  }

  .tenant-footer__bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .tenant-home__nav.is-open {
    display: flex;
  }

  .tenant-home__nav.is-open a {
    display: block;
    min-height: 0;
    padding: 14px 2px;
    font-size: 0.95rem;
  }

  .tenant-home {
    padding: clamp(8px, 2vw, 12px) 0 40px;
  }

  .tenant-home__hero-image {
    min-height: clamp(320px, 60vw, 400px) !important;
    border-radius: 12px;
  }

  .tenant-home__grid {
    grid-template-columns: 1fr;
  }

  .tenant-home__grid--asset .tenant-home__grid-card--asset:nth-child(n + 4) {
    display: none;
  }

  .tenant-home__grid--news .tenant-home__grid-card--news:nth-child(n + 4) {
    display: none;
  }

  .tenant-home__section--agenda-mobile {
    display: block;
  }

  .tenant-home__section--agenda {
    display: none;
  }

  .tenant-home__headline {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 12px;
  }

  .tenant-home__hero-side {
    display: none;
  }

  .tenant-home__headline-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
  }

  .tenant-home__cv-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    text-align: left;
  }

  .tenant-home__cv-content strong {
    font-size: 18px;
    line-height: 1.4;
  }

  .tenant-home__cv-button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .tenant-home__headline-image,
  .tenant-home__grid-image,
  .tenant-home__sidebar-image,
  .tenant-post__cover {
    min-height: 220px;
  }

  .tenant-home__section-head h2::after {
    width: 100%;
  }

  .tenant-home__infos-links,
  .public-form__split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .tenant-home__content,
  .tenant-post,
  .tenant-page__shell {
    padding: clamp(8px, 2.4vw, 10px);
  }

  .portal-public-form__intro,
  .portal-public-form__text-block,
  .portal-public-form__final-note,
  .portal-public-form__section,
  .portal-public-form__submit {
    padding-left: clamp(12px, 3.6vw, 18px);
    padding-right: clamp(12px, 3.6vw, 18px);
  }

  .portal-public-form__terms-body {
    padding-left: clamp(12px, 3.6vw, 18px);
    padding-right: clamp(12px, 3.6vw, 18px);
  }

  .tenant-home__header {
    gap: 16px;
    padding: 24px 20px;
  }

  .tenant-home__brand img {
    max-height: 60px;
  }

  .tenant-home__hero-overlay {
    padding: 16px !important;
  }

  .tenant-home__hero-overlay strong,
  .tenant-post__header h1 {
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .tenant-home__hero-overlay span {
    padding: 2px 8px !important;
    margin-bottom: 6px !important;
  }
}

@media (max-width: 640px) {
  .public-access__main {
    padding: 32px 0 48px;
  }

  .public-shell--wide {
    width: min(calc(100% - 24px), 1120px);
  }

  .public-access__hero {
    margin-bottom: 20px;
  }

  .public-access__hero h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .public-access__hero p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .public-form-card--full,
  .associado-profile-block,
  .public-form-submit {
    padding: 18px;
    border-radius: 22px;
  }

  .public-form-card__head {
    margin-bottom: 18px;
  }

  .public-form-card__head h2 {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .associado-edit-form__grid,
  .field-choice-grid,
  .associado-profile-block--preco .field-choice-grid--chips {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field > input:not([type='radio']):not([type='checkbox']),
  .field select,
  .field textarea {
    min-height: 50px;
    padding-inline: 14px;
  }

  .field textarea {
    min-height: 120px;
    padding: 14px;
  }

  .field-choice-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field-choice,
  .field-choice--checkbox,
  .field--checkbox {
    width: 100%;
    min-height: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .field-choice--checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .field-choice--checkbox span,
  .field--checkbox span {
    min-width: 0;
    line-height: 1.45;
    word-break: break-word;
  }

  .field-choice--checkbox input,
  .field--checkbox input {
    margin: 0;
  }

  .public-form-submit {
    gap: 16px;
  }

  .public-form-submit__content strong {
    font-size: 0.98rem;
  }

  .public-form-submit__actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .tenant-page--signup,
  .tenant-page--signup * {
    min-width: 0;
  }

  .tenant-page--signup {
    overflow-x: hidden;
  }

  .tenant-page--signup .public-shell,
  .tenant-page--signup .public-form,
  .tenant-page--signup .associado-edit-form__grid,
  .tenant-page--signup .field,
  .tenant-page--signup .field-choice-group,
  .tenant-page--signup .field-choice-grid,
  .tenant-page--signup .public-terms-card {
    width: 100%;
    max-width: 100%;
  }

  .public-form-card--full,
  .associado-profile-block,
  .public-form-submit {
    overflow: hidden;
  }

  .associado-edit-form__grid,
  .field-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .field-choice--checkbox,
  .field--checkbox {
    width: 100%;
    overflow: hidden;
  }

  .field-choice {
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 56px;
  }

  .field-choice--checkbox span,
  .field--checkbox span,
  .field-choice span,
  .public-terms-card__content,
  .public-terms-card__content p,
  .public-terms-card__content li {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .public-terms-card__content {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .field-choice input,
  .field-choice--checkbox input,
  .field--checkbox input {
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
  }
}

/* --- Novos Estilos Premium para Home e Portais --- */

.tenant-home__benefits-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px -15px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}

.tenant-home__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border: 1px solid transparent;
}

.tenant-home__benefit-item:hover {
  transform: translateY(-8px);
  background: #fdfdfd;
  border-color: #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
}

.tenant-home__benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tenant-home__benefit-item:hover .tenant-home__benefit-icon {
  background: var(--public-green-light, #ecfdf5);
  transform: scale(1.1);
}

.tenant-home__benefit-item strong {
  display: block;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 800;
}

.tenant-home__benefit-item span {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.tenant-home__partners-section {
  margin-top: 64px;
  padding: 48px 32px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.03);
}

.tenant-home__partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}

.tenant-home__partner-logo {
  height: 100px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  filter: grayscale(1);
  opacity: 0.7;
}

.tenant-home__partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  background: #fff;
  border-color: var(--public-green, #10b981);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .tenant-home__benefits-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .tenant-home__partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .tenant-home__benefits-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .tenant-home__partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tenant-home__partners-section {
    padding: 32px 16px;
  }
  
  /* Make the Instagram Widget smaller and more elegant on Mobile */
  .tenant-home__section--instagram-wide .tenant-home__instagram-widget {
    max-width: 320px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 1024px) {
  .tenant-home__hero-overlay strong, 
  .tenant-post__header h1,
  .tenant-home__hero-overlay h1 { 
    font-size: 1.15rem !important; 
    line-height: 1.3 !important; 
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .tenant-home__hero-overlay { 
    padding: 16px 20px !important; 
  }
  .tenant-home__hero-image, 
  .tenant-home__hero-main { 
    min-height: clamp(340px, 65vw, 500px) !important; 
    display: flex !important; 
    flex-direction: column !important; 
  }
  .tenant-home__hero-overlay span { 
    font-size: 10px !important; 
    padding: 4px 8px !important; 
  }
}

/* Elfsight Instagram Widget Overrides to fix Desktop Bleeding */
.tenant-home__instagram-widget {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

.tenant-home__instagram-widget > div,
.tenant-home__instagram-widget iframe,
.tenant-home__instagram-widget [class*="elfsight"] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.tenant-home__instagram-widget ::-webkit-scrollbar {
  width: 6px;
}
.tenant-home__instagram-widget ::-webkit-scrollbar-track {
  background: transparent;
}
.tenant-home__instagram-widget ::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.portal-prose {
  line-height: 1.8;
  color: #1e293b;
  font-size: 1.25rem;
}

.portal-prose > *:first-child {
  margin-top: 0 !important;
}

.portal-prose h1, .portal-prose h2, .portal-prose h3 {
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.portal-prose h2, .portal-prose h3 {
  padding-left: 14px;
  border-left: 4px solid #10b981;
}

.portal-prose blockquote {
  margin: 1.75rem 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid #d1fae5;
  color: #334155;
  font-size: 1.15em;
  font-style: italic;
}

.portal-prose h1 { font-size: 2.25rem; }
.portal-prose h2 { font-size: 1.85rem; }
.portal-prose h3 { font-size: 1.5rem; }

.portal-prose p {
  margin-bottom: 1rem;
}

.portal-prose strong {
  color: #0f172a;
  font-weight: 700;
}

.portal-prose ul, .portal-prose ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.portal-prose li {
  margin-bottom: 0.25rem;
}

.portal-prose a {
  color: #10b981;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.portal-prose a:hover {
  color: #059669;
}

.portal-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}

@media (max-width: 640px) {
  .portal-prose {
    font-size: 1rem;
    line-height: 1.6;
  }
  .portal-prose h1 { font-size: 1.8rem; }
  .portal-prose h2 { font-size: 1.5rem; }
  .portal-prose h3 { font-size: 1.25rem; }
  .portal-prose h2, .portal-prose h3 {
    margin-top: 1.6rem;
  }
  .portal-prose p {
    margin-bottom: 0.85rem;
  }
  .portal-prose img {
    margin: 1.4rem 0;
  }
}

.tenant-post__share {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  padding: 14px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.tenant-post__share-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.tenant-post__share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.tenant-post__share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tenant-post__share-btn[data-share-tooltip]::after {
  content: attr(data-share-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  border-radius: 6px;
  background: #122033;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
}

.tenant-post__share-btn.is-copy-failed[data-share-tooltip]::after {
  background: #b91c1c;
}

.tenant-post__share-btn svg {
  width: 18px;
  height: 18px;
}

.tenant-post__share-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.tenant-post__share-btn--whatsapp { background: #e3f6e9; color: #4c9a6a; }
.tenant-post__share-btn--facebook { background: #e8eefc; color: #5b7fc7; }
.tenant-post__share-btn--x        { background: #eef0f2; color: #6b7280; }
.tenant-post__share-btn--telegram { background: #e7f2fa; color: #4f9bc9; }
.tenant-post__share-btn--linkedin { background: #e7edf6; color: #4a739e; }
.tenant-post__share-btn--email    { background: #f1f5f9; color: #64748b; }
.tenant-post__share-btn--copy     { background: #f1f5f9; color: #64748b; }

/* ==========================================================================
   Guia de Fornecedores Público
   ========================================================================== */
.portal-fornecedores-page {
  padding: 0 0 60px 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
}

.portal-fornecedores-hero {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, #1e3a8a 0%, #15803d 100%);
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  overflow: hidden;
}

.portal-fornecedores-hero__overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.portal-fornecedores-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.portal-fornecedores-hero__tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-fornecedores-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 16px 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.portal-fornecedores-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.portal-fornecedores-search-bar {
  max-width: 760px;
  margin: -32px auto 40px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.search-input-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 16px -6px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  padding: 4px 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrapper:focus-within {
  border-color: #1e3a8a;
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.15), 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-icon {
  color: #94a3b8;
  margin-right: 12px;
}

#supplier-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.05rem;
  color: #0f172a;
  padding: 14px 0;
  width: 100%;
  font-family: inherit;
}

#supplier-search-input::placeholder {
  color: #94a3b8;
}

.portal-fornecedores-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.supplier-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -1px rgba(15, 23, 42, 0.01);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.supplier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
}

.supplier-card__logo-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #fafafb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supplier-card__logo {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.supplier-card__logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(21, 128, 61, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.supplier-card__logo-fallback span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e3a8a;
}

.supplier-card__content {
  flex: 1;
  min-width: 0;
}

.supplier-card__name {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.supplier-card__phone-link {
  display: inline-flex;
  align-items: center;
  color: #15803d;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.supplier-card__phone-link:hover {
  opacity: 0.85;
}

.supplier-card__address {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.supplier-card__address span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.supplier-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Helpers & Estados */
.suppliers-loading {
  text-align: center;
  padding: 60px 24px;
  color: #64748b;
}

.suppliers-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e8f0;
  border-top-color: #1e3a8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px auto;
}

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

.suppliers-empty {
  text-align: center;
  padding: 80px 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px dashed #cbd5e1;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.suppliers-empty svg {
  color: #94a3b8;
  margin-bottom: 16px;
}

.suppliers-empty h3 {
  margin: 0 0 8px 0;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
}

.suppliers-empty p {
  margin: 0;
  font-size: 0.95rem;
}

.suppliers-error {
  text-align: center;
  padding: 40px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 16px;
  color: #991b1b;
}

.suppliers-error h3 {
  margin: 0 0 8px 0;
  font-weight: 700;
}

.suppliers-error p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
  
  .supplier-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .supplier-card__logo-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
  }
}


/* Ajuste do site novo: evita a coluna de manchetes ficar espremida/cortada
   em telas médias (tablets) — some completamente abaixo de 1120px, igual já
   acontecia abaixo de 780px. */
@media (max-width: 1120px) {
  .tenant-home__hero-side {
    display: none;
  }
}

/* Ajustes finos do rodapé no mobile (logo centralizada, título em uma linha,
   endereço sem quebra, respiro entre ícones sociais e a barra final, barra
   final ocupando 100% da largura da tela com texto discreto). */
@media (max-width: 640px) {
  .tenant-footer__logo-wrapper {
    justify-content: center;
  }

  .tenant-footer__brand-title {
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tenant-footer__contact,
  .tenant-footer__contact-item {
    text-align: left;
  }

  .tenant-footer__contact-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tenant-footer__social {
    margin-top: 4px;
    margin-bottom: 28px;
  }

  .tenant-footer__bottom-bar {
    margin-top: 8px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .tenant-footer__bottom-bar .tenant-footer__bottom-content {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.66rem;
  }
}
