/* ============================================================
   COPY & CODE — Página de Planos
   Estilos exclusivos para planos.html
   Reutiliza variáveis e utilitários de styles.css
   ============================================================ */

/* ============================================================
   HERO DOS PLANOS
   ============================================================ */
.plans-hero {
  position: relative;
  background: var(--bg);
  color: var(--white);
  padding: calc(var(--header-height) + 80px) 0 96px;
  overflow: hidden;
}

.plans-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 70%, transparent);
}

.plans-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.plans-hero__main,
.plans-hero__visual,
.plan-card,
.quiz,
.comparison__mobile,
.domain__content,
.domain__urls,
.hosting__content,
.hosting__list {
  min-width: 0;
}

.plans-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 24px;
}

.plans-hero__label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.plans-hero__title {
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.plans-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
}

.plans-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.plans-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.plans-hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.plans-hero__feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--disabled);
  flex-shrink: 0;
}

/* Bloco visual de código no hero */
.plans-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.plans-code-window {
  width: 100%;
  max-width: 380px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.plans-code-window__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.plans-code-window__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--disabled);
}

.plans-code-window__file {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--disabled);
}

.plans-code-window__body {
  padding: 20px 22px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 2;
  color: var(--text-2);
  overflow-x: auto;
}

.code-obj { color: var(--text-2); }
.code-key { color: var(--white); }
.code-colon { color: var(--disabled); margin: 0 4px; }
.code-str { color: var(--white); }
.code-bool { color: var(--white); }
.code-comment { color: var(--disabled); font-style: italic; }

.plans-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.plans-hero__stat {
  background: var(--bg-2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plans-hero__stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.plans-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--disabled);
}

/* ============================================================
   TOGGLE DE MODALIDADE
   ============================================================ */
.plans-toggle-section {
  background: var(--bg);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.plans-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 0;
  margin-bottom: 64px;
}

.plans-toggle__btn {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 11px 24px;
  border-radius: 100px;
  color: var(--text-2);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.plans-toggle__btn[aria-pressed="true"] {
  background: var(--white);
  color: var(--bg);
}

@media (prefers-reduced-motion: no-preference) {
  .plans-toggle__btn {
    transition: background-color var(--transition-fast), color var(--transition-fast);
  }
}

/* ============================================================
   CARDS DOS PLANOS
   ============================================================ */
.plan-cards-section {
  background: var(--bg);
  padding: 0 0 96px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.plan-card {
  background: var(--bg-2);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color var(--transition-fast);
}

.plan-card--featured {
  background: var(--bg);
}

.plan-card:hover {
  background: #0f0f0f;
}

.plan-card--featured:hover {
  background: #060606;
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 28px;
  width: fit-content;
}

.plan-card__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

.plan-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--disabled);
  margin-bottom: 10px;
}

.plan-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-card__public {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
  min-height: 3.3em;
}

.plan-card__price-block {
  margin-bottom: 28px;
}

.plan-card__price-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--disabled);
  margin-bottom: 8px;
}

.plan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
}

.plan-card__price {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white);
  line-height: 1;
  overflow-wrap: anywhere;
}

.plan-card__period {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
}

.plan-card__price-note {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 10px;
}

.plan-card__price-note small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--disabled);
}

/* Preços: sub e def alternam via toggle */
.plan-card__price-sub,
.plan-card__price-def {
  width: 100%;
}

.plan-card__price-sub.hidden,
.plan-card__price-def.hidden {
  display: none;
}

.plan-card__divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

.plan-card__feature-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--white);
}

.plan-card__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.plan-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--disabled);
  transition: color var(--transition-fast);
  text-align: center;
}

.plan-card__link:hover {
  color: var(--text-2);
}

/* ============================================================
   QUIZ — RECOMENDADOR DE PLANO
   ============================================================ */
.quiz-section {
  background: var(--bg-light);
}

.quiz {
  max-width: 680px;
  margin: 0 auto;
}

.quiz__progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.quiz__progress-step {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  border-radius: 2px;
  transition: background-color var(--transition);
}

.quiz__progress-step.done {
  background: var(--text-dark);
}

.quiz__step-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  margin-bottom: 20px;
}

.quiz__question-text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  width: 100%;
}

.quiz__option:hover {
  border-color: var(--text-dark-2);
  background: var(--bg-light);
}

.quiz__option.selected {
  border-color: var(--text-dark);
  background: var(--bg-light);
}

.quiz__option-key {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dark-2);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.quiz__option.selected .quiz__option-key {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--bg-light);
}

.quiz__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quiz__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

.quiz__btn--back {
  background: transparent;
  color: var(--text-dark-2);
  border-color: var(--border-light);
}

.quiz__btn--back:hover {
  border-color: var(--text-dark-2);
  color: var(--text-dark);
}

.quiz__btn--next {
  background: var(--text-dark);
  color: var(--bg-light);
  border-color: var(--text-dark);
  margin-left: auto;
}

.quiz__btn--next:hover {
  background: var(--text-dark-2);
  border-color: var(--text-dark-2);
}

.quiz__btn--next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Resultado do quiz */
.quiz__result {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.quiz__result.visible {
  display: flex;
}

.quiz__result-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  margin-bottom: 12px;
}

.quiz__result-plan {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.quiz__result-disclaimer {
  font-size: 0.85rem;
  color: var(--text-dark-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}

.quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.quiz__restart {
  font-size: 0.8rem;
  color: var(--text-dark-2);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: color var(--transition-fast);
}

.quiz__restart:hover {
  color: var(--text-dark);
}

/* Ocultar/mostrar steps */
.quiz__step {
  display: none;
}

.quiz__step.active {
  display: block;
}

/* ============================================================
   COMPARATIVO COMPLETO
   ============================================================ */
.comparison-section {
  background: var(--bg-light);
}

/* Scroll anchor offset */
.comparison-section::before {
  content: '';
  display: block;
  height: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  pointer-events: none;
}

/* Desktop: tabela completa */
.comparison__table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison__table thead tr {
  background: var(--bg-light-2);
  border-bottom: 1px solid var(--border-light);
}

.comparison__table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  white-space: nowrap;
}

.comparison__table th:first-child {
  width: 36%;
  color: var(--text-dark-2);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.comparison__table th.col--featured {
  background: var(--bg-light);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.comparison__table .cat-header td {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}

.comparison__table .cat-header td[colspan] {
  /* spans all cols */
}

.comparison__table tbody tr:not(.cat-header) {
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-fast);
}

.comparison__table tbody tr:not(.cat-header):hover {
  background: var(--bg-light-2);
}

.comparison__table td {
  padding: 16px 20px;
  vertical-align: middle;
  color: var(--text-dark-2);
}

.comparison__table td:first-child {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
}

.comparison__table td.col--featured {
  background: rgba(12, 12, 12, 0.02);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.comp-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--text-dark);
}

.comp-dash {
  display: inline-block;
  width: 18px;
  text-align: center;
  color: var(--border-light);
  font-size: 1.1rem;
  line-height: 1;
}

/* Mobile: acordeões por categoria */
.comparison__mobile {
  display: none;
}

.comp-cat {
  border-bottom: 1px solid var(--border-light);
}

.comp-cat:first-of-type {
  border-top: 1px solid var(--border-light);
}

.comp-cat__summary {
  padding: 22px 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.comp-cat__summary::-webkit-details-marker {
  display: none;
}

.comp-cat__summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--disabled);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  display: block;
}

.comp-cat[open] .comp-cat__summary::after {
  transform: rotate(45deg);
}

.comp-cat__body {
  padding: 0 0 20px;
}

.comp-mobile-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
  margin-bottom: 1px;
}

.comp-mobile-head__col {
  background: var(--bg-light-2);
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.comp-mobile-head__col.col--featured {
  background: var(--bg-light);
}

.comp-mobile-rows {
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  overflow: hidden;
}

.comp-mobile-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
}

.comp-mobile-row:last-child {
  border-bottom: none;
}

.comp-mobile-row__label {
  grid-column: 1 / -1;
  padding: 10px 12px 0;
  font-size: 0.78rem;
  color: var(--text-dark-2);
  font-weight: 500;
  background: var(--bg-light-2);
  border-bottom: 1px solid var(--border-light);
}

.comp-mobile-row__vals {
  display: contents;
}

.comp-mobile-row__val {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--text-dark-2);
  text-align: center;
  background: var(--bg-light-2);
}

.comp-mobile-row__val.col--featured {
  background: var(--bg-light);
}

.comp-mobile-row {
  display: block;
}

.comp-mobile-row__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
}

.comp-mobile-row-simple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.comp-mobile-row-simple:last-child {
  border-bottom: none;
}

.comp-mobile-row-simple > div {
  padding: 12px 10px;
  font-size: 0.8rem;
  background: var(--bg-light-2);
}

.comp-mobile-row-simple > div:first-child {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.78rem;
}

.comp-mobile-row-simple > div:not(:first-child) {
  color: var(--text-dark-2);
  text-align: center;
  border-left: 1px solid var(--border-light);
}

.comp-mobile-row-simple > div.col--featured {
  background: var(--bg-light);
}

/* ============================================================
   ASSINATURA VS COMPRA DEFINITIVA
   ============================================================ */
.modality-section {
  background: var(--bg);
  color: var(--white);
}

.modality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modality__block {
  background: var(--bg-2);
  padding: 48px 40px;
}

.modality__block-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--disabled);
  margin-bottom: 16px;
}

.modality__block-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.modality__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modality__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}

.modality__item-mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--white);
}

/* ============================================================
   DOMÍNIO INCLUÍDO
   ============================================================ */
.domain-section {
  background: var(--bg-light);
}

.domain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.domain__text {
  font-size: 1rem;
  color: var(--text-dark-2);
  line-height: 1.75;
  margin-bottom: 18px;
}

.domain__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dark-2);
  line-height: 1.65;
  padding: 16px 18px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.domain__note-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--text-dark-2);
}

.domain__urls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.domain-url {
  display: flex;
  align-items: center;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.domain-url__protocol {
  padding: 14px 16px;
  background: var(--bg-light);
  border-right: 1px solid var(--border-light);
  color: var(--text-dark-2);
  font-size: 0.75rem;
  white-space: nowrap;
}

.domain-url__name {
  padding: 14px 16px;
  color: var(--text-dark);
  flex: 1;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow-wrap: anywhere;
}

.domain-url__ext {
  color: var(--text-dark-2);
}

/* ============================================================
   HOSPEDAGEM GERENCIADA
   ============================================================ */
.hosting-section {
  background: var(--bg);
  color: var(--white);
}

.hosting__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.hosting__subtitle {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hosting__note {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-style: italic;
  margin-top: 20px;
}

.hosting__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hosting__item {
  background: var(--bg-2);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hosting__item-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--white);
}

.hosting__item-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ============================================================
   INFORMAÇÕES IMPORTANTES
   ============================================================ */
.info-section {
  background: var(--bg-light);
}

.info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.info__item-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--disabled);
  padding-top: 2px;
  min-width: 28px;
}

.info__item-text {
  font-size: 0.9rem;
  color: var(--text-dark-2);
  line-height: 1.65;
}

/* ============================================================
   FAQ DOS PLANOS
   ============================================================ */
.plans-faq-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.plans-faq__list {
  max-width: 760px;
}

/* Reutiliza .faq-item de styles.css */

/* ============================================================
   CTA FINAL DOS PLANOS
   ============================================================ */
.plans-cta {
  background: var(--bg-light-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 120px 0;
}

.plans-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.plans-cta__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.plans-cta__text {
  font-size: 1.05rem;
  color: var(--text-dark-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.plans-cta__trust {
  font-size: 0.85rem;
  color: var(--text-dark-2);
  margin-bottom: 40px;
  font-style: italic;
}

.plans-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   HEADER — ESTADO ATIVO PARA PÁGINA PLANOS
   ============================================================ */
.header__link--active-plans {
  color: var(--white) !important;
}

.header__link--active-plans::after {
  width: 100% !important;
}

.header--light .header__link--active-plans {
  color: var(--text-dark) !important;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .plans-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .plans-hero__visual {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .plans-code-window {
    max-width: 360px;
  }

  .plans-hero__stats {
    max-width: 360px;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    border-radius: 0;
    gap: 16px;
  }

  .plan-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .plan-card__public {
    min-height: auto;
  }

  .comparison__table {
    min-width: 580px;
  }

  .domain__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hosting__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .plan-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .plans-hero {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 72px;
  }

  .plans-hero__inner {
    gap: 40px;
  }

  .plans-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.12;
  }

  .plans-hero__subtitle {
    max-width: 100%;
    margin-bottom: 34px;
    font-size: 1rem;
  }

  .plans-hero__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans-hero__visual {
    flex-direction: column;
  }

  .plans-code-window,
  .plans-hero__stats {
    max-width: 100%;
  }

  .plans-code-window__body {
    font-size: 0.74rem;
    line-height: 1.85;
  }

  .plans-toggle-section {
    padding-top: 48px;
  }

  .plans-toggle {
    margin-bottom: 40px;
  }

  .plans-toggle__btn {
    font-size: 0.82rem;
    padding: 10px 18px;
  }

  .plan-cards-section {
    padding-bottom: 72px;
  }

  .comparison__table-wrapper {
    display: none;
  }

  .comparison__mobile {
    display: block;
  }

  .comp-mobile-head__col,
  .comp-mobile-row-simple > div,
  .comp-mobile-row__val {
    overflow-wrap: anywhere;
  }

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

  .modality__block {
    padding: 36px 24px;
  }

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

  .plans-cta {
    padding: 80px 0;
  }

  .quiz__result {
    padding: 36px 24px;
  }

  .info__item {
    gap: 12px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .plans-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .plans-hero {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
  }

  .plans-hero__title {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .plans-hero__actions .btn,
  .plans-cta__actions .btn {
    width: 100%;
  }

  .plan-card {
    padding: 30px 20px;
  }

  .plan-card__name {
    font-size: 1.35rem;
  }

  .plan-card__price {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .plans-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz__option {
    padding: 15px 16px;
    gap: 12px;
  }

  .quiz__nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .quiz__btn {
    justify-content: center;
  }

  .quiz__btn--next {
    width: 100%;
    justify-content: center;
  }

  .quiz__btn--back {
    flex: 1;
  }

  .domain-url__name {
    font-size: 0.78rem;
    padding: 12px 10px;
  }

  .domain-url__protocol {
    padding: 12px 10px;
  }

  .comp-mobile-head__col {
    padding: 9px 6px;
    font-size: 0.68rem;
  }

  .comp-mobile-row-simple {
    grid-template-columns: minmax(86px, 1.05fr) repeat(3, minmax(0, 1fr));
  }

  .comp-mobile-row-simple > div {
    padding: 10px 6px;
    font-size: 0.72rem;
  }

  .modality__block {
    padding: 32px 20px;
  }

  .domain__note,
  .info__item {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .plans-toggle {
    width: 100%;
  }

  .plans-toggle__btn {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    padding: 10px 12px;
    white-space: normal;
  }

  .plans-hero__stats {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 28px 18px;
  }

  .plans-code-window__body {
    padding: 18px;
    font-size: 0.68rem;
  }

  .comp-mobile-row-simple {
    grid-template-columns: minmax(74px, 0.95fr) repeat(3, minmax(0, 1fr));
  }

  .comp-mobile-row-simple > div {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plans-toggle__btn,
  .plan-card,
  .quiz__option,
  .quiz__progress-step {
    transition-duration: 0.01ms !important;
  }
}
