.page-domains {
  --domains-glow-1: rgba(109, 74, 255, 0.16);
  --domains-glow-2: rgba(79, 47, 215, 0.07);
  --domains-glow-3: rgba(150, 118, 255, 0.09);
  --domains-content-max: 76rem;
  --domains-pad-x: clamp(1rem, 3vw, 2rem);
}

.domains-shell {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding-top: calc(4.25rem + env(safe-area-inset-top, 0px));
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

/* —— Hero registrar domínio —— */
.domains-hero {
  position: relative;
  width: 100%;
  max-width: var(--domains-content-max);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem) var(--domains-pad-x) clamp(1.5rem, 4vw, 2.5rem);
}

.domains-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: -4% -8% auto;
  height: clamp(20rem, 52vw, 32rem);
  background:
    radial-gradient(ellipse 52% 55% at 16% 32%, var(--domains-glow-1), transparent 58%),
    radial-gradient(ellipse 44% 48% at 86% 22%, var(--domains-glow-3), transparent 54%),
    radial-gradient(ellipse 36% 42% at 68% 68%, var(--domains-glow-2), transparent 50%);
}

.domains-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 56rem) {
  .domains-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.domains-hero__copy {
  text-align: center;
}

@media (min-width: 56rem) {
  .domains-hero__copy {
    text-align: left;
  }
}

.domains-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(0.52rem, 1.4vw, 0.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(
    135deg,
    rgba(109, 74, 255, 0.12),
    rgba(79, 47, 215, 0.06) 50%,
    rgba(150, 118, 255, 0.05)
  );
  box-shadow:
    0 0 0 1px rgba(20, 21, 26, 0.05),
    0 12px 36px rgba(20, 21, 26, 0.10);
}

.domains-hero__badge-dot {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.domains-hero__badge-sep {
  opacity: 0.45;
  font-weight: 400;
}

.domains-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0.02em;
}

.domains-hero__title-line {
  display: block;
}

.domains-hero__title-line--plain {
  color: var(--text);
}

.domains-hero__title-line--gradient {
  background: linear-gradient(115deg, #8b6cff 0%, var(--accent) 50%, #4f2fd7 100%);
  background-size: 140% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: domains-title-shift 11s ease infinite;
}

@keyframes domains-title-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .domains-hero__title-line--gradient {
    animation: none;
  }
}

.domains-hero__lead {
  margin: 0 auto 1.6rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2.1vw, 1.08rem);
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 400;
}

@media (min-width: 56rem) {
  .domains-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }
}

.domains-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 30rem) {
  .domains-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 56rem) {
  .domains-hero__actions {
    justify-content: flex-start;
  }
}

.domains-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.domains-hero__btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.domains-hero__btn--primary {
  color: #ffffff;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  box-shadow: var(--shadow-btn);
}

.domains-hero__btn--primary:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 75%, transparent);
  box-shadow:
    0 6px 16px rgba(20, 21, 26, 0.14);
}

.domains-hero__btn--wa {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.domains-hero__btn--wa:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 74, 255, 0.45);
  box-shadow: 0 10px 28px rgba(109, 74, 255, 0.1);
}

.domains-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 56rem) {
  .domains-hero__chips {
    justify-content: flex-start;
  }
}

.domains-hero__chip {
  padding: 0.4rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 999px;
  border: 1px solid rgba(10, 12, 20, 0.10);
  background: rgba(255, 255, 255, 0.6);
}

.domains-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(14rem, 36vw, 20rem);
}

.domains-hero__art-wrap {
  position: relative;
  width: 100%;
  max-width: 26rem;
}

.domains-hero__float-tag {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-radius: 8px;
  border: 1px solid rgba(109, 74, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(20, 21, 26, 0.12);
}

.domains-hero__float-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #8b6cff;
  box-shadow: 0 0 10px #8b6cff;
}

.domains-hero__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 44px rgba(20, 21, 26, 0.18));
}

/* Widget */
.domains-widget {
  width: 100%;
  max-width: var(--domains-content-max);
  margin: 0 auto;
  padding: 0 var(--domains-pad-x) 2rem;
  scroll-margin-top: calc(5rem + env(safe-area-inset-top, 0px));
}

.domains-widget__panel {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(20, 21, 26, 0.12);
  min-height: 12rem;
}

.domains-widget__panel upm-dac {
  display: block;
  width: 100%;
}

.domains-widget__note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.domains-widget__note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.domains-widget__note a:hover {
  text-decoration: underline;
}
/* ============================================================
   HERO DE DOMÍNIOS — Parte 1: bloco escuro + título + busca
   ============================================================ */
.page-domains { background: #15122e; }

.dom-hero {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(ellipse 55% 60% at 50% -10%, rgba(109, 74, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 8%, rgba(139, 108, 255, 0.10), transparent 55%),
    #15122e;
  padding: calc(var(--h-h, 4rem) + clamp(2.5rem, 7vw, 5rem)) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5.5rem);
  text-align: center;
}
.dom-hero__inner { max-width: 1140px; margin: 0 auto; }

.dom-hero__title {
  font-family: var(--font-display, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
}

.dom-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.45rem 0.45rem 1.25rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.40);
}
.dom-search__icon { display: flex; color: #8a8f99; flex-shrink: 0; }
.dom-search__input {
  flex: 1 1 auto; min-width: 0;
  border: none; outline: none; background: transparent;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 1.05rem; color: #14151a;
  padding: 0.6rem 0.4rem;
}
.dom-search__input::placeholder { color: #9094a0; }
.dom-search__go {
  flex-shrink: 0;
  width: 2.85rem; height: 2.85rem;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  transition: filter 0.18s ease, transform 0.18s ease;
}
.dom-search__go:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 30rem) {
  .dom-search { border-radius: 18px; gap: 0.3rem; padding-left: 1rem; }
  .dom-search__go { width: 2.6rem; height: 2.6rem; }
}

/* ============================================================
   POR QUE REGISTRAR — Parte 2: bento de benefícios (claro)
   ============================================================ */
.dom-why {
  position: relative;
  z-index: 5;
  background: #f6f5fb;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}
.dom-why__inner { max-width: 1100px; margin: 0 auto; }
.dom-why__title {
  font-family: var(--font-display, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-align: center;
  color: #222225;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.dom-why__title em { font-style: normal; color: inherit; }

.dom-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 48rem) { .dom-why__grid { grid-template-columns: 1fr; } }

/* card */
.dwc {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(109, 74, 255, 0.14);
  background: linear-gradient(180deg, #efebfe, #f4f1ff);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.dwc:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 74, 255, 0.3);
  box-shadow: 0 18px 44px rgba(79, 47, 215, 0.12);
}
.dwc__media {
  position: relative;
  min-height: 168px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dwc__body { padding: 0 1.5rem 1.6rem; }
.dwc__title {
  font-family: var(--font-display, "DM Sans", sans-serif);
  font-weight: 400; font-size: 1.18rem; color: #14151a; margin: 0 0 0.5rem;
}
.dwc__text { font-size: 0.92rem; line-height: 1.55; color: #5b5d66; margin: 0; }
.dwc__link {
  display: inline-block; margin-top: 0.85rem;
  font-weight: 600; font-size: 0.9rem; color: #6d4aff; text-decoration: none;
}
.dwc__link:hover { text-decoration: underline; }

/* mockup base */
.mk-cursor { position: absolute; filter: drop-shadow(0 3px 6px rgba(20,21,26,.2)); }

/* A — URL no navegador */
.mk-url {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; border-radius: 999px; padding: 0.7rem 1.1rem;
  box-shadow: 0 10px 26px rgba(79, 47, 215, 0.12); max-width: 100%;
}
.mk-url__globe {
  display: flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; flex-shrink: 0; border-radius: 50%;
  color: #6d4aff; background: rgba(109, 74, 255, 0.12);
}
.mk-url__txt { font-size: 0.95rem; color: #3b3d47; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dwc .mk-cursor { right: 22%; bottom: 18%; }

/* B — linhas de configuração (privacidade) */
.mk-rows { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; max-width: 290px; }
.mk-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: #fff; border-radius: 12px; padding: 0.7rem 0.9rem;
  box-shadow: 0 8px 22px rgba(79, 47, 215, 0.10);
}
.mk-row__label { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.88rem; font-weight: 500; color: #14151a; }
.mk-lock { color: #6d4aff; display: flex; }
.mk-toggle {
  width: 2.5rem; height: 1.4rem; border-radius: 999px; background: #d4cdf2; position: relative; flex-shrink: 0; transition: background .2s;
}
.mk-toggle.is-on { background: #6d4aff; }
.mk-toggle__dot {
  position: absolute; top: 0.18rem; left: 0.2rem; width: 1.04rem; height: 1.04rem;
  border-radius: 50%; background: #fff; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.mk-toggle.is-on .mk-toggle__dot { transform: translateX(1.1rem); }
.mk-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: .02em; color: #15a05a;
  background: rgba(22, 160, 90, 0.12); border: 1px solid rgba(22, 160, 90, 0.28);
  padding: 0.25rem 0.55rem; border-radius: 999px;
}

/* C — chat de suporte */
.mk-chat { display: flex; align-items: flex-end; gap: 0.6rem; max-width: 320px; }
.mk-chat__avatar {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 2.2rem; height: 2.2rem; border-radius: 50%; color: #fff;
  background: linear-gradient(135deg, #8b6cff, #4f2fd7);
}
.mk-chat__bubble {
  background: #fff; border-radius: 16px 16px 16px 4px; padding: 0.7rem 0.95rem;
  font-size: 0.9rem; line-height: 1.4; color: #14151a;
  box-shadow: 0 8px 22px rgba(79, 47, 215, 0.10);
}

/* D — passos */
.mk-steps { position: relative; display: flex; flex-direction: column; gap: 0.55rem; background: #fff; border-radius: 14px; padding: 1rem 1.2rem; box-shadow: 0 10px 26px rgba(79, 47, 215, 0.12); min-width: 200px; }
.mk-step { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; color: #9094a0; }
.mk-step.is-done { color: #14151a; }
.mk-step__dot {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 1.3rem; height: 1.3rem; border-radius: 50%; font-size: 0.72rem; color: #fff;
  background: #d4cdf2;
}
.mk-step.is-done .mk-step__dot { background: #6d4aff; }
.mk-cursor--steps { right: 12%; bottom: 14%; }

/* CTA */
.dom-why__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.dom-why__btn {
  display: inline-block; padding: 0.9rem 2rem;
  font-family: var(--font-body, "DM Sans", sans-serif); font-weight: 700; font-size: 1rem;
  color: #fff; text-decoration: none; border-radius: 12px;
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  box-shadow: 0 8px 24px rgba(79, 47, 215, 0.28);
  transition: filter .18s ease, transform .18s ease;
}
.dom-why__btn:hover { filter: brightness(1.07); transform: translateY(-2px); }

/* ============================================================
   ESSENCIAL SOBRE DOMÍNIOS — Parte 3: seção escura + 3 cards
   ============================================================ */
.dom-learn {
  position: relative;
  z-index: 5;
  background: #15122e;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}
.dom-learn__inner { max-width: 1100px; margin: 0 auto; }
.dom-learn__title {
  font-family: var(--font-display, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-align: center;
  color: #fff;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.dom-learn__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 56rem) { .dom-learn__grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }

.dlc {
  display: flex; flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(139, 108, 255, 0.16);
  background: #1b1740;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.dlc:hover { transform: translateY(-3px); border-color: rgba(139, 108, 255, 0.34); }
.dlc__media {
  position: relative;
  min-height: 180px;
  margin: 0.5rem 0.5rem 0;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.4rem;
  overflow: hidden;
}
.dlc__media--list   { background: #211c4d; }
.dlc__media--violet { background: radial-gradient(circle at 60% 40%, #6d4aff, #4f2fd7 70%); }
.dlc__media--light  { background: #e9e6fb; }
.dlc__body { padding: 1.25rem 1.5rem 1.6rem; }
.dlc__title { font-family: var(--font-display, "DM Sans", sans-serif); font-weight: 400; font-size: 1.18rem; color: #fff; margin: 0 0 0.5rem; }
.dlc__text { font-size: 0.92rem; line-height: 1.55; color: #b8b4d8; margin: 0; }
.dlc__link { display: inline-block; margin-top: 0.85rem; font-weight: 600; font-size: 0.9rem; color: #a78bff; text-decoration: none; }
.dlc__link:hover { text-decoration: underline; }

.mk-cursor--light { filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); }

/* A — lista de domínios */
.mk-dlist { position: relative; display: flex; flex-direction: column; gap: 0.55rem; align-items: stretch; width: 100%; max-width: 240px; }
.mk-dlist__row { font-size: 0.85rem; color: rgba(200, 195, 235, 0.45); text-align: center; white-space: nowrap; }
.mk-dlist__row.is-active {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: #14151a; font-weight: 500;
  border-radius: 999px; padding: 0.6rem 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.mk-dlist__row.is-active b { color: #6d4aff; font-weight: 600; }
.mk-dlist__globe { display: flex; color: #6d4aff; }
.mk-dlist .mk-cursor { right: 8%; bottom: 24%; }

/* B — transferir */
.mk-transfer { position: relative; display: inline-flex; align-items: center; }
.mk-transfer__pill {
  background: #fff; color: #14151a; font-weight: 500; font-size: 1rem;
  padding: 0.85rem 3rem 0.85rem 1.2rem; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.mk-transfer__btn {
  position: relative; margin-left: -2.6rem;
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; color: #fff;
  background: linear-gradient(135deg, #8b6cff, #4f2fd7);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.mk-transfer .mk-cursor--transfer { right: -6%; bottom: -10%; }

/* C — extensões + R$0 */
.mk-tlds { display: flex; align-items: center; gap: 0.9rem; }
.mk-tlds__list {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: #fff; border-radius: 14px; padding: 0.9rem 1rem;
  box-shadow: 0 10px 26px rgba(79,47,215,.18);
}
.mk-tlds__list span { font-size: 0.95rem; font-weight: 500; color: #9094a0; text-align: center; padding: 0.15rem 0.4rem; border-radius: 8px; }
.mk-tlds__list span.is-active { color: #fff; background: linear-gradient(135deg, #8b6cff, #6d4aff); }
.mk-tlds__price {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display, "DM Sans", sans-serif); font-weight: 600; font-size: 1.15rem; color: #fff;
  width: 3.2rem; height: 3.2rem; border-radius: 14px;
  background: linear-gradient(135deg, #8b6cff, #4f2fd7);
  box-shadow: 0 8px 20px rgba(79,47,215,.3);
}

/* ============================================================
   COMO ESCOLHER O NOME — Parte 4: acordeão (claro)
   ============================================================ */
.dom-tips {
  position: relative;
  z-index: 5;
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}
.dom-tips__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 56rem) { .dom-tips__inner { grid-template-columns: 1fr; gap: 1.5rem; } }

.dom-tips__title {
  font-family: var(--font-display, "DM Sans", sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #222225;
  margin: 0;
}

.dom-tips__list { display: flex; flex-direction: column; }
.tip { border-bottom: 1px solid rgba(10, 12, 20, 0.10); }
.tip:first-child { border-top: 1px solid rgba(10, 12, 20, 0.10); }
.tip__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0.25rem;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-weight: 400; font-size: 1.02rem; color: #14151a;
  transition: color 0.18s ease;
}
.tip__q::-webkit-details-marker { display: none; }
.tip:hover .tip__q,
.tip[open] .tip__q { color: #6d4aff; }

.tip__ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.tip__ico::before, .tip__ico::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.tip__ico::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.tip__ico::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.tip[open] .tip__ico::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.tip__a { padding: 0 0.25rem 1.25rem; }
.tip__a p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #5b5d66; max-width: 46rem; }
.tip__btn {
  display: inline-block; margin-top: 1rem;
  padding: 0.7rem 1.6rem; border-radius: 10px;
  font-family: var(--font-body, "DM Sans", sans-serif); font-weight: 700; font-size: 0.95rem;
  color: #fff; text-decoration: none;
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  box-shadow: 0 6px 18px rgba(79, 47, 215, 0.25);
  transition: filter 0.18s ease, transform 0.18s ease;
}
.tip__btn:hover { filter: brightness(1.07); transform: translateY(-1px); }

/* ===========================================================
   BUSCA FIXA — aparece ao rolar (estilo Hostinger)
   =========================================================== */
.dom-sticky {
  position: fixed;
  top: 3.95rem;            /* altura da navbar */
  left: 0; right: 0;
  z-index: 990;
  display: flex;
  justify-content: center;
  padding: 0.55rem clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(10, 12, 20, 0.08);
  box-shadow: 0 10px 26px rgba(20, 21, 26, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.26s ease, visibility 0.32s;
}
.dom-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dom-sticky__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 600px;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 12, 20, 0.14);
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 21, 26, 0.05);
}
.dom-sticky__icon { display: flex; color: #9094a0; flex-shrink: 0; }
.dom-sticky__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: "DM Sans", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #222225;
}
.dom-sticky__input::placeholder { color: #9094a0; }
.dom-sticky__go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.dom-sticky__go:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .dom-sticky { transition: opacity 0.2s ease, visibility 0.2s; }
}

/* ===========================================================
   TLDs abaixo da busca (hero de domínios)
   =========================================================== */
.dom-hero__tlds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.dom-tld {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.85rem;
  font-family: "DM Sans", Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d7d2f0;
  border-radius: 999px;
  border: 1px solid rgba(160, 130, 255, 0.22);
  background: rgba(123, 92, 240, 0.10);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.dom-tld:hover {
  color: #fff;
  border-color: rgba(160, 130, 255, 0.5);
  background: rgba(123, 92, 240, 0.20);
  transform: translateY(-1px);
}
.dom-tld--brand {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #8b6cff, #6d4aff 60%, #4f2fd7);
  box-shadow: 0 6px 16px rgba(109, 74, 255, 0.35);
}
.dom-tld--more {
  color: #b7b2d6;
  border-style: dashed;
  background: transparent;
  font-weight: 500;
}
