/* Estruturação — loading / intro pages (SITE) */

.estrut-page {
  min-height: 100vh;
  background: var(--bg-primary);
  --estrut-card-shadow-color: #191919;
  --estrut-accent: #2563eb;
  --estrut-accent-soft: #60a5fa;
  --estrut-accent-to: #1d4ed8;
  --estrut-glow: color-mix(in srgb, var(--estrut-accent) 35%, transparent);
}

.estrut-page[data-module="overview"] {
  --estrut-accent: #2563eb;
  --estrut-accent-soft: #60a5fa;
  --estrut-accent-to: #7c3aed;
}

.estrut-page[data-module="comercial"] {
  --estrut-accent: #2563eb;
  --estrut-accent-soft: #60a5fa;
  --estrut-accent-to: #1d4ed8;
}

.estrut-page[data-module="atendimentos"] {
  --estrut-accent: #0891b2;
  --estrut-accent-soft: #22d3ee;
  --estrut-accent-to: #0e7490;
}

.estrut-page[data-module="operacional"] {
  --estrut-accent: #7c3aed;
  --estrut-accent-soft: #a78bfa;
  --estrut-accent-to: #6d28d9;
}

.estrut-page[data-module="financeira"] {
  --estrut-accent: #059669;
  --estrut-accent-soft: #34d399;
  --estrut-accent-to: #047857;
}

.estrut-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-primary) 88%, transparent);
  backdrop-filter: blur(12px);
}

.estrut-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.estrut-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.estrut-header__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.estrut-header__link:hover {
  color: var(--estrut-accent-soft);
}

.estrut-header__link--active {
  color: var(--estrut-accent-soft);
}

.estrut-header__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #34d399, #059669);
  border: 1px solid color-mix(in srgb, #25d366 45%, #fff);
  box-shadow: 0 4px 16px color-mix(in srgb, #25d366 35%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estrut-header__whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px color-mix(in srgb, #25d366 45%, transparent);
  color: #fff;
}

.estrut-header__whatsapp-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.lang-switcher--estrut .lang-switcher__btn {
  padding: 0.35rem 0.65rem;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
}

.lang-switcher--estrut .lang-switcher__btn.is-active {
  border-color: var(--estrut-accent);
  color: var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-secondary));
}

.estrut-hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-6);
  overflow: hidden;
}

.estrut-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, var(--estrut-glow), transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 20%, color-mix(in srgb, var(--estrut-accent-to) 25%, transparent), transparent 60%);
  pointer-events: none;
  animation: estrut-mesh 14s ease-in-out infinite alternate;
}

@keyframes estrut-mesh {
  0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(2%, 3%) scale(1.04); opacity: 1; }
}

.estrut-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: var(--space-8) var(--space-10);
  align-items: center;
}

.estrut-hero__copy {
  opacity: 0;
  transform: translateY(18px);
  animation: estrut-reveal 0.85s var(--ease) 0.15s forwards;
}

.estrut-hero__eyebrow {
  margin: 0 0 var(--space-4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
}

.estrut-hero__title {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.estrut-hero__title-accent {
  display: block;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, var(--estrut-accent-soft), var(--estrut-accent-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px var(--estrut-glow));
}

.estrut-hero__desc {
  margin: 0 0 var(--space-6);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.estrut-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: estrut-reveal 0.9s var(--ease) 0.35s forwards;
}

.estrut-hero__frame {
  position: relative;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.estrut-hero__img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  border: none;
  object-fit: contain;
  object-position: center center;
}

.estrut-hero__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, var(--estrut-accent), var(--estrut-accent-to));
  box-shadow: 0 8px 20px var(--estrut-glow);
}

.estrut-hero__role {
  position: absolute;
  left: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
  user-select: none;
}

.estrut-loading {
  margin: 0 0 var(--space-6);
  max-width: 28rem;
}

.estrut-loading__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.estrut-loading__pct {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--estrut-accent-soft);
}

.estrut-loading__track {
  height: 6px;
  border-radius: 999px;
  background: var(--bg-elevated);
  overflow: hidden;
  border: 1px solid var(--border);
}

.estrut-loading__bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--estrut-accent), var(--estrut-accent-soft), var(--estrut-accent-to));
  background-size: 200% 100%;
  transition: width 0.12s linear;
  animation: estrut-shimmer 2s linear infinite;
}

.estrut-page.is-ready .estrut-loading__bar {
  animation: none;
}

@keyframes estrut-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.estrut-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.estrut-hero__actions .estrut-funnel__whatsapp {
  min-width: min(100%, 280px);
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}

.estrut-whatsapp-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.estrut-whatsapp-cta--center {
  justify-content: center;
}

.estrut-sales-closing .estrut-whatsapp-cta {
  margin-top: 2rem;
}

.estrut-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s;
}

.estrut-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--estrut-accent), var(--estrut-accent-to));
  box-shadow: 0 10px 28px var(--estrut-glow);
}

.estrut-btn--primary:disabled,
.estrut-btn--primary.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.estrut-btn--primary:not(:disabled):not(.is-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--estrut-glow);
}

.estrut-btn--ghost {
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.estrut-btn--ghost:hover {
  color: var(--text-primary);
  border-color: color-mix(in srgb, var(--estrut-accent) 35%, var(--border));
}

.estrut-content {
  padding: var(--space-6) 0 var(--space-10);
  width: 100%;
  box-sizing: border-box;
}

.estrut-page .estrut-content__inner.container {
  max-width: 100%;
  width: 100%;
}

.estrut-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  width: 100%;
}

.estrut-pillars {
  width: 80%;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  padding-block: var(--space-2);
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Grid de módulos — igual ao hub Vue (EstruturacaoPage) */
.estruturacao-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.5rem 0.5rem;
  overflow: visible;
  box-sizing: border-box;
}

.estruturacao-card {
  --card-overlap: clamp(20px, 4.5vw, 30px);
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  margin-left: calc(var(--card-overlap) * -1);
  padding: 0;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
  overflow: visible;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease, z-index 0s;
  filter: none;
}

.estruturacao-card:focus,
.estruturacao-card:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}

button.estruturacao-card {
  appearance: none;
  border: none;
  padding: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
}

button.estruturacao-card:not(:first-child) {
  margin-left: calc(var(--card-overlap) * -1);
}

button.estruturacao-card:first-child {
  margin-left: 0;
}

button.estruturacao-card:focus-visible {
  outline: 2px solid var(--estrut-accent-soft);
  outline-offset: 4px;
  border-radius: 8px;
}

.estruturacao-card:first-child {
  margin-left: 0;
}

.estruturacao-card:nth-child(2) { z-index: 2; }
.estruturacao-card:nth-child(3) { z-index: 3; }
.estruturacao-card:nth-child(4) { z-index: 4; }

/* Destaque no hover (com ou sem seleção) */
.estruturacao-card:hover {
  transform: scale(1.1);
  z-index: 10;
  filter: none;
}

/* Selecionado em destaque quando nenhum card está em hover */
.estruturacao-grid:has(.estruturacao-card.is-selected):not(:has(.estruturacao-card:hover)) .estruturacao-card.is-selected {
  transform: scale(1.1);
  z-index: 10;
  filter: none;
}

/* Demais cards em cinza durante hover ou quando há seleção sem hover */
.estruturacao-grid:has(.estruturacao-card:hover) .estruturacao-card:not(:hover),
.estruturacao-grid:has(.estruturacao-card.is-selected):not(:has(.estruturacao-card:hover)) .estruturacao-card:not(.is-selected) {
  transform: none;
  filter: grayscale(1) brightness(0.55);
}

.estruturacao-card__image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: filter 0.3s ease;
}

.estruturacao-card:hover .estruturacao-card__image,
.estruturacao-grid:has(.estruturacao-card.is-selected):not(:has(.estruturacao-card:hover)) .estruturacao-card.is-selected .estruturacao-card__image {
  filter:
    drop-shadow(0 0 3px var(--estrut-card-shadow-color))
    drop-shadow(0 8px 22px color-mix(in srgb, var(--estrut-card-shadow-color) 70%, transparent));
}

/* Sales panels (overview) */

.estrut-sales,
.estrut-sales-closing {
  --estrut-sales-radius: 4px;
  --estrut-sales-radius-inner: 3px;
}

.estrut-sales {
  width: 100%;
  max-width: 960px;
  scroll-margin-top: 5.5rem;
}

.estrut-sales-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-8);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 25%, var(--border));
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--estrut-accent) 14%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.estrut-sales-placeholder__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--estrut-sales-radius);
  color: var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 14%, var(--bg-primary));
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 30%, var(--border));
  animation: estrut-placeholder-bounce 2.4s ease-in-out infinite;
}

.estrut-sales-placeholder__text {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-secondary);
}

@keyframes estrut-placeholder-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.estrut-sales.is-active .estrut-sales-placeholder {
  display: none;
}

.estrut-sales-panel {
  position: relative;
  margin-bottom: var(--space-8);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.estrut-sales-panel[hidden] {
  display: none !important;
}

.estrut-sales-panel.is-active {
  animation: estrut-sales-in 0.4s ease;
}

.estrut-sales-panel[data-module="comercial"] {
  --estrut-accent: #2563eb;
  --estrut-accent-soft: #60a5fa;
  --estrut-accent-to: #1d4ed8;
  --estrut-glow: color-mix(in srgb, #2563eb 35%, transparent);
}

.estrut-sales-panel[data-module="atendimentos"] {
  --estrut-accent: #0891b2;
  --estrut-accent-soft: #22d3ee;
  --estrut-accent-to: #0e7490;
  --estrut-glow: color-mix(in srgb, #0891b2 35%, transparent);
}

.estrut-sales-panel[data-module="operacional"] {
  --estrut-accent: #7c3aed;
  --estrut-accent-soft: #a78bfa;
  --estrut-accent-to: #6d28d9;
  --estrut-glow: color-mix(in srgb, #7c3aed 35%, transparent);
}

.estrut-sales-panel[data-module="financeira"] {
  --estrut-accent: #059669;
  --estrut-accent-soft: #34d399;
  --estrut-accent-to: #047857;
  --estrut-glow: color-mix(in srgb, #059669 35%, transparent);
}

.estrut-sales-panel__backdrop {
  display: none;
}

.estrut-sales-panel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3.5vw, 2rem);
  border: none;
  border-radius: 0;
  background: transparent;
}

.estrut-sales-panel__head {
  margin-bottom: var(--space-6);
  text-align: left;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, var(--estrut-accent) 12%, var(--border));
}

.estrut-sales-panel__badge {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-primary));
}

.estrut-sales-panel__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff 10%, var(--estrut-accent-soft) 50%, var(--estrut-accent-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.estrut-sales-panel__lead {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0 0 var(--space-6);
  padding: var(--space-6) var(--space-6) var(--space-6) calc(var(--space-6) + 6px);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
  border-left: 4px solid var(--estrut-accent-soft);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--estrut-accent) 10%, var(--bg-primary)), var(--bg-primary));
  box-shadow: 0 12px 40px color-mix(in srgb, var(--estrut-accent) 8%, transparent);
}

.estrut-sales-panel__lead p {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-secondary);
}

.estrut-sales-panel__lead p:first-child {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.estrut-sales-panel__lead p:first-child::before {
  content: '“';
  margin-right: 0.15em;
  color: var(--estrut-accent-soft);
  font-weight: 800;
}

.estrut-sales-panel__lead p:empty,
.estrut-sales-list li:empty {
  display: none;
}

.estrut-sales-panel__dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.estrut-sales-block {
  margin-bottom: 0;
  padding: var(--space-5);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.estrut-sales-block--pain {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid color-mix(in srgb, #ef4444 42%, var(--border));
  border-left: 5px solid #ef4444;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, color-mix(in srgb, #ef4444 16%, transparent), transparent 58%),
    radial-gradient(ellipse 45% 40% at 100% 100%, color-mix(in srgb, #991b1b 12%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, #450a0a 28%, var(--bg-primary)), var(--bg-primary));
  box-shadow:
    0 0 0 1px color-mix(in srgb, #ef4444 10%, transparent),
    0 20px 56px color-mix(in srgb, #ef4444 14%, transparent),
    inset 0 1px 0 color-mix(in srgb, #ef4444 10%, transparent);
}

.estrut-sales-block--pain::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, #ef4444 14%, transparent), transparent 68%);
  pointer-events: none;
}

.estrut-sales-block--gain {
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--estrut-accent) 38%, var(--border));
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, color-mix(in srgb, var(--estrut-accent) 12%, transparent), transparent 55%),
    linear-gradient(165deg, color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-primary)), var(--bg-primary));
  box-shadow: 0 12px 36px var(--estrut-glow);
}

.estrut-sales-block--featured {
  margin-bottom: var(--space-6);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 30%, var(--border));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--estrut-accent) 9%, var(--bg-primary)), var(--bg-primary));
  box-shadow: 0 14px 40px color-mix(in srgb, var(--estrut-accent) 10%, transparent);
}

.estrut-sales-block__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  border-bottom: 1px solid color-mix(in srgb, var(--estrut-accent) 12%, var(--border));
}

.estrut-sales-block--pain .estrut-sales-block__title {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fecaca;
  border-bottom-color: color-mix(in srgb, #ef4444 35%, transparent);
}

.estrut-sales-block--pain .estrut-sales-block__title::before {
  content: '!';
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, #f87171, #dc2626);
  box-shadow:
    0 0 0 3px color-mix(in srgb, #ef4444 22%, transparent),
    0 0 24px color-mix(in srgb, #ef4444 45%, transparent);
  flex-shrink: 0;
}

.estrut-sales-block--gain .estrut-sales-block__title::before {
  content: '';
  width: 4px;
  height: 1.1rem;
  border-radius: var(--estrut-sales-radius);
  background: linear-gradient(180deg, var(--estrut-accent-soft), var(--estrut-accent-to));
  flex-shrink: 0;
}

.estrut-sales-block--featured .estrut-sales-block__title::before {
  content: '';
  width: 4px;
  height: 1.1rem;
  border-radius: var(--estrut-sales-radius);
  background: linear-gradient(180deg, var(--estrut-accent-soft), var(--estrut-accent));
  flex-shrink: 0;
}

.estrut-sales-block--featured .estrut-sales-block__title {
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 800;
}

.estrut-sales-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.estrut-sales-list--pain {
  position: relative;
  z-index: 1;
  counter-reset: estrut-pain;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.estrut-sales-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--estrut-sales-radius);
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-secondary);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.estrut-sales-list li:hover {
  background: color-mix(in srgb, var(--text-primary) 4%, transparent);
}

.estrut-sales-list--pain li {
  counter-increment: estrut-pain;
  align-items: center;
  min-height: 3.25rem;
  padding: var(--space-3) var(--space-4);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fee2e2;
  border: 1px solid color-mix(in srgb, #ef4444 28%, transparent);
  border-left: 3px solid #f87171;
  background: color-mix(in srgb, #ef4444 8%, var(--bg-primary));
  box-shadow: 0 4px 18px color-mix(in srgb, #ef4444 10%, transparent);
}

.estrut-sales-list--pain li:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, #ef4444 12%, var(--bg-primary));
  box-shadow: 0 8px 24px color-mix(in srgb, #ef4444 18%, transparent);
}

.estrut-sales-list--pain li::before {
  content: counter(estrut-pain, decimal-leading-zero);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--estrut-sales-radius);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fecaca;
  background: linear-gradient(145deg, color-mix(in srgb, #ef4444 35%, var(--bg-primary)), color-mix(in srgb, #991b1b 40%, var(--bg-primary)));
  border: 1px solid color-mix(in srgb, #ef4444 35%, transparent);
  box-shadow: 0 0 16px color-mix(in srgb, #ef4444 25%, transparent);
}

.estrut-sales-list--gain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.estrut-sales-list--gain li {
  align-items: center;
  min-height: 3rem;
  padding: var(--space-3);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 18%, transparent);
  background: color-mix(in srgb, var(--estrut-accent) 5%, var(--bg-primary));
}

.estrut-sales-list--gain li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--estrut-glow);
}

.estrut-sales-list--gain li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--estrut-sales-radius);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 24%, transparent);
  box-shadow: 0 0 12px var(--estrut-glow);
}

.estrut-sales-implant-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: var(--space-3);
}

.estrut-sales-implant-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3);
  min-height: 6.5rem;
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 30%, var(--border));
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-primary)),
    var(--bg-primary)
  );
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.estrut-sales-implant-grid li > span {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}

.estrut-sales-implant-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.55rem;
  border-radius: var(--estrut-sales-radius);
  color: var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 18%, var(--bg-primary));
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 30%, var(--border));
  box-shadow: 0 4px 14px var(--estrut-glow);
  box-sizing: border-box;
  flex-shrink: 0;
}

.estrut-sales-implant-icon path,
.estrut-sales-implant-icon circle,
.estrut-sales-implant-icon rect {
  vector-effect: non-scaling-stroke;
}

.estrut-sales-implant-grid li:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--estrut-accent-soft) 55%, var(--border));
  box-shadow: 0 8px 20px var(--estrut-glow);
}

.estrut-sales-panel__tagline {
  margin: 0;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--estrut-sales-radius);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  color: var(--text-primary);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--estrut-accent) 16%, var(--bg-primary)),
    color-mix(in srgb, var(--estrut-accent-to) 10%, var(--bg-primary))
  );
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 6%, transparent),
    0 8px 32px var(--estrut-glow);
}

.estrut-sales-closing {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-bottom: var(--space-10);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.estrut-sales-closing__backdrop {
  display: none;
}

.estrut-sales-closing__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.estrut-sales-closing__intro {
  width: 100%;
  margin-bottom: var(--space-6);
  text-align: left;
}

.estrut-sales-closing__copy {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
  gap: var(--space-5) var(--space-8);
  align-items: stretch;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  padding-left: calc(clamp(1.25rem, 3vw, 1.75rem) + 8px);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
  border-left: 4px solid var(--estrut-accent-soft);
  background:
    radial-gradient(ellipse 55% 70% at 100% 50%, color-mix(in srgb, var(--estrut-accent) 12%, transparent), transparent 62%),
    radial-gradient(ellipse 85% 70% at 0% 0%, color-mix(in srgb, var(--estrut-accent) 14%, transparent), transparent 58%),
    linear-gradient(155deg, color-mix(in srgb, var(--estrut-accent) 8%, var(--bg-primary)), var(--bg-primary));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--estrut-accent) 8%, transparent),
    0 18px 48px color-mix(in srgb, var(--estrut-accent) 10%, transparent);
  overflow: hidden;
}

.estrut-sales-closing__copy-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: var(--space-2);
  grid-column: 1;
  grid-row: 1;
}

.estrut-sales-closing__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  padding-top: 0;
  box-sizing: border-box;
  grid-column: 2;
  grid-row: 1;
}

.estrut-sales-closing__frame {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.estrut-sales-closing__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: top center;
}

.estrut-sales-closing__role {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
}

.estrut-sales-closing__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-4);
  padding: 0.4rem 0.95rem 0.4rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 14%, var(--bg-primary));
  box-shadow: 0 0 20px color-mix(in srgb, var(--estrut-accent) 12%, transparent);
}

.estrut-sales-closing__eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--estrut-accent-soft);
  box-shadow: 0 0 10px var(--estrut-accent-soft);
}

.estrut-sales-closing__title {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-5);
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(
    118deg,
    #fff 0%,
    color-mix(in srgb, var(--estrut-accent-soft) 92%, #fff) 38%,
    var(--estrut-accent-to) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.estrut-sales-closing__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-5);
  max-width: none;
  padding: var(--space-4) 0 var(--space-4) var(--space-4);
  border-left: 3px solid color-mix(in srgb, var(--estrut-accent-soft) 70%, transparent);
  font-size: clamp(1.12rem, 2.3vw, 1.28rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-wrap: balance;
}

.estrut-sales-closing__body {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-5);
  max-width: none;
  font-size: clamp(0.98rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

.estrut-sales-closing__credentials {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  box-sizing: border-box;
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-4) var(--space-3);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 16%, var(--border));
  border-top: 1px solid color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 5%, var(--bg-primary));
  max-width: none;
}

.estrut-sales-closing__credentials-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  opacity: 1;
}

.estrut-sales-closing__credentials-kicker::before {
  content: '';
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--estrut-accent-soft), transparent);
}

.estrut-sales-closing__credentials-text {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.72;
  color: color-mix(in srgb, var(--text-secondary) 92%, var(--text-primary));
}

.estrut-sales-closing__pillars {
  margin: 0 auto var(--space-6);
  padding: var(--space-5) 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 52rem;
  border-top: 1px solid color-mix(in srgb, var(--estrut-accent) 12%, var(--border));
  text-align: center;
}

.estrut-sales-closing__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  border-radius: var(--estrut-sales-radius);
  border: 1px solid var(--pillar-border, var(--border));
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--pillar-accent, var(--estrut-accent)) 14%, var(--bg-primary)),
    var(--bg-primary)
  );
  box-shadow: 0 10px 28px color-mix(in srgb, var(--pillar-accent, var(--estrut-accent)) 12%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.estrut-sales-closing__pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--pillar-accent, var(--estrut-accent)) 22%, transparent);
}

.estrut-sales-closing__pillar[data-pillar="comercial"] {
  --pillar-accent: #2563eb;
  --pillar-border: color-mix(in srgb, #2563eb 35%, var(--border));
}

.estrut-sales-closing__pillar[data-pillar="atendimentos"] {
  --pillar-accent: #0891b2;
  --pillar-border: color-mix(in srgb, #0891b2 35%, var(--border));
}

.estrut-sales-closing__pillar[data-pillar="operacional"] {
  --pillar-accent: #7c3aed;
  --pillar-border: color-mix(in srgb, #7c3aed 35%, var(--border));
}

.estrut-sales-closing__pillar[data-pillar="financeira"] {
  --pillar-accent: #059669;
  --pillar-border: color-mix(in srgb, #059669 35%, var(--border));
}

.estrut-sales-closing__pillar-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--pillar-accent, var(--estrut-accent-soft));
  opacity: 0.85;
}

.estrut-sales-closing__pillar-label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.estrut-sales-closing__pillar-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 3px;
  margin: 0 auto var(--space-2);
  border-radius: var(--estrut-sales-radius);
  background: linear-gradient(90deg, transparent, var(--pillar-accent, var(--estrut-accent-soft)), transparent);
}

.estrut-sales-closing__highlight {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  padding: var(--space-6) var(--space-6);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 30%, var(--border));
  border-radius: var(--estrut-sales-radius);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-primary)),
    color-mix(in srgb, var(--estrut-accent-to) 8%, var(--bg-primary))
  );
  box-shadow: 0 8px 32px var(--estrut-glow);
}

.estrut-sales-closing__highlight p {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-primary);
}

.estrut-sales-closing__highlight p::before {
  content: '“';
  display: block;
  margin-bottom: var(--space-2);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--estrut-accent-soft);
  opacity: 0.75;
}

/* Conversion funnel (overview) */

.estrut-funnel {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.estrut-funnel__block {
  width: 100%;
}

.estrut-funnel__shell {
  position: relative;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.estrut-funnel__shell--compact {
  height: 100%;
}

.estrut-funnel__shell--cta {
  background: transparent;
}

.estrut-funnel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
  border: none;
  border-radius: 0;
  background: transparent;
}

.estrut-funnel__inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: center;
}

.estrut-funnel__inner--cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: var(--space-5) var(--space-8);
  align-items: center;
}

.estrut-contact {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  margin-top: var(--space-8);
}

.estrut-contact__why {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(1.5rem, 3.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text-primary);
}

.estrut-contact__impact {
  position: relative;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  border-radius: var(--estrut-sales-radius, 4px);
  overflow: hidden;
}

.estrut-contact__impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 120% at 50% 0%, color-mix(in srgb, var(--estrut-accent) 22%, transparent), transparent 65%),
    radial-gradient(ellipse 70% 80% at 50% 100%, color-mix(in srgb, var(--estrut-accent-to) 14%, transparent), transparent 70%);
  pointer-events: none;
}

.estrut-contact__impact::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 28%, var(--border));
  border-radius: inherit;
  pointer-events: none;
}

.estrut-contact__punchline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) clamp(0.75rem, 2vw, 1.5rem);
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
}

.estrut-contact__punchline-part {
  display: block;
  font-size: clamp(1.35rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary) 0%, color-mix(in srgb, var(--estrut-accent-soft) 85%, var(--text-primary)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px color-mix(in srgb, var(--estrut-accent) 35%, transparent));
}

.estrut-contact__punchline-part--accent {
  background: linear-gradient(135deg, var(--estrut-accent-soft), var(--estrut-accent-to));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 32px var(--estrut-glow));
}

@media (min-width: 720px) {
  .estrut-contact__punchline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-2) var(--space-4);
  }
}

.estrut-contact__title {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: var(--space-5);
  border-top: 1px solid color-mix(in srgb, var(--text-primary) 8%, var(--border));
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.estrut-funnel__head {
  margin-bottom: var(--space-6);
  text-align: center;
}

.estrut-funnel__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-primary));
}

.estrut-funnel__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff 10%, var(--estrut-accent-soft) 50%, var(--estrut-accent-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.estrut-funnel__title--sm {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  text-align: left;
  -webkit-text-fill-color: unset;
  background: none;
  color: var(--text-primary);
}

.estrut-funnel__subtitle {
  margin: var(--space-3) 0 0;
  max-width: 32rem;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-secondary);
}

.estrut-funnel__features {
  margin: 0 0 var(--space-6);
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.estrut-funnel__feature {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 18%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 4%, var(--bg-primary));
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estrut-funnel__feature:hover {
  border-color: color-mix(in srgb, var(--estrut-accent-soft) 45%, var(--border));
  box-shadow: 0 8px 24px var(--estrut-glow);
}

.estrut-funnel__feature--wide {
  grid-column: 1 / -1;
}

.estrut-funnel__feature-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--estrut-accent-soft);
  border-radius: var(--estrut-sales-radius, 4px);
  background: color-mix(in srgb, var(--estrut-accent) 18%, var(--bg-primary));
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 30%, var(--border));
}

.estrut-funnel__features--steps {
  gap: var(--space-4);
}

.estrut-funnel__feature--step {
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  padding: clamp(1.15rem, 2.5vw, 1.45rem);
  text-align: left;
}

.estrut-funnel__feature-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.estrut-funnel__feature-title {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.estrut-funnel__feature-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: calc(2rem + var(--space-3));
}

.estrut-funnel__feature-body p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
}

.estrut-funnel__feature--step:hover {
  border-color: color-mix(in srgb, var(--estrut-accent-soft) 45%, var(--border));
  box-shadow: 0 10px 28px var(--estrut-glow);
}

.estrut-funnel__promise {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, color-mix(in srgb, var(--estrut-accent) 14%, transparent), transparent 58%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--estrut-accent) 14%, var(--bg-primary)),
      color-mix(in srgb, var(--estrut-accent-to) 8%, var(--bg-primary))
    );
  text-align: left;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 6%, transparent),
    0 16px 40px color-mix(in srgb, var(--estrut-accent) 10%, transparent);
}

.estrut-funnel__promise-lead {
  margin: 0 0 var(--space-5);
  max-width: 42rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-wrap: balance;
}

.estrut-funnel__promise-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.estrut-funnel__promise-copy p {
  margin: 0;
  font-size: clamp(0.94rem, 1.8vw, 1rem);
  line-height: 1.72;
  color: var(--text-secondary);
}

.estrut-funnel__promise-contrast {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--estrut-sales-radius, 4px);
  border-left: 3px solid var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 8%, var(--bg-primary));
  color: var(--text-primary) !important;
  font-weight: 600;
}

.estrut-funnel__promise-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0 0 var(--space-5);
  padding: 0;
  list-style: none;
}

.estrut-funnel__promise-outcomes li {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 6%, var(--bg-primary));
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

.estrut-funnel__promise-footer {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--estrut-accent-soft);
  text-align: center;
}

.estrut-funnel__promise-title {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--text-primary);
}

.estrut-funnel__promise-text {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-secondary);
}

.estrut-funnel__promise--pre-faq {
  margin: var(--space-6) 0 0;
}

.estrut-funnel__promise-cta {
  margin-top: var(--space-5);
  margin-bottom: var(--space-8);
}

.estrut-funnel__duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  width: 100%;
}

.estrut-funnel__inner--office {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.estrut-funnel__office-copy {
  min-width: 0;
  max-width: 42rem;
}

.estrut-funnel__office-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
}

.estrut-funnel__office-title {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.estrut-funnel__office-body {
  margin: 0 0 var(--space-4);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.estrut-funnel__office-meta {
  margin: 0;
  padding-top: var(--space-3);
  border-top: 1px solid color-mix(in srgb, var(--text-primary) 7%, var(--border));
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.estrut-funnel__office-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.estrut-funnel__office-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--text-primary) 8%, var(--border));
  background: var(--bg-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.estrut-funnel__office-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.estrut-funnel__block--faq {
  max-width: 680px;
  margin-inline: auto;
}

.estrut-funnel__inner--faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.estrut-funnel__faq-header {
  text-align: center;
}

.estrut-funnel__faq-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
}

.estrut-funnel__faq-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.estrut-funnel__faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.estrut-funnel__faq-item {
  border: 1px solid color-mix(in srgb, var(--text-primary) 8%, var(--border));
  border-radius: var(--estrut-sales-radius, 4px);
  background: color-mix(in srgb, var(--bg-primary) 92%, var(--bg-secondary));
  transition:
    border-color var(--duration, 0.2s) var(--ease, ease),
    box-shadow var(--duration, 0.2s) var(--ease, ease);
}

.estrut-funnel__faq-item:hover {
  border-color: color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
}

.estrut-funnel__faq-item[open] {
  border-color: color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.estrut-funnel__faq-summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-4);
  transition: color var(--duration, 0.2s) var(--ease, ease);
}

.estrut-funnel__faq-summary::-webkit-details-marker {
  display: none;
}

.estrut-funnel__faq-summary:hover {
  color: var(--text-primary);
}

.estrut-funnel__faq-item[open] .estrut-funnel__faq-summary {
  color: var(--text-primary);
}

.estrut-funnel__faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.estrut-funnel__faq-toggle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-primary) 10%, var(--border));
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--duration, 0.2s) var(--ease, ease),
    border-color var(--duration, 0.2s) var(--ease, ease),
    transform var(--duration, 0.2s) var(--ease, ease);
}

.estrut-funnel__faq-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg) translateY(-1px);
  transition:
    transform var(--duration, 0.2s) var(--ease, ease),
    border-color var(--duration, 0.2s) var(--ease, ease);
}

.estrut-funnel__faq-item[open] .estrut-funnel__faq-toggle {
  background: color-mix(in srgb, var(--estrut-accent) 14%, var(--bg-primary));
  border-color: color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
}

.estrut-funnel__faq-item[open] .estrut-funnel__faq-toggle::before {
  transform: rotate(-135deg) translateY(1px);
  border-color: var(--estrut-accent-soft);
}

.estrut-funnel__faq-body {
  padding: 0 var(--space-5) var(--space-4);
  animation: estrut-faq-body-in 0.3s var(--ease, ease);
}

@keyframes estrut-faq-body-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.estrut-funnel__faq-answer {
  margin: 0;
  padding-top: var(--space-2);
  border-top: 1px solid color-mix(in srgb, var(--text-primary) 6%, var(--border));
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .estrut-funnel__faq-body {
    animation: none;
  }
}

.estrut-funnel__badge {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.25rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--estrut-sales-radius, 4px);
}

.estrut-funnel__badge--urgency {
  color: #fecaca;
  border: 1px solid color-mix(in srgb, #ef4444 35%, var(--border));
  background: color-mix(in srgb, #ef4444 12%, var(--bg-primary));
}

.estrut-funnel__location {
  margin: 0 0 var(--space-4);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
}

.estrut-funnel__prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.estrut-funnel__prose p {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-secondary);
}

.estrut-funnel__prose-emphasis {
  font-weight: 700;
  color: var(--text-primary) !important;
  padding-top: var(--space-2);
  border-top: 1px solid color-mix(in srgb, var(--estrut-accent) 12%, var(--border));
}

.estrut-funnel__cta-copy {
  min-width: 0;
}

.estrut-funnel__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.estrut-funnel__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: min(100%, 300px);
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: var(--estrut-sales-radius, 4px);
  background: linear-gradient(135deg, #34d399, #059669);
  border: 1px solid color-mix(in srgb, #25d366 50%, #fff);
  box-shadow:
    0 8px 32px color-mix(in srgb, #25d366 50%, transparent),
    0 0 48px color-mix(in srgb, #25d366 20%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estrut-funnel__whatsapp:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px color-mix(in srgb, #25d366 60%, transparent),
    0 0 56px color-mix(in srgb, #25d366 30%, transparent);
  color: #fff;
}

.estrut-funnel__whatsapp-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.estrut-funnel__phone {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.estrut-funnel__phone a {
  margin-left: 0.35rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.estrut-funnel__phone a:hover {
  color: var(--estrut-accent-soft);
}

@keyframes estrut-sales-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.estrut-bullets {
  width: 100%;
  max-width: 720px;
  padding: var(--space-6) var(--space-8);
  border-radius: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--estrut-accent) 8%, var(--bg-secondary)), var(--bg-secondary));
}

.estrut-bullets__title {
  margin: 0 0 var(--space-4);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.estrut-bullets__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.estrut-bullets__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

.estrut-bullets__item::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--estrut-accent), var(--estrut-accent-to));
  box-shadow: 0 0 12px var(--estrut-glow);
}

.estrut-access {
  width: 100%;
  max-width: 960px;
}

.estrut-access__shell {
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.estrut-access__panel {
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.estrut-access__header {
  margin-bottom: 1.15rem;
  text-align: center;
}

.estrut-access__eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 10%, var(--bg-primary));
}

.estrut-access__subtitle {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.estrut-access__members-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 1.15rem;
  padding: var(--space-4) var(--space-5);
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--estrut-accent) 22%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 6%, var(--bg-primary));
  font-size: var(--text-sm);
  line-height: 1.6;
  text-align: center;
  color: var(--text-secondary);
}

.estrut-access__members-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--estrut-accent-soft);
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--estrut-accent-soft) 35%, var(--border));
  background: color-mix(in srgb, var(--estrut-accent) 10%, var(--bg-primary));
}

.estrut-access__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.estrut-access__deliverable {
  margin-top: var(--space-4);
}

.estrut-access__deliverable .estrut-funnel__feature--access {
  width: 100%;
}

.estrut-access__card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 1.1rem 1.15rem;
  border-radius: var(--estrut-sales-radius, 4px);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-primary) 90%, transparent);
  cursor: default;
  opacity: 0.92;
}

.estrut-access__card--whatsapp {
  border-color: color-mix(in srgb, #25d366 28%, var(--border));
  background: color-mix(in srgb, #25d366 4%, var(--bg-primary));
}

.estrut-access__card--discord {
  border-color: color-mix(in srgb, #5865f2 28%, var(--border));
  background: color-mix(in srgb, #5865f2 4%, var(--bg-primary));
}

.estrut-access__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #fff;
}

.estrut-access__icon-wrap--whatsapp {
  background: linear-gradient(145deg, #34d399, #059669);
}

.estrut-access__icon-wrap--discord {
  background: linear-gradient(145deg, #818cf8, #4f46e5);
}

.estrut-access__icon {
  width: 1.45rem;
  height: 1.45rem;
}

.estrut-access__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.estrut-access__label {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
}

.estrut-access__hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.estrut-access__lock {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0.65;
}

.estrut-footer {
  position: relative;
  overflow: hidden;
  padding: 15px 0 var(--space-7);
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background:
    radial-gradient(ellipse 55% 80% at 50% 100%, color-mix(in srgb, var(--estrut-accent) 8%, transparent), transparent 65%),
    var(--bg-primary);
}

.estrut-footer__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 0% 50%, color-mix(in srgb, var(--estrut-accent) 6%, transparent), transparent);
}

.estrut-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 15px;
}

.estrut-footer__grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-9);
}

@media (min-width: 768px) {
  .estrut-footer__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-12);
    align-items: start;
  }
}

.estrut-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.estrut-footer__logo {
  display: inline-flex;
  width: fit-content;
  opacity: 0.95;
  transition: opacity var(--duration) var(--ease);
}

.estrut-footer__logo:hover {
  opacity: 1;
}

.estrut-footer__tagline {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 46ch;
}

.estrut-footer__privacy {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 46ch;
}

.estrut-footer__privacy a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--text-secondary) 35%, transparent);
  transition:
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.estrut-footer__privacy a:hover {
  color: var(--text-primary);
  border-color: color-mix(in srgb, var(--text-primary) 45%, transparent);
}

.estrut-footer__nav-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.estrut-footer__nav-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--estrut-accent-soft);
  box-shadow: 0 0 10px color-mix(in srgb, var(--estrut-accent-soft) 45%, transparent);
  flex-shrink: 0;
}

.estrut-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.estrut-footer__link {
  display: inline-flex;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition:
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.estrut-footer__link:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.estrut-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition:
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.estrut-footer__contact:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.estrut-footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}

.estrut-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
}

.estrut-footer__copy {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.lang-switcher--estrut-footer .lang-switcher__btn {
  padding: 0.35rem 0.65rem;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
}

.lang-switcher--estrut-footer .lang-switcher__btn.is-active {
  border-color: var(--estrut-accent);
  color: var(--estrut-accent-soft);
  background: color-mix(in srgb, var(--estrut-accent) 12%, var(--bg-secondary));
}

.estrut-footer-mini {
  padding: var(--space-6) 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

@keyframes estrut-reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .estrut-pillars {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .estrut-hero__inner {
    grid-template-columns: 1fr;
  }

  .estrut-hero__visual {
    order: -1;
    max-width: min(100%, 320px);
    margin-inline: auto;
  }

  .estrut-hero__img {
    max-width: 100%;
  }

  .estrut-pillars {
    width: 100%;
  }

  .estruturacao-grid {
    padding: 1rem 0 1.5rem;
  }

  .estruturacao-card {
    --card-overlap: clamp(22px, 6vw, 36px);
  }

  .estrut-access__cards {
    grid-template-columns: 1fr;
  }

  .estrut-sales-panel__inner {
    padding: var(--space-6) var(--space-5);
  }

  .estrut-sales-panel__dual {
    grid-template-columns: 1fr;
  }

  .estrut-sales-list--pain,
  .estrut-sales-list--gain {
    grid-template-columns: 1fr;
  }

  .estrut-sales-implant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estrut-funnel__features {
    grid-template-columns: 1fr;
  }

  .estrut-funnel__feature-body {
    padding-left: 0;
  }

  .estrut-funnel__promise-outcomes {
    grid-template-columns: 1fr;
  }

  .estrut-funnel__inner--office {
    grid-template-columns: 1fr;
  }

  .estrut-funnel__office-copy {
    max-width: none;
    text-align: center;
  }

  .estrut-funnel__office-gallery {
    gap: var(--space-3);
  }

  .estrut-funnel__inner--cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .estrut-contact__title {
    padding-top: var(--space-4);
  }

  .estrut-funnel__cta-copy {
    text-align: center;
  }

  .estrut-funnel__subtitle {
    margin-inline: auto;
  }

  .estrut-sales-closing__intro {
    text-align: center;
  }

  .estrut-sales-closing__copy {
    grid-template-columns: 1fr;
    padding: var(--space-5);
    text-align: left;
  }

  .estrut-sales-closing__eyebrow {
    margin-inline: auto;
  }

  .estrut-sales-closing__lead {
    padding-left: var(--space-3);
    text-align: left;
  }

  .estrut-sales-closing__copy-content {
    grid-column: 1;
    grid-row: auto;
  }

  .estrut-sales-closing__visual {
    order: -1;
    align-self: auto;
    position: relative;
    width: 100%;
    max-width: min(100%, 260px);
    min-height: auto;
    margin-inline: auto;
    padding-top: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .estrut-sales-closing__credentials {
    grid-column: 1;
    grid-row: auto;
  }

  .estrut-sales-closing__frame {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
  }

  .estrut-sales-closing__img {
    max-width: 100%;
    margin-inline: auto;
  }

  .estrut-sales-closing__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 24rem;
  }

  .estrut-sales-closing__inner {
    padding-inline: var(--space-5);
  }
}

@media (max-width: 520px) {
  .estrut-sales-closing__pillars {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estrut-hero::before,
  .estrut-hero__copy,
  .estrut-hero__visual,
  .estrut-loading__bar {
    animation: none;
  }

  .estrut-hero__copy,
  .estrut-hero__visual {
    opacity: 1;
    transform: none;
  }

  .estrut-sales-panel.is-active {
    animation: none;
  }

  .estrut-sales-placeholder__icon {
    animation: none;
  }

  .estrut-sales-closing__pillar:hover,
  .estrut-sales-implant-grid li:hover,
  .estrut-funnel__feature:hover,
  .estrut-funnel__whatsapp:hover {
    transform: none;
  }
}
