:root {
  --brand-blue-start: #76d6ff;
  --brand-blue-end: #22bdff;
  --brand-gradient-h: linear-gradient(90deg, var(--brand-blue-start) 0%, var(--brand-blue-end) 100%);
  --brand-gradient-d: linear-gradient(135deg, var(--brand-blue-start) 0%, var(--brand-blue-end) 100%);
  --text-brand: #002d66;
  --btn-brand: #004aad;
  --btn-brand-hover: #003d91;
  --text-on-gradient: #004aad;
  --service-hero-bg:
    radial-gradient(circle at top right, rgba(118, 214, 255, 0.1), transparent 38%),
    radial-gradient(circle at bottom left, rgba(34, 189, 255, 0.05), transparent 34%),
    linear-gradient(90deg, rgba(118, 214, 255, 0.12) 0%, rgba(34, 189, 255, 0.06) 100%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 84%);
  --blue-950: #045a7a;
  --blue-900: #066d92;
  --blue-800: #0884ad;
  --blue-700: #1299c4;
  --blue-600: #22bdff;
  --blue-500: #22bdff;
  --blue-400: #76d6ff;
  --blue-100: #e8f7ff;
  --blue-50: #f3fcff;
  --white: #ffffff;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --shadow-sm: 0 8px 24px rgba(34, 189, 255, 0.1);
  --shadow-md: 0 18px 50px rgba(34, 189, 255, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1120px;
  --header-height: 78px;

  /* Typography scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 2.5vw, 1.875rem);
  --text-3xl: clamp(1.625rem, 2.8vw, 2rem);
  --text-hero: clamp(2rem, 4vw, 2.75rem);
  --text-price: clamp(1.75rem, 3vw, 2.25rem);
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.65;

  /* Typography families */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-brand);
  background: var(--white);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  max-width: 100%;
}

:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .logo,
  .eyebrow,
  .how-tabs__title,
  .mei-hero__title,
  .service-flow__title,
  .visitor-lead-modal__title,
  .visitor-lead-modal__success-title,
  .lp-plan-basic-modal__title,
  .blog-topic-index__title,
  .blog-header__brand strong
) {
  font-family: var(--font-display);
  font-weight: 700;
}

img:not(.whatsapp-fab__icon),
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.section--muted {
  background: linear-gradient(180deg, var(--blue-50) 0%, #eef9ff 50%, #fbfdff 100%);
}

.section__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__header--left {
  margin: 0 0 2.5rem;
  text-align: left;
}

.section__header h2,
.hero h1,
.pricing__intro h2,
.about h2,
.contact h2,
.cta-banner h2 {
  margin: 0 0 1rem;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
}

.section__header h2,
.pricing__intro h2,
.about h2,
.contact h2,
.cta-banner h2 {
  font-size: var(--text-2xl);
}

.section__header p,
.pricing__intro p,
.about p,
.contact p,
.cta-banner p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background: var(--btn-brand);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.28);
}

.btn--primary:hover {
  background: var(--btn-brand-hover);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.34);
}

.btn--secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: rgba(34, 189, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-800);
}

.btn--light {
  background: var(--white);
  color: var(--blue-800);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--lg {
  min-height: 52px;
  padding-inline: 1.5rem;
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: var(--text-sm);
}

.btn--block {
  width: 100%;
}

.topbar {
  background: var(--brand-gradient-h);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-sm);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.topbar p {
  margin: 0;
}

.topbar__link {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.topbar__link:hover {
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 189, 255, 0.08);
  box-shadow: 0 10px 30px rgba(34, 189, 255, 0.04);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  grid-column: 1;
  grid-row: 1;
}

.nav {
  grid-column: 2 / 4;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
  margin: 0 0 0 10rem;
  padding: 0;
  list-style: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: none;
  flex-shrink: 0;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-brand);
}

.logo__mark {
  flex-shrink: 0;
  width: 3.75rem;
}

.logo__mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-brand);
  letter-spacing: -0.01em;
}

.logo__text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(34, 189, 255, 0.14);
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--text-brand);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__list a,
.nav__dropdown-trigger {
  color: var(--text-brand);
  font-size: var(--text-base);
  font-weight: 500;
}

.nav__list a:hover,
.nav__dropdown-trigger:hover {
  color: var(--text-brand);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__dropdown-icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav__dropdown.is-open .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  border: 1px solid rgba(34, 189, 255, 0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 821px) {
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu,
  .nav__dropdown.is-open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
}

.nav__dropdown-menu a:hover {
  background: var(--blue-50);
}

.nav__dropdown-menu--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 0.35rem 1rem;
  min-width: min(520px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
}

.nav__dropdown-col {
  min-width: 0;
}

.nav__dropdown-col__title {
  margin: 0 0 0.35rem;
  padding: 0.35rem 0.85rem 0.45rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__dropdown-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__dropdown-menu--materials {
  grid-template-columns: max-content max-content;
  gap: 0.35rem 0.75rem;
  width: max-content;
  min-width: 0;
  max-width: calc(100vw - 2rem);
  padding: 0.65rem 0.75rem;
}

.nav__dropdown-menu--materials .nav__dropdown-col__title {
  margin: 0 0 0.2rem;
  padding: 0.1rem 0.55rem 0.2rem;
  color: #1f3b57;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav__dropdown-menu--materials a {
  padding: 0.5rem 0.55rem;
  color: #1f3b57;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__dropdown-menu--materials a:hover,
.nav__dropdown-menu--materials a:focus-visible {
  background: var(--blue-100);
  color: var(--blue-950);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(34, 189, 255, 0.22), transparent 35%),
    radial-gradient(circle at bottom left, rgba(118, 214, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #eef9ff 0%, #ffffff 78%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.2), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.08), transparent 28%),
    linear-gradient(120deg, rgba(34, 189, 255, 0.05) 0 48%, transparent 48% 100%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 20em;
  margin: 0 0 1.25rem;
  font-size: var(--text-hero);
  color: var(--text-brand);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-100), rgba(118, 214, 255, 0.22));
  border: 1px solid rgba(34, 189, 255, 0.14);
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 600;
}

.hero__badge svg {
  flex-shrink: 0;
  color: var(--text-brand);
  fill: currentColor;
  stroke: none;
}

.services-quick {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-bottom: 1rem;
}

.services-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 981px) {
  .services-quick > .container {
    overflow: visible;
  }

  .services-quick__grid {
    transform: translateX(-4.5rem);
  }
}

.services-quick__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow: 0 14px 36px rgba(34, 189, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-quick__card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 189, 255, 0.28);
  box-shadow: 0 20px 44px rgba(34, 189, 255, 0.16);
}

.services-quick__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: var(--brand-gradient-d);
  color: var(--white);
}

.services-quick__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-quick__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.services-quick__text strong {
  color: var(--text-brand);
  font-size: var(--text-lg);
  font-weight: 700;
}

.services-quick__text span:last-child {
  color: var(--text-brand);
  font-size: var(--text-sm);
}

.services-quick__arrow {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.services-quick__card:hover .services-quick__arrow {
  transform: translateX(3px);
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.hero-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.hero-checklist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
}

.hero-checklist__icon svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.hero .hero__actions .btn--primary {
  background: var(--btn-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.28);
}

.hero .hero__actions .btn--primary:hover {
  background: var(--btn-brand-hover);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.34);
}

.hero__note {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-sm);
}

.hero__media {
  position: absolute;
  top: 50%;
  right: clamp(0.5rem, 3vw, 2rem);
  z-index: 1;
  margin: 0;
  line-height: 0;
  transform: translateY(-50%);
  pointer-events: none;
  width: clamp(280px, 36vw, 520px);
  max-width: 520px;
  aspect-ratio: 1;
}

.hero__media-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.hero__media-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blob-core, #2ef0f8);
}

.hero__media-blob::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--blob-halo-size, 3.25rem);
  height: var(--blob-halo-size, 3.25rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blob-halo, rgba(46, 240, 248, 0.16));
  z-index: -1;
}

.hero__media-blob--cyan {
  top: 8%;
  right: -4%;
  width: 1rem;
  height: 1rem;
  --blob-halo-size: 3.4rem;
  --blob-halo: rgba(46, 240, 248, 0.18);
}

.hero__media-blob--blue {
  bottom: 4%;
  left: -8%;
  width: 1.15rem;
  height: 1.15rem;
  --blob-core: #76d6ff;
  --blob-halo-size: 4.5rem;
  --blob-halo: rgba(118, 214, 255, 0.2);
}

.hero__media-blob--soft {
  top: 42%;
  right: -18%;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(46, 240, 248, 0.14);
  transform: translateY(-50%);
}

.hero__media-blob--soft::before {
  width: 8.5rem;
  height: 8.5rem;
  background: rgba(46, 240, 248, 0.08);
}

.hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow:
    0 0 0 4px rgba(34, 189, 255, 0.14),
    0 24px 56px rgba(34, 189, 255, 0.18);
}

@media (min-width: 981px) {
  .hero__content {
    max-width: min(36rem, 52%);
    padding-right: 1rem;
  }
}

.features-carousel {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.5rem;
}

.features-carousel__btn {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin-top: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(34, 189, 255, 0.14);
  background: var(--white);
  color: var(--blue-800);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.features-carousel__btn:hover:not(:disabled) {
  background: var(--blue-50);
  color: var(--blue-600);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.features-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.features-carousel__btn:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.features-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: hidden;
  padding: 0.75rem 1.5rem 2.75rem;
}

#diferenciais .container {
  overflow: visible;
}

.features-carousel--cards-only {
  display: flex;
  align-items: center;
  width: calc(100% + clamp(3rem, 8vw, 7rem));
  max-width: none;
  margin-inline: calc(clamp(3rem, 8vw, 7rem) / -2);
  margin-top: 0.5rem;
  gap: 0.65rem;
}

.features-carousel--cards-only .features-carousel__viewport {
  flex: 1;
  min-width: 0;
  max-width: none;
  margin-inline: 0;
  padding: 0.75rem clamp(1.25rem, 3vw, 2rem) 3rem;
}

.features-carousel--cards-only .features-carousel__btn {
  flex-shrink: 0;
}

.features-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  will-change: transform;
}

.features-carousel .feature-card {
  flex-shrink: 0;
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(180deg, var(--white) 0%, rgba(238, 244, 255, 0.72) 100%);
  border: 1px solid rgba(34, 189, 255, 0.08);
  box-shadow:
    0 1px 2px rgba(34, 189, 255, 0.05),
    0 10px 28px rgba(34, 189, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.features-carousel .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--brand-gradient-h);
  opacity: 0.9;
}

.features-carousel .feature-card::after {
  content: "";
  position: absolute;
  inset: -35% -20% auto;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(34, 189, 255, 0.1), transparent 68%);
  pointer-events: none;
}

.features-carousel .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 189, 255, 0.2);
  box-shadow:
    0 4px 10px rgba(34, 189, 255, 0.06),
    0 22px 48px rgba(34, 189, 255, 0.14);
}

.features-carousel .feature-card__icon {
  position: relative;
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  background: var(--brand-gradient-d);
  box-shadow:
    0 10px 24px rgba(34, 189, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.features-carousel .feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}

.features-carousel .feature-card p {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.feature-card,
.service-card,
.about-card,
.pricing__card,
.contact-form {
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 189, 255, 0.22);
  box-shadow: 0 18px 40px rgba(34, 189, 255, 0.12);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.28);
}

.feature-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.service-card h3,
.about-card h3 {
  margin: 0 0 0.65rem;
  color: var(--text-brand);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
}

.feature-card p,
.service-card p,
.about-card p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.how-tabs__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.how-tabs__inner {
  max-width: 46rem;
  margin-inline: auto;
  width: 100%;
}

.how-tabs__media {
  --how-photo-size: clamp(220px, 24vw, 300px);
  position: relative;
  width: calc(var(--how-photo-size) + 5.5rem);
  height: calc(var(--how-photo-size) + 2rem);
  margin: 0;
  flex-shrink: 0;
  justify-self: end;
}

.how-tabs__photo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--how-photo-size);
  height: var(--how-photo-size);
  display: block;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--blue-950);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(34, 189, 255, 0.16);
  z-index: 2;
}

.how-tabs__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
}

.how-tabs__dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.how-tabs__dot--dark {
  right: 0;
  top: 50%;
  width: clamp(64px, 6.75vw, 88px);
  height: clamp(64px, 6.75vw, 88px);
  transform: translateY(-50%);
  background: var(--blue-900);
  box-shadow: 0 10px 28px rgba(11, 45, 92, 0.22);
}

.how-tabs__dot--light {
  left: 0;
  top: 22%;
  width: clamp(38px, 4.25vw, 54px);
  height: clamp(38px, 4.25vw, 54px);
  background: var(--blue-400);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.28);
}

.how-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(34, 189, 255, 0.12);
}

.how-tabs__tab {
  position: relative;
  padding: 0.65rem 0.15rem 0.85rem;
  border: 0;
  background: transparent;
  color: var(--text-brand);
  font: inherit;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.how-tabs__tab:hover {
  color: var(--text-brand);
}

.how-tabs__tab--active,
.how-tabs__tab[aria-selected="true"] {
  color: var(--text-brand);
  font-weight: 700;
  border-bottom-color: var(--text-brand);
}

.how-tabs__tab:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 4px;
  border-radius: 4px;
}

.how-tabs__panel[hidden] {
  display: none;
}

.how-tabs__title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  color: var(--text-brand);
  letter-spacing: -0.02em;
}

.how-tabs__steps {
  margin: 0 auto 2rem;
  padding: 0;
  list-style: none;
  max-width: 38rem;
}

.how-tabs__step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  padding-bottom: 1.35rem;
}

.how-tabs__step:last-child {
  padding-bottom: 0;
}

.how-tabs__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(34, 189, 255, 0.14);
  border-radius: 999px;
}

.how-tabs__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--brand-gradient-d);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(34, 189, 255, 0.25);
  position: relative;
  z-index: 1;
}

.how-tabs__step-body p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.how-tabs__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.how-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.85rem;
  border: none;
  border-radius: 999px;
  background: var(--btn-brand);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.how-tabs__btn:hover {
  transform: translateY(-2px);
  background: var(--btn-brand-hover);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.34);
}

.how-tabs__btn:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.section.cta-banner {
  padding: 2.5rem 0 3.5rem;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-banner__inner h2 {
  margin-bottom: 0.5rem;
  font-size: var(--text-2xl);
}

.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-base);
  max-width: 36rem;
}

.cta-banner__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}

.cta-banner__actions .btn {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  white-space: nowrap;
}

.container.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.container.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.container.cta-banner .cta-banner__actions {
  gap: 1rem;
}

.pricing {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.pricing__card {
  padding: 2rem;
}

.pricing__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing__value {
  margin-bottom: 1.25rem;
  color: var(--text-brand);
  font-size: var(--text-price);
  font-weight: 800;
  line-height: 1;
}

.pricing__value span {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-brand);
}

.pricing__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-brand);
}

.pricing__list li + li {
  margin-top: 0.65rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.service-card {
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lp-portal-section {
  position: relative;
  overflow: hidden;
}

.lp-portal-section .container {
  position: relative;
  z-index: 1;
}

.lp-portal-section__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-portal-section__bg-photo {
  position: absolute;
  inset: 0;
  background: url("/images/abrir-empresa-bg.jpg") center / cover no-repeat;
  opacity: 0.28;
}

.lp-portal-section__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 50%,
      rgba(243, 252, 255, 0.68) 100%
    ),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.5), transparent 58%),
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.08), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.05), transparent 30%);
}

.lp-portal-section__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-portal-section__circle--1 {
  top: 12%;
  left: 6%;
  width: clamp(3.5rem, 6vw, 5.5rem);
  height: clamp(3.5rem, 6vw, 5.5rem);
  border: 2px solid rgba(34, 189, 255, 0.22);
}

.lp-portal-section__circle--2 {
  top: 18%;
  right: 8%;
  width: clamp(5rem, 8vw, 7rem);
  height: clamp(5rem, 8vw, 7rem);
  border: 1.5px solid rgba(118, 214, 255, 0.28);
}

.lp-portal-section__circle--3 {
  bottom: 16%;
  left: 10%;
  width: clamp(2rem, 3.2vw, 3rem);
  height: clamp(2rem, 3.2vw, 3rem);
  background: rgba(34, 189, 255, 0.28);
}

.lp-portal-section__circle--4 {
  bottom: 22%;
  right: 14%;
  width: clamp(2.5rem, 4vw, 3.75rem);
  height: clamp(2.5rem, 4vw, 3.75rem);
  border: 2px solid rgba(0, 74, 173, 0.2);
}

.lp-portal-section__circle--solid {
  top: 42%;
  right: 5%;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--brand-blue-end);
  box-shadow: 0 0 0 1rem rgba(34, 189, 255, 0.14);
}

.lp-portal-section .service-card {
  background: rgba(255, 255, 255, 0.88);
}

.service-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--text-brand);
  font-weight: 700;
}

.mei-hero {
  padding: clamp(3rem, 6.5vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 90% 35%, rgba(34, 189, 255, 0.05), transparent 44%),
    linear-gradient(180deg, var(--white) 0%, #f5fcff 58%, #eef9ff 100%);
  border-block: 1px solid rgba(34, 189, 255, 0.06);
}

.mei-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.12);
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(34, 189, 255, 0.06);
}

.mei-hero__eyebrow svg {
  color: var(--text-brand);
}

.mei-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  overflow: visible;
}

.mei-hero__inner {
  max-width: 40rem;
}

.mei-hero__media {
  position: relative;
  --mei-photo-size: clamp(260px, 34vw, 420px);
  width: var(--mei-photo-size);
  height: var(--mei-photo-size);
  margin: 0;
  justify-self: end;
  flex-shrink: 0;
  overflow: visible;
}

.mei-hero__media-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.mei-hero__media-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blob-core, #2ef0f8);
}

.mei-hero__media-blob::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--blob-halo-size, 3.5rem);
  height: var(--blob-halo-size, 3.5rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blob-halo, rgba(46, 240, 248, 0.16));
  z-index: -1;
}

.mei-hero__media-blob--cyan {
  top: 6%;
  right: -6%;
  width: 1.05rem;
  height: 1.05rem;
  --blob-halo-size: 3.6rem;
  --blob-halo: rgba(46, 240, 248, 0.18);
}

.mei-hero__media-blob--blue {
  bottom: 2%;
  left: -10%;
  width: 1.2rem;
  height: 1.2rem;
  --blob-core: #76d6ff;
  --blob-halo-size: 5rem;
  --blob-halo: rgba(118, 214, 255, 0.2);
}

.mei-hero__media-blob--soft {
  top: 46%;
  right: -20%;
  width: 6.5rem;
  height: 6.5rem;
  background: rgba(46, 240, 248, 0.14);
  transform: translateY(-50%);
}

.mei-hero__media-blob--soft::before {
  width: 10rem;
  height: 10rem;
  background: rgba(46, 240, 248, 0.08);
}

.mei-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow:
    0 0 0 3px rgba(34, 189, 255, 0.1),
    0 20px 48px rgba(34, 189, 255, 0.12);
}

.mei-hero__title {
  margin: 0 0 1.25rem;
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  color: var(--text-brand);
  letter-spacing: -0.02em;
}

.mei-hero__lead {
  margin: 0 0 2rem;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.mei-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  border: none;
  border-radius: 999px;
  background: var(--btn-brand);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mei-hero__btn:hover {
  transform: translateY(-2px);
  background: var(--btn-brand-hover);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.34);
}

.mei-hero__btn:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.process .btn {
  margin-top: 0.5rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(34, 189, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--brand-gradient-d);
  color: var(--white);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 0.35rem;
  color: var(--text-brand);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
}

.step p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.about__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about--with-bg {
  position: relative;
  overflow: hidden;
}

.about--with-bg .about__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about--with-bg .about__bg-photo {
  position: absolute;
  inset: 0;
  background: url("/images/about-desk-bg.jpg") center / cover no-repeat;
  opacity: 0.3;
}

.about--with-bg .about__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--white) 0%,
      var(--white) 16%,
      rgba(255, 255, 255, 0.96) 32%,
      rgba(255, 255, 255, 0.82) 52%,
      rgba(255, 255, 255, 0.54) 72%,
      rgba(255, 255, 255, 0.24) 100%
    ),
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.06), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.04), transparent 30%);
}

.about--with-bg .about__layout {
  position: relative;
  z-index: 1;
}

.about__header {
  max-width: 680px;
  margin-bottom: 0;
}

.about__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.about__cards--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin-inline: 0;
  gap: 1rem;
}

.about__cards--quad .about-card {
  padding: 1.2rem 0.75rem;
}

.about__cards--quad .about-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  border-radius: 12px;
}

.about__cards--quad .about-card__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.about__cards--quad .about-card h3 {
  margin-bottom: 0.4rem;
  font-size: var(--text-base);
}

.about__cards--quad .about-card p {
  font-size: var(--text-sm);
  line-height: 1.45;
}

.firm-story {
  padding: 4rem 0;
}

.firm-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.firm-story__content {
  max-width: 34rem;
}

.firm-story__content h2 {
  margin: 0 0 1rem;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.firm-story__content p {
  margin: 0 0 1rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.firm-story__content p:last-child {
  margin-bottom: 0;
}

.firm-story__mission {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-brand) !important;
  font-weight: 500;
}

.firm-story__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.firm-story__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.firm-story__highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 189, 255, 0.2);
  box-shadow: 0 14px 32px rgba(34, 189, 255, 0.1);
}

.firm-story__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.25);
}

.firm-story__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.firm-story__highlight strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-brand);
  line-height: var(--leading-snug);
}

.firm-story__highlight span:last-child {
  display: block;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-brand);
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 189, 255, 0.2);
  box-shadow: 0 16px 36px rgba(34, 189, 255, 0.1);
}

.about-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.25);
}

.about-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__details {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-brand);
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact__details li + li {
  margin-top: 0.85rem;
}

.contact__details-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--brand-gradient-d);
  color: var(--white);
}

.contact__details-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  padding: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.form-row textarea {
  min-height: 96px;
  resize: vertical;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(34, 189, 255, 0.16);
  border-radius: 12px;
  background: var(--white);
  color: var(--text-brand);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(34, 189, 255, 0.35);
  border-color: var(--text-brand);
}

.form-note {
  margin: 0;
  padding-bottom: 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.contact-form .form-note + .btn {
  margin-top: 0.75rem;
}

.form-feedback {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.form-feedback.is-success {
  color: #0f766e;
}

.footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.footer h4 {
  margin: 0 0 1rem;
  color: var(--white);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 0.55rem;
}

.footer a:hover {
  color: var(--white);
}

.footer__brand p {
  max-width: 24rem;
}

.footer__legal {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer__social-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--white);
}

.footer__social-icon img,
.footer__social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo--footer {
  margin-bottom: 1rem;
  color: var(--white);
}

.logo--footer .logo__mark {
  width: 5rem;
}

.logo--footer .logo__text {
  color: var(--white);
}

.logo--footer .logo__text span {
  color: var(--blue-400);
}

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

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  border: 0;
  padding: 0;
  background: rgba(7, 26, 51, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-backdrop:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

body.nav-is-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  max-width: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

body.visitor-lead-is-open {
  overflow: hidden;
}

html.visitor-lead-is-open {
  overflow: hidden;
}

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(30, 190, 87, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 34px rgba(30, 190, 87, 0.36);
}

.whatsapp-fab__icon {
  display: block;
  width: 30px;
  height: 30px;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 1rem 0;
  background: rgba(7, 26, 51, 0.96);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  max-width: 52rem;
  font-size: var(--text-sm);
}

body.has-cookie-banner .whatsapp-fab {
  bottom: 5.5rem;
}

.help-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  background: var(--brand-gradient-h);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -10px 36px rgba(7, 26, 51, 0.2);
}

.help-bar__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.85rem 1rem;
  min-height: 64px;
  padding: 0.7rem 0;
}

.help-bar__group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.65rem 0.85rem;
  flex-shrink: 0;
}

.help-bar__text {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.help-bar__text--soft {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.help-bar__plan {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 1 auto;
  flex-shrink: 0;
}

.help-bar__plan-badge {
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 74, 173, 0.22);
  color: var(--text-on-gradient);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.help-bar__plan-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}

.help-bar__plan-name {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.help-bar__plan-name::after {
  content: "·";
  margin-left: 0.35rem;
  font-weight: 500;
  opacity: 0.65;
}

.help-bar__plan-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.35;
  white-space: nowrap;
}

.help-bar__cta {
  margin-left: auto;
  flex-shrink: 0;
}

.help-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.help-bar .btn {
  min-height: 38px;
  padding: 0.55rem 1rem;
  font-size: var(--text-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

body.has-help-bar .footer {
  padding-bottom: 4.25rem;
}

body.has-help-bar .whatsapp-fab {
  bottom: calc(4.25rem + 1.25rem);
}

body.has-help-bar.has-cookie-banner .footer {
  padding-bottom: calc(4.25rem + 4.75rem);
}

body.has-help-bar.has-cookie-banner .whatsapp-fab {
  bottom: calc(4.25rem + 5.5rem);
}

body.has-cookie-banner .help-bar {
  bottom: 4.75rem;
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .pricing,
  .about__grid,
  .contact__grid,
  .footer__grid,
  .service-grid:not(.service-grid--4) {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .lp-lead .contact__grid {
    align-items: start;
  }

  .lp-lead .contact__grid > div:first-child {
    justify-content: flex-start;
  }

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

  .lp-portal-section__bg-photo {
    opacity: 0.22;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__media {
    position: static;
    transform: none;
    width: 100%;
    max-width: 22rem;
    margin: 2rem auto 0;
    pointer-events: auto;
  }

  .hero__media-blob--cyan {
    right: 0;
  }

  .hero__media-blob--blue {
    left: -2%;
  }

  .hero__media-blob--soft {
    right: -8%;
    width: 4.5rem;
    height: 4.5rem;
  }

  .hero__media-blob--soft::before {
    width: 7rem;
    height: 7rem;
  }

  .hero__content {
    max-width: none;
    padding-right: 0;
  }

  .hero__image {
    width: 100%;
    max-width: none;
  }

  .services-quick {
    margin-top: -1rem;
  }

  .services-quick__grid {
    grid-template-columns: 1fr;
  }

  .about__cards {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .about--with-bg .about__bg-photo {
    opacity: 0.22;
    background-position: center 42%;
  }

  .about--with-bg .about__bg-overlay {
    background:
      linear-gradient(
        180deg,
        var(--white) 0%,
        rgba(255, 255, 255, 0.95) 42%,
        rgba(255, 255, 255, 0.7) 100%
      ),
      radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.06), transparent 26%);
  }

  .about__cards--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
  }

  .firm-story__layout {
    grid-template-columns: 1fr;
  }

  .firm-story__content {
    max-width: none;
    text-align: center;
  }

  .firm-story__mission {
    text-align: left;
  }

  .mei-hero__layout {
    grid-template-columns: 1fr;
  }

  .mei-hero__media {
    --mei-photo-size: min(300px, 82vw);
    justify-self: center;
  }

  .mei-hero__media-blob--cyan {
    right: -2%;
  }

  .mei-hero__media-blob--blue {
    left: -4%;
  }

  .mei-hero__media-blob--soft {
    right: -10%;
    width: 5rem;
    height: 5rem;
  }

  .mei-hero__media-blob--soft::before {
    width: 7.5rem;
    height: 7.5rem;
  }

  .how-tabs__layout {
    grid-template-columns: 1fr;
  }

  .how-tabs__media {
    --how-photo-size: min(260px, 72vw);
    justify-self: center;
    margin-top: 1.5rem;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.65rem;
  }

  .cta-banner__inner,
  .footer__bottom-inner,
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.85rem 0;
  }

  .help-bar__group {
    justify-content: center;
    text-align: center;
  }

  .help-bar__plan {
    flex-direction: column;
    text-align: center;
  }

  .help-bar__cta {
    margin-left: 0;
    align-self: center;
  }

  .help-bar__plan-copy {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }

  .help-bar__plan-name::after {
    content: none;
  }

  .help-bar__plan-desc {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .help-bar__divider {
    width: 100%;
    height: 1px;
  }

  .help-bar__text {
    white-space: normal;
  }

  body.has-help-bar .footer {
    padding-bottom: 9.5rem;
  }

  body.has-help-bar .whatsapp-fab {
    bottom: calc(9.5rem + 1.25rem);
  }

  body.has-help-bar.has-cookie-banner .footer {
    padding-bottom: calc(9.5rem + 4.75rem);
  }

  body.has-help-bar.has-cookie-banner .whatsapp-fab {
    bottom: calc(9.5rem + 5.5rem);
  }

  body.has-cookie-banner .help-bar {
    bottom: 4.75rem;
  }

  .cta-banner__actions {
    width: auto;
  }

  .cta-banner__actions .btn {
    align-self: flex-start;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .header {
    backdrop-filter: none;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 54;
  }

  .logo,
  .nav-toggle {
    position: relative;
    z-index: 55;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: auto;
    grid-row: auto;
    margin-left: auto;
  }

  .nav {
    grid-column: auto;
    grid-row: auto;
    display: none;
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 53;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid rgba(34, 189, 255, 0.08);
    box-shadow: var(--shadow-sm);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .header__inner > .nav:not(.is-open) {
    display: none !important;
  }

  .nav.is-open {
    display: flex !important;
  }

  .nav__list {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(34, 189, 255, 0.14);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    list-style: none;
  }

  .nav__actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding-top: 0.75rem;
    flex: 0 0 auto;
  }

  .nav__actions .btn--primary {
    display: none;
  }

  .nav__actions .btn--ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(34, 189, 255, 0.22);
    border-radius: var(--radius-sm);
    background: var(--blue-50);
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    max-height: 0;
    margin-top: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
  }

  .nav__list > li {
    border-bottom: 1px solid rgba(34, 189, 255, 0.1);
  }

  .nav__list > li:last-child {
    border-bottom: 0;
  }

  .nav__list > li > a,
  .nav__dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.95rem 1.1rem;
    text-align: center;
    transition: background 0.15s ease;
  }

  .nav__list > li > a:active,
  .nav__dropdown-trigger:active {
    background: var(--blue-50);
  }

  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
    background: var(--blue-50);
  }

  .nav__dropdown-menu a {
    padding: 0.85rem 1.1rem;
    border-top: 1px solid rgba(34, 189, 255, 0.1);
    border-radius: 0;
    text-align: center;
  }

  .nav__dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.65);
  }

  .nav__dropdown.is-open .nav__dropdown-menu {
    max-height: 16rem;
    margin-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .nav__dropdown.is-open .nav__dropdown-menu--cols {
    max-height: 60rem;
    padding: 0.35rem 0 0.75rem;
  }

  .nav__dropdown-menu--cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    min-width: 0;
  }

  .nav__dropdown-menu--materials {
    width: 100%;
    padding-inline: 0;
  }

  .nav__dropdown-col__title {
    padding: 0.65rem 1.1rem 0.25rem;
    text-align: center;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    min-width: min(100%, 280px);
    justify-content: center;
  }

  .help-bar__divider,
  .help-bar__plan,
  .help-bar__cta {
    display: none;
  }

  .help-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.7rem 0;
  }

  .help-bar__group {
    justify-content: center;
    text-align: center;
  }

  body.has-help-bar .footer {
    padding-bottom: 4.25rem;
  }

  body.has-help-bar .whatsapp-fab {
    bottom: calc(4.25rem + 1.25rem);
  }

  body.has-help-bar.has-cookie-banner .footer {
    padding-bottom: calc(4.25rem + 4.75rem);
  }

  body.has-help-bar.has-cookie-banner .whatsapp-fab {
    bottom: calc(4.25rem + 5.5rem);
  }
}

/* Landing: Abrir Empresa */
.eyebrow--light {
  color: var(--text-brand);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: var(--service-hero-bg);
  color: var(--text-brand);
}

.lp-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.lp-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.lp-hero h1 {
  margin: 0 0 1rem;
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.lp-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.lp-hero__pills {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.lp-hero__pills li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.lp-hero__pill-text {
  flex: 1;
  min-width: 0;
  margin-top: -0.12rem;
}

.lp-hero__pill-text strong {
  display: block;
  margin-bottom: 0.05rem;
  line-height: 1.3;
  color: var(--text-brand);
}

.lp-hero__pill-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.14);
  color: var(--btn-brand);
  box-shadow: var(--shadow-sm);
}

.lp-hero__pill-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.lp-hero__note {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.lp-hero--with-media .lp-hero__layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
}

.lp-hero--with-media .lp-hero__media {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  margin: 0;
  line-height: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.lp-hero--with-media .lp-hero__media::before {
  content: "";
  position: absolute;
  left: clamp(-3.5rem, -6vw, -2rem);
  bottom: clamp(0.5rem, 4%, 1.25rem);
  z-index: 0;
  width: clamp(195px, 21vw, 285px);
  height: clamp(195px, 21vw, 285px);
  border-radius: var(--radius-md);
  background: rgba(0, 74, 173, 0.78);
  box-shadow: 0 10px 28px rgba(0, 45, 102, 0.16);
}

.lp-hero--with-media .lp-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(280px, 36vw, 520px);
  max-width: 520px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: 0 24px 48px rgba(34, 189, 255, 0.14);
}

@media (min-width: 981px) {
  .lp-hero--with-media .lp-hero__content {
    max-width: min(40rem, 55%);
    padding-right: 1rem;
  }
}

.lp-hero--abrir-empresa {
  min-height: clamp(32rem, 75vh, 46rem);
  padding-bottom: 0;
}

.lp-hero--abrir-empresa .lp-hero__backdrop {
  background: none;
}

.lp-hero--abrir-empresa .lp-hero__bg-photo {
  position: absolute;
  inset: 0;
  background: url("/images/abrir-empresa-bg.jpg") right center / cover no-repeat;
  opacity: 0.32;
}

.lp-hero--abrir-empresa .lp-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--blue-50) 0%,
      var(--blue-50) 18%,
      rgba(243, 252, 255, 0.96) 34%,
      rgba(255, 255, 255, 0.82) 54%,
      rgba(255, 255, 255, 0.52) 72%,
      rgba(255, 255, 255, 0.22) 100%
    ),
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.05), transparent 30%);
}

.lp-hero--abrir-empresa .lp-hero__media {
  top: auto;
  bottom: 0;
  right: auto;
  left: 54%;
  width: 46%;
  transform: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

.lp-hero--abrir-empresa .lp-hero__media-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: fit-content;
  max-width: 100%;
}

.lp-hero--abrir-empresa .lp-hero__media-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lp-hero--abrir-empresa .lp-hero__circle {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.lp-hero--abrir-empresa .lp-hero__circle--1 {
  top: 4%;
  right: 8%;
  width: clamp(5.5rem, 10vw, 9rem);
  height: clamp(5.5rem, 10vw, 9rem);
  border: 2px solid rgba(34, 189, 255, 0.35);
}

.lp-hero--abrir-empresa .lp-hero__circle--2 {
  top: 18%;
  left: 2%;
  width: clamp(1.5rem, 2.5vw, 2.25rem);
  height: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 2px solid var(--brand-blue-end);
}

.lp-hero--abrir-empresa .lp-hero__circle--3 {
  bottom: 20%;
  left: -6%;
  width: clamp(3rem, 5vw, 4.5rem);
  height: clamp(3rem, 5vw, 4.5rem);
  border: 2px solid rgba(118, 214, 255, 0.45);
}

.lp-hero--abrir-empresa .lp-hero__circle--4 {
  top: 42%;
  left: 6%;
  width: clamp(4rem, 6.5vw, 6rem);
  height: clamp(4rem, 6.5vw, 6rem);
  border: 2px solid rgba(0, 74, 173, 0.28);
}

.lp-hero--abrir-empresa .lp-hero__circle--5 {
  bottom: 30%;
  right: -4%;
  width: clamp(4.5rem, 7.5vw, 7rem);
  height: clamp(4.5rem, 7.5vw, 7rem);
  border: 2px solid rgba(34, 189, 255, 0.3);
}

.lp-hero--abrir-empresa .lp-hero__circle--6 {
  top: 32%;
  right: 18%;
  width: clamp(7rem, 12vw, 11rem);
  height: clamp(7rem, 12vw, 11rem);
  border: 2px solid rgba(118, 214, 255, 0.22);
}

.lp-hero--abrir-empresa .lp-hero__circle--7 {
  bottom: 8%;
  right: 14%;
  width: clamp(2rem, 3.2vw, 3rem);
  height: clamp(2rem, 3.2vw, 3rem);
  border: 2px solid var(--brand-blue-start);
}

.lp-hero--abrir-empresa .lp-hero__circle--8 {
  top: 58%;
  right: 2%;
  width: clamp(2.5rem, 4vw, 3.75rem);
  height: clamp(2.5rem, 4vw, 3.75rem);
  border: 1.5px solid rgba(0, 74, 173, 0.35);
}

.lp-hero--abrir-empresa .lp-hero__circle--9 {
  top: 10%;
  left: 18%;
  width: clamp(6rem, 9vw, 8.5rem);
  height: clamp(6rem, 9vw, 8.5rem);
  border: 1.5px solid rgba(34, 189, 255, 0.2);
}

.lp-hero--abrir-empresa .lp-hero__circle--solid {
  border: none;
}

.lp-hero--abrir-empresa .lp-hero__circle--10 {
  top: 26%;
  right: 6%;
  width: clamp(1rem, 1.6vw, 1.35rem);
  height: clamp(1rem, 1.6vw, 1.35rem);
  background: var(--brand-blue-end);
  box-shadow: 0 0 0 clamp(0.9rem, 1.5vw, 1.35rem) rgba(34, 189, 255, 0.16);
}

.lp-hero--abrir-empresa .lp-hero__circle--11 {
  bottom: 14%;
  left: 10%;
  width: clamp(2.5rem, 4vw, 3.75rem);
  height: clamp(2.5rem, 4vw, 3.75rem);
  background: rgba(118, 214, 255, 0.38);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.14);
}

.lp-hero--abrir-empresa .lp-hero__circle--12 {
  top: 52%;
  right: 10%;
  width: clamp(3.25rem, 5vw, 4.75rem);
  height: clamp(3.25rem, 5vw, 4.75rem);
  background: rgba(0, 74, 173, 0.42);
  box-shadow: 0 10px 24px rgba(0, 45, 102, 0.12);
}

.lp-hero--abrir-empresa .lp-hero__circle--13 {
  bottom: 38%;
  left: -2%;
  width: clamp(1.35rem, 2vw, 1.75rem);
  height: clamp(1.35rem, 2vw, 1.75rem);
  background: var(--brand-blue-start);
}

.lp-hero--abrir-empresa .lp-hero__circle--14 {
  top: 8%;
  right: 28%;
  width: clamp(4rem, 6.5vw, 5.75rem);
  height: clamp(4rem, 6.5vw, 5.75rem);
  background: rgba(46, 240, 248, 0.18);
  box-shadow: 0 0 0 clamp(0.75rem, 1.2vw, 1.1rem) rgba(46, 240, 248, 0.1);
}

.lp-hero--abrir-empresa .lp-hero__media::before {
  display: none;
}

.lp-hero--abrir-empresa .lp-hero__image {
  position: relative;
  z-index: 1;
  width: clamp(350px, 46vw, 680px);
  max-width: none;
  height: clamp(30rem, 76vh, 46rem);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 0;
  box-shadow: none;
}

.lp-hero--abrir-empresa .lp-hero__badge-card {
  position: absolute;
  z-index: 3;
  top: auto;
  bottom: 1.5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(18rem, 84%);
  padding: 0.7rem 1.2rem 0.65rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(34, 189, 255, 0.14),
    0 18px 40px rgba(0, 45, 102, 0.08);
  pointer-events: none;
}

.lp-hero--abrir-empresa .lp-hero__badge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--brand-gradient-h);
}

.lp-hero--abrir-empresa .lp-hero__badge-card p {
  margin: 0.2rem 0 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--text-brand);
  text-align: center;
}

.lp-hero--contabilidade .lp-hero__media {
  left: 48%;
  width: 52%;
}

.lp-hero--contabilidade .lp-hero__image {
  width: clamp(460px, 58vw, 920px);
  height: clamp(24rem, 68vh, 42rem);
  object-fit: contain;
  object-position: bottom center;
}

.lp-hero--contabilidade .lp-hero__badge-card {
  width: min(22rem, 92%);
}

.lp-hero--contabilidade + .lp-highlights {
  margin-top: 0;
  padding: 2rem 0 2rem;
}

.lp-hero__card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.lp-hero__card h2 {
  margin: 0 0 1rem;
  font-size: var(--text-lg);
  color: var(--text-brand);
}

.lp-hero__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-hero__card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.lp-hero__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--btn-brand);
}

.btn--accent {
  background: var(--btn-brand);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.28);
}

.btn--accent:hover {
  background: var(--btn-brand-hover);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.34);
}

.lp-hero .btn--secondary {
  background: var(--white);
  color: var(--blue-800);
  border-color: rgba(34, 189, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.lp-hero .btn--secondary:hover {
  background: var(--white);
  border-color: rgba(34, 189, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.lp-compare-wrap {
  width: 100%;
  --compare-label-col: 38%;
}

.lp-compare__plans-head,
.lp-compare__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.lp-compare__col-service {
  width: var(--compare-label-col);
}

.lp-compare__col-plan {
  width: calc((100% - var(--compare-label-col)) / 3);
}

.lp-compare__plans-head {
  margin-bottom: 0.5rem;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
}

.lp-compare__plans-head-spacer {
  padding: 0;
  border: none;
  background: transparent;
}

.lp-compare__plans-head .lp-compare__plan-name {
  padding: 0.75rem 1.15rem;
  text-align: center;
  font-weight: 700;
  color: var(--text-brand);
  border: none;
  background: transparent;
}

.lp-compare__plans-head .lp-compare__plan-name--featured {
  background: rgba(232, 242, 255, 0.85);
  color: var(--text-brand);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.lp-compare {
  overflow: hidden;
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.lp-compare__corner {
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--text-brand);
  text-align: left;
  background: var(--blue-50);
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.lp-compare__head-pad {
  padding: 0;
  background: var(--blue-50);
  border-bottom: 1px solid var(--gray-200);
  border-right: none;
}

.section:has(.lp-compare-wrap) {
  overflow: visible;
}

.section:has(.lp-compare-wrap) > .container {
  overflow: visible;
}

.lp-compare__table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  background: var(--white);
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: var(--text-sm);
}

.lp-compare__table .lp-compare__row-label {
  width: var(--compare-label-col);
}

.lp-compare__table th,
.lp-compare__table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.lp-compare__table th:not(:last-child),
.lp-compare__table td:not(:last-child) {
  border-right: 1px solid var(--gray-200);
}

.lp-compare__table tbody tr:last-child th,
.lp-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.lp-compare__table tbody th {
  font-weight: 600;
  color: var(--text-brand);
}

.lp-compare__group th {
  padding: 0.8rem 1.15rem;
  background: #eef4fc;
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  border-right: none;
}

.lp-compare__row-label {
  position: relative;
  min-width: 12rem;
}

.lp-compare__label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.lp-compare__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--gray-200);
  color: var(--text-brand);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
  transition: background 0.15s ease, color 0.15s ease;
}

.lp-compare__info:hover,
.lp-compare__info:focus-visible {
  background: var(--blue-100);
  color: var(--text-brand);
  outline: none;
}

.lp-compare__info--inline {
  pointer-events: none;
}

.lp-compare__tip {
  position: fixed;
  z-index: 200;
  width: max-content;
  max-width: min(20rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--leading-snug);
  text-align: left;
  box-shadow: 0 16px 40px rgba(7, 26, 51, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.lp-compare__tip.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-compare__tip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--text-brand);
}

.lp-compare__tip.is-below::before {
  top: 0;
  left: 1.25rem;
  right: auto;
  transform: translateY(-100%);
  border-right-color: transparent;
  border-bottom-color: var(--text-brand);
}

.lp-compare__tip-text {
  display: block;
}

.lp-compare__tip ul {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.1rem;
}

.lp-compare__tip li + li {
  margin-top: 0.35rem;
}

.lp-compare__highlight {
  background: rgba(232, 242, 255, 0.65);
  color: var(--text-brand);
  font-weight: 600;
}

.lp-compare__status,
.lp-compare__detail {
  text-align: center;
}

.lp-compare__status {
  vertical-align: middle;
}

.lp-compare__yes,
.lp-compare__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0;
  line-height: 0;
}

.lp-compare__yes::before,
.lp-compare__no::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.lp-compare__yes::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.lp-compare__no::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.lp-compare__yes {
  color: var(--text-brand);
  background: rgba(34, 189, 255, 0.1);
}

.lp-compare__no {
  color: var(--text-brand);
  background: var(--gray-100);
}

.lp-compare__detail {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
  vertical-align: middle;
}

.lp-compare__tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-gradient-d);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
}

.lp-compare__footnote {
  margin: 0.85rem 0 0;
  padding: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-brand);
  text-align: center;
}

@media (max-width: 820px) {
  .lp-compare-wrap {
    --compare-label-col: 34%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .lp-compare {
    overflow: visible;
    min-width: 28rem;
  }

  .lp-compare__plans-head,
  .lp-compare__table {
    min-width: 28rem;
  }

  .lp-compare__plans-head .lp-compare__plan-name,
  .lp-compare__corner,
  .lp-compare__table th,
  .lp-compare__table td {
    padding: 0.65rem 0.4rem;
    font-size: var(--text-xs);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    vertical-align: middle;
  }

  .lp-compare__row-label {
    min-width: 0;
    width: var(--compare-label-col);
  }

  .lp-compare__label-wrap {
    display: block;
    max-width: 100%;
    white-space: normal;
  }

  .lp-compare__detail {
    font-size: var(--text-xs);
    line-height: 1.35;
    text-align: center;
  }

  .lp-compare__tag {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.625rem;
    padding: 0.15rem 0.35rem;
    white-space: normal;
  }

  .lp-compare__group th {
    font-size: var(--text-xs);
    line-height: 1.35;
    white-space: normal;
  }
}

.lp-plan-basic {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-brand);
}

.lp-plan-basic__trigger {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--text-brand);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lp-plan-basic__trigger:hover,
.lp-plan-basic__trigger:focus-visible {
  color: var(--text-brand);
}

.lp-plan-basic-modal {
  width: min(100% - 2rem, 640px);
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: scale(0.94) translateY(14px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    overlay 0.28s allow-discrete,
    display 0.28s allow-discrete;
}

.lp-plan-basic-modal.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lp-plan-basic-modal.is-closing {
  opacity: 0;
  transform: scale(0.97) translateY(8px);
}

@starting-style {
  .lp-plan-basic-modal.is-active {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
  }
}

.lp-plan-basic-modal::backdrop {
  background: rgba(15, 23, 42, 0);
  transition:
    background-color 0.28s ease,
    overlay 0.28s allow-discrete,
    display 0.28s allow-discrete;
}

.lp-plan-basic-modal.is-active::backdrop {
  background: rgba(15, 23, 42, 0.52);
}

@starting-style {
  .lp-plan-basic-modal.is-active::backdrop {
    background: rgba(15, 23, 42, 0);
  }
}

.lp-plan-basic-modal__inner {
  position: relative;
  max-height: calc(100vh - 2rem);
  padding: 1.75rem 1.75rem 1.5rem;
  overflow-y: auto;
}

.lp-plan-basic-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--text-brand);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-plan-basic-modal__close svg {
  display: block;
  flex-shrink: 0;
}

.lp-plan-basic-modal__close:hover,
.lp-plan-basic-modal__close:focus-visible {
  background: var(--blue-100);
  color: var(--text-brand);
}

.lp-plan-basic-modal__title {
  margin: 0.35rem 0 0.5rem;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.lp-plan-basic-modal__price {
  margin: 0 0 0.75rem;
  font-size: var(--text-base);
  color: var(--text-brand);
}

.lp-plan-basic-modal__price strong {
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.lp-plan-basic-modal__desc {
  margin: 0 0 1.25rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.lp-plan-basic-modal__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-plan-basic-modal__lists h3 {
  margin: 0 0 0.65rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-brand);
}

.lp-plan-basic-modal__lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-plan-basic-modal__lists li {
  position: relative;
  padding-left: 1.35rem;
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.lp-plan-basic-modal__lists li + li {
  margin-top: 0.45rem;
}

.lp-plan-basic-modal__lists li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: 700;
}

.lp-plan-basic-modal__list--yes li::before {
  content: "✓";
  color: var(--text-brand);
}

.lp-plan-basic-modal__list--no li::before {
  content: "✕";
  color: rgba(0, 45, 102, 0.45);
}

@media (max-width: 640px) {
  .lp-plan-basic-modal__inner {
    padding: 1.35rem 1.15rem 1.15rem;
  }

  .lp-plan-basic-modal__lists {
    grid-template-columns: 1fr;
  }
}

.lp-benefits .features-carousel {
  margin-bottom: 0.25rem;
}

.lp-steps .how-tabs__step-body h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-lg);
  color: var(--text-brand);
}

.lp-steps-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  overflow: visible;
}

.lp-steps-layout .how-tabs__media {
  --how-photo-size: clamp(320px, 34vw, 420px);
  position: relative;
  transform: none;
  justify-self: start;
  margin-left: clamp(-2rem, -4vw, -1rem);
  pointer-events: auto;
}

.lp-steps-layout .how-tabs__inner {
  max-width: 38rem;
  margin-inline: auto;
  min-width: 0;
}

.lp-steps-layout .section__header--left {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.lp-steps-layout .section__header--left h2 {
  font-size: var(--text-3xl);
}

.lp-steps-layout .how-tabs__steps {
  margin: 0 auto 2rem;
  max-width: none;
}

.lp-steps-layout .how-tabs__cta {
  justify-content: center;
}

@media (max-width: 980px) {
  .lp-steps-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .lp-steps-layout .how-tabs__inner {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .lp-steps-layout .how-tabs__media {
    order: 2;
    --how-photo-size: min(220px, 58vw);
    position: relative;
    width: calc(var(--how-photo-size) + 3rem);
    height: calc(var(--how-photo-size) + 1.5rem);
    margin: 0 auto;
    margin-left: auto;
    justify-self: center;
    transform: none;
    align-self: center;
    flex-shrink: 0;
  }

  .lp-steps-layout .how-tabs__photo {
    width: var(--how-photo-size);
    height: var(--how-photo-size);
    aspect-ratio: 1;
  }
}

.how-tabs__photo--bold {
  border-width: 2px;
  border-color: var(--text-brand);
}

.lp-stats {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(118, 214, 255, 0.2), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(34, 189, 255, 0.12), transparent 32%),
    linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.lp-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 189, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

.lp-stats::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42rem, 70vw);
  height: min(42rem, 70vw);
  transform: translate(-50%, -48%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 214, 255, 0.1), transparent 68%);
  pointer-events: none;
}

.lp-stats__circles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-stats__circle {
  position: absolute;
  border-radius: 50%;
}

.lp-stats__circle:nth-child(1) {
  top: 6%;
  left: 3%;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(118, 214, 255, 0.42);
}

.lp-stats__circle:nth-child(2) {
  top: 14%;
  right: 6%;
  width: 8.5rem;
  height: 8.5rem;
  background: rgba(34, 189, 255, 0.16);
  border: 2px solid rgba(34, 189, 255, 0.22);
}

.lp-stats__circle:nth-child(3) {
  bottom: 10%;
  left: 8%;
  width: 6.75rem;
  height: 6.75rem;
  background: rgba(0, 74, 173, 0.1);
  border: 2px solid rgba(0, 74, 173, 0.14);
}

.lp-stats__circle:nth-child(4) {
  top: 42%;
  left: 1.5%;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(46, 240, 248, 0.55);
  box-shadow: 0 0 0 10px rgba(46, 240, 248, 0.12);
}

.lp-stats__circle:nth-child(5) {
  bottom: 18%;
  right: 4%;
  width: 10rem;
  height: 10rem;
  background: rgba(118, 214, 255, 0.14);
  border: 1px solid rgba(118, 214, 255, 0.28);
}

.lp-stats__circle:nth-child(6) {
  top: 28%;
  right: 18%;
  width: 4rem;
  height: 4rem;
  background: rgba(34, 189, 255, 0.32);
}

.lp-stats__circle:nth-child(7) {
  bottom: 6%;
  left: 42%;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(0, 45, 102, 0.08);
  border: 2px solid rgba(0, 74, 173, 0.16);
}

.lp-stats > .container {
  position: relative;
  z-index: 1;
}

.lp-stats .section__header {
  position: relative;
  max-width: 42rem;
}

.lp-stats .section__header::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin: 1.35rem auto 0;
  border-radius: 999px;
  background: var(--brand-gradient-h);
  box-shadow: 0 6px 18px rgba(34, 189, 255, 0.28);
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lp-stat;
}

.lp-stats__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-stats__grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 2.15rem 1.35rem 1.85rem;
  text-align: center;
  border-radius: calc(var(--radius-md) + 2px);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 189, 255, 0.1), transparent 58%),
    linear-gradient(180deg, var(--white) 0%, rgba(243, 252, 255, 0.92) 100%);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow:
    0 1px 2px rgba(34, 189, 255, 0.05),
    0 14px 34px rgba(34, 189, 255, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  counter-increment: lp-stat;
  animation: lp-stat-rise 0.6s ease backwards;
}

.lp-stats__grid li:nth-child(1) {
  animation-delay: 0.05s;
}

.lp-stats__grid li:nth-child(2) {
  animation-delay: 0.12s;
}

.lp-stats__grid li:nth-child(3) {
  animation-delay: 0.19s;
}

.lp-stats__grid li:nth-child(4) {
  animation-delay: 0.26s;
}

.lp-stats__grid li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--brand-gradient-h);
  opacity: 0.92;
}

.lp-stats__grid li::after {
  content: counter(lp-stat, decimal-leading-zero);
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(0, 45, 102, 0.14);
}

.lp-stats__grid li:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 189, 255, 0.24);
  box-shadow:
    0 6px 12px rgba(34, 189, 255, 0.08),
    0 22px 46px rgba(34, 189, 255, 0.16);
}

.lp-stats__grid li:hover .lp-stats__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 0 0 6px rgba(118, 214, 255, 0.18),
    0 12px 26px rgba(34, 189, 255, 0.32);
}

.lp-stats__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow:
    0 0 0 4px rgba(118, 214, 255, 0.14),
    0 10px 24px rgba(34, 189, 255, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lp-stats__icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 20px;
  border: 1px dashed rgba(34, 189, 255, 0.22);
  opacity: 0.75;
  pointer-events: none;
}

.lp-stats__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-stats__grid strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-brand);
  letter-spacing: -0.01em;
  line-height: var(--leading-snug);
}

.lp-stats__grid span:last-child {
  display: block;
  max-width: 16rem;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

@keyframes lp-stat-rise {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-stats__grid li {
    animation: none;
  }

  .lp-stats__grid li:hover,
  .lp-stats__grid li:hover .lp-stats__icon {
    transform: none;
  }
}

.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonials-carousel {
  width: 100%;
  margin-top: 0.25rem;
  overflow: visible;
}

#depoimentos {
  overflow: visible;
}

#depoimentos .container {
  overflow: visible;
}

.testimonials-carousel .features-carousel__viewport {
  width: 100%;
  flex: none;
  padding: 1.25rem 1.5rem 2rem;
  overflow-x: clip;
  overflow-clip-margin: 1.25rem;
  overflow-y: visible;
}

.testimonials-carousel .features-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  will-change: transform;
  padding-block: 0.15rem;
  align-items: stretch;
}

.testimonials-carousel .lp-testimonial {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(34, 189, 255, 0.07);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.testimonials-carousel.is-card-hovered .lp-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(34, 189, 255, 0.12);
}

.testimonials-carousel .lp-testimonial p {
  flex: 1 1 auto;
}

.lp-testimonial {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.lp-testimonial p {
  margin: 0 0 1.25rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  font-style: italic;
}

.lp-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp-testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-brand);
}

.lp-testimonial footer span {
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.lp-faq {
  max-width: 760px;
  margin-inline: auto;
}

.lp-faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.lp-faq__item summary {
  padding: 1.15rem 2rem 1.15rem 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-brand);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-brand);
  line-height: 1;
}

.lp-faq__item[open] summary::after {
  content: "−";
}

.lp-faq__answer {
  padding: 0 0 1.15rem;
}

.lp-faq__answer p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.lp-highlights {
  margin-top: -2rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.lp-highlights--overlap {
  margin-top: 0;
  padding: 0.25rem 0 0;
  overflow: visible;
  background: var(--white);
}

.lp-highlights--overlap .lp-highlights__grid {
  position: relative;
  z-index: 3;
  transform: translateY(35%);
  gap: 1rem;
}

.lp-highlights--overlap .lp-highlights__item {
  padding: 0.85rem 1rem;
}

.lp-highlights--overlap .lp-highlights__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
}

.lp-highlights--overlap .lp-highlights__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.lp-highlights--overlap .lp-highlights__item h3 {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.lp-highlights--overlap .lp-highlights__item p {
  font-size: var(--text-xs);
  line-height: 1.4;
}

.lp-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-highlights__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  align-items: center;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--white) 0%, rgba(238, 244, 255, 0.72) 100%);
  border: 1px solid rgba(34, 189, 255, 0.08);
  box-shadow:
    0 1px 2px rgba(34, 189, 255, 0.05),
    0 10px 28px rgba(34, 189, 255, 0.08);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-highlights__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 3px;
  transform: none;
  border-radius: 0;
  background: var(--brand-gradient-h);
  opacity: 0.9;
}

.lp-highlights__item::after {
  content: "";
  position: absolute;
  inset: -35% -20% auto;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(34, 189, 255, 0.1), transparent 68%);
  pointer-events: none;
}

.lp-highlights__item:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 189, 255, 0.2);
  box-shadow:
    0 4px 10px rgba(34, 189, 255, 0.06),
    0 22px 48px rgba(34, 189, 255, 0.14);
}

.lp-highlights__icon {
  position: relative;
  z-index: 1;
  grid-row: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
  border-radius: 14px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow:
    0 8px 18px rgba(34, 189, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-highlights__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-highlights__item h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: end;
  margin: 0;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-brand);
}

.lp-highlights__item p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: start;
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--text-brand);
}

.lp-hero--abrir-empresa + .lp-highlights {
  margin-top: 0;
  padding: 2rem 0 2rem;
}

.lp-lead .contact__details {
  margin-bottom: 2.5rem;
}

.lp-lead__hint {
  margin: 3.5rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 189, 255, 0.06);
  border-left: 3px solid var(--blue-600);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-brand);
}

.lp-lead .contact__grid {
  align-items: center;
  gap: 2.5rem;
}

.lp-lead .contact__grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.lp-lead .contact-form {
  padding: 1.25rem 1.35rem;
}

.lp-lead .form-row {
  margin-bottom: 0.7rem;
}

.lp-lead .form-row--split {
  gap: 0.85rem;
}

.lp-lead .form-row label {
  font-size: var(--text-sm);
}

.lp-lead .form-row input,
.lp-lead .form-row select,
.lp-lead .form-row textarea {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
}

.lp-lead .form-row textarea {
  min-height: 72px;
}

.lp-lead .form-note {
  padding-bottom: 0.75rem;
  font-size: var(--text-sm);
}

.lp-lead .contact-form .form-note + .btn {
  margin-top: 0.5rem;
}

.section__header + .plans-tabs {
  margin-top: -0.5rem;
}

.plans-tabs__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.plans-tabs {
  text-align: center;
}

.plans-tabs__btn {
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-700);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.plans-tabs__btn:hover {
  color: var(--blue-800);
}

.plans-tabs__btn--active {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: var(--shadow-sm);
}

.plans-tabs__panel {
  text-align: left;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.plans-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

.plans-grid--1 {
  grid-template-columns: minmax(0, 380px);
  max-width: 380px;
  margin-inline: auto;
}

[data-plans-segment-active="comercio"] .plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

[data-plans-segment-active="comercio"] .plan-card[data-plan="essencial"],
.plan-card[data-plan="essencial"][hidden] {
  display: none !important;
}

.plans-note {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.plan-savings-layout {
  display: grid;
  grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.plan-savings-layout--finder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0;
  min-width: 0;
  width: 100%;
}

.plan-savings-layout--finder[hidden] {
  display: none !important;
}

.plan-savings-layout--finder .plan-savings-card {
  overflow: visible;
  min-width: 0;
  border: 1px solid rgba(21, 88, 184, 0.22);
}

.plan-savings-layout--finder .plan-savings-benefits {
  min-width: 0;
}

.plan-savings-card {
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.plan-savings-card__head {
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.15rem, 2vw, 1.45rem);
  text-align: center;
}

.plan-savings-card__recommend {
  margin: 0 0 0.85rem;
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.plan-savings-card__recommend strong {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.plan-savings-card__from-label {
  margin: 0 0 0.35rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.plan-savings-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--text-brand);
}

.plan-savings-card__currency {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.plan-savings-card__amount {
  font-size: clamp(2.75rem, 6vw, 3.5rem);
}

.plan-savings-card__period {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-savings-card__head .btn {
  min-height: 3rem;
  font-size: var(--text-base);
  font-weight: 700;
}

.plan-savings-card__highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1.25rem, 2.5vw, 1.65rem);
  background: linear-gradient(90deg, rgba(118, 214, 255, 0.12) 0%, rgba(34, 189, 255, 0.06) 100%);
  border-block: 1px solid rgba(34, 189, 255, 0.12);
}

.plan-savings-card__highlight-text {
  margin: 0;
  max-width: 11rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.plan-savings-card__saving {
  margin: 0;
  text-align: right;
  line-height: 1.1;
}

.plan-savings-card__saving strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  color: #15803d;
}

.plan-savings-card__saving span {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #16a34a;
}

.plan-savings-card__compare {
  padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.5rem);
}

.plan-savings-card__compare-title {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--gray-700);
}

.plan-savings-card__list {
  margin: 0;
}

.plan-savings-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.plan-savings-card__row + .plan-savings-card__row {
  border-top: 1px solid var(--gray-100);
}

.plan-savings-card__row dt {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-snug);
  color: var(--gray-700);
}

.plan-savings-card__row dd {
  margin: 0;
  flex-shrink: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
  white-space: nowrap;
}

.plan-savings-card__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-brand);
}

.plan-savings-card__total strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
}

.plan-savings-benefits {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.plan-savings-benefits h3 {
  margin: 0 0 1rem;
  font-size: var(--text-xl);
  line-height: var(--leading-tight);
  color: var(--text-brand);
}

.plan-savings-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-savings-benefits__list li {
  position: relative;
  padding-left: 1.65rem;
}

.plan-savings-benefits__list li + li {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--gray-100);
}

.plan-savings-benefits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--brand-gradient-d);
  box-shadow: 0 0 0 3px rgba(34, 189, 255, 0.12);
}

.plan-savings-benefits__list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-brand);
}

.plan-savings-benefits__list span {
  display: block;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--gray-700);
}

.plan-savings-layout--finder .plan-savings-card__head {
  padding: 0.95rem 1rem 0.85rem;
}

.plan-savings-layout--finder .plan-savings-card__recommend {
  font-size: var(--text-sm);
}

.plan-savings-layout--finder .plan-savings-card__amount {
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
}

.plan-savings-layout--finder .plan-savings-card__highlight {
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 0.65rem;
  padding: 0.75rem 1rem;
}

.plan-savings-layout--finder .plan-savings-card__highlight-text {
  max-width: none;
  flex: 1 1 8rem;
  min-width: 0;
  font-size: var(--text-xs);
}

.plan-savings-layout--finder .plan-savings-card__saving strong {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  white-space: nowrap;
}

.plan-savings-layout--finder .plan-savings-card__compare {
  padding: 0.85rem 1rem 0.95rem;
}

.plan-savings-layout--finder .plan-savings-card__compare-title {
  font-size: var(--text-xs);
}

.plan-savings-layout--finder .plan-savings-card__row dt,
.plan-savings-layout--finder .plan-savings-card__row dd {
  font-size: var(--text-xs);
}

.plan-savings-layout--finder .plan-savings-card__saving {
  flex: 0 0 auto;
  min-width: 0;
}

.plan-savings-layout--finder .plan-savings-card__row {
  gap: 0.5rem;
}

.plan-savings-layout--finder .plan-savings-card__row dt {
  min-width: 0;
}

.plan-savings-layout--finder .plan-savings-card__row dd {
  flex-shrink: 0;
}

.plan-savings-layout--finder .plan-savings-card__total {
  gap: 0.5rem;
  font-size: var(--text-xs);
}

.plan-savings-layout--finder .plan-savings-benefits {
  padding: 1.1rem 1.15rem;
}

.plan-savings-layout--finder .plan-savings-benefits h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
}

.plan-savings-layout--finder .plan-savings-benefits__list li + li {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
}

.plan-savings-layout--finder .plan-savings-benefits__list strong,
.plan-savings-layout--finder .plan-savings-benefits__list span {
  font-size: var(--text-xs);
}

.plan-savings-benefits__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--btn-brand);
}

.plan-savings-benefits__link:hover {
  text-decoration: underline;
}

.plan-savings-benefits__more {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--btn-brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.plan-savings-benefits__more:hover,
.plan-savings-benefits__more:focus-visible {
  color: var(--btn-brand-hover);
}

.plan-benefits-modal {
  border: 1px solid rgba(21, 88, 184, 0.22);
}

.plan-benefits-modal .lp-plan-basic-modal__title {
  margin-bottom: 1rem;
}

.plan-savings-benefits__list--modal li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  column-gap: 0.65rem;
  row-gap: 0.2rem;
  align-items: center;
  padding-left: 0;
}

.plan-savings-benefits__list--modal li::before {
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
}

.plan-savings-benefits__list--modal li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}

.plan-savings-benefits__list--modal strong {
  grid-column: 2;
  grid-row: 1;
}

.plan-savings-benefits__list--modal span {
  grid-column: 2;
  grid-row: 2;
}

.plan-savings-benefits__list--modal strong,
.plan-savings-benefits__list--modal span {
  font-size: var(--text-sm);
}

.plans-list + .section__header {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.plans-list + .section__header h2 {
  margin-bottom: 0.35rem;
}

.plans-comparison-heading {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.cnpj-advantages-section {
  padding-bottom: 2rem;
}

.cnpj-advantages-section + .section {
  padding-top: 2rem;
}

.cnpj-opening-cta {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.cnpj-opening-cta__layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.cnpj-opening-cta__media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  overflow: visible;
  justify-self: center;
}

.cnpj-opening-cta__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(29, 111, 224, 0.55);
  box-shadow: var(--shadow-md);
}

.cnpj-opening-cta__dot {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.cnpj-opening-cta__dot--one {
  top: 8%;
  left: -9%;
  width: 4rem;
  height: 4rem;
  background: rgba(81, 199, 247, 0.72);
}

.cnpj-opening-cta__dot--two {
  right: -10%;
  bottom: 16%;
  width: 5.25rem;
  height: 5.25rem;
  background: rgba(0, 125, 164, 0.88);
}

.cnpj-opening-cta__dot--three {
  right: 7%;
  top: -5%;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(29, 111, 224, 0.4);
  background: transparent;
}

.cnpj-opening-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 36rem;
}

.cnpj-opening-cta__content .eyebrow {
  margin-bottom: 0.65rem;
}

.cnpj-opening-cta__content h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--text-brand);
}

.cnpj-opening-cta__content > p:not(.eyebrow) {
  margin: 0 0 1.35rem;
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}

@media (max-width: 820px) {
  .cnpj-opening-cta__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cnpj-opening-cta__media {
    max-width: 240px;
  }

  .cnpj-opening-cta__content {
    align-items: center;
    text-align: center;
  }
}

.section:has(.plans-list):not(:has(.lp-compare-wrap)) {
  padding-bottom: 2.5rem;
}

.section:has(.lp-compare-wrap):not(:has(.plans-list)) {
  padding-top: 2.5rem;
}

.section:has(.lp-compare-wrap):not(:has(.plans-list)) > .container > .section__header {
  margin-bottom: 0.75rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--blue-500);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card--featured {
  border-color: var(--text-brand);
  box-shadow: 0 20px 48px rgba(34, 189, 255, 0.18);
}

.plan-card--featured:hover {
  box-shadow: 0 24px 56px rgba(34, 189, 255, 0.22);
}

.plan-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-gradient-d);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.plan-card__name {
  margin: 0.5rem 0 0.35rem;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-brand);
}

.plan-card__desc {
  margin: 0 0 1.25rem;
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.plan-card__price {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.plan-card__from {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-brand);
}

.plan-card__deal {
  margin: 0 0 0.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--gray-600);
}

.plan-card__was {
  text-decoration: line-through;
  color: var(--gray-500);
  font-weight: 600;
}

.plan-card__value {
  margin: 0;
  font-size: var(--text-price);
  font-weight: 800;
  line-height: 1;
  color: var(--text-brand);
  letter-spacing: -0.02em;
}

.plan-card__value span {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-brand);
}

.plan-card__value--inline {
  margin-bottom: 1rem;
}

.plan-card__features {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.plan-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.plan-card__features li + li {
  margin-top: 0.65rem;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--brand-gradient-d);
  transform: rotate(45deg);
}

.plan-card--enterprise {
  margin-top: 2rem;
  padding: 0;
  border: none;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.plan-card--enterprise:hover {
  transform: none;
}

.plan-card--enterprise__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.25rem;
}

.plan-card--enterprise h3 {
  margin: 0 0 0.75rem;
  font-size: var(--text-xl);
  color: var(--white);
}

.plan-card--enterprise p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.plan-card--enterprise .eyebrow {
  color: var(--text-on-gradient);
}

.plan-card--enterprise__cta {
  flex-shrink: 0;
  text-align: center;
}

.plan-card--enterprise .plan-card__value {
  color: var(--white);
}

.plan-card--enterprise .plan-card__value span {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .lp-hero__layout {
    grid-template-columns: 1fr;
  }

  .lp-hero--with-media .lp-hero__media {
    position: static;
    transform: none;
    width: 100%;
    max-width: 28rem;
    margin: 2rem auto 0;
    pointer-events: auto;
  }

  .lp-hero--with-media .lp-hero__media::before {
    left: -2rem;
    bottom: 0.5rem;
    width: 180px;
    height: 180px;
  }

  .lp-hero--with-media .lp-hero__image {
    width: 100%;
    max-width: none;
    border-radius: var(--radius-lg);
  }

  .lp-hero--abrir-empresa {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .lp-hero--abrir-empresa .lp-hero__bg-photo {
    background-position: 72% center;
    opacity: 0.24;
  }

  .lp-hero--abrir-empresa .lp-hero__bg-overlay {
    background:
      linear-gradient(
        180deg,
        var(--blue-50) 0%,
        rgba(243, 252, 255, 0.94) 42%,
        rgba(255, 255, 255, 0.72) 100%
      ),
      radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.1), transparent 26%);
  }

  .lp-hero--abrir-empresa .lp-hero__media {
    position: static;
    display: block;
    left: auto;
    width: auto;
    height: auto;
    max-width: 24rem;
    margin: 1.75rem auto 0;
  }

  .lp-hero--abrir-empresa .lp-hero__badge-card {
    top: auto;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    width: min(17rem, 88%);
    padding: 0.65rem 1.1rem 0.6rem;
  }

  .lp-hero--abrir-empresa .lp-hero__circle--1 {
    width: 4rem;
    height: 4rem;
  }

  .lp-hero--abrir-empresa .lp-hero__circle--6 {
    width: 5.5rem;
    height: 5.5rem;
  }

  .lp-hero--abrir-empresa .lp-hero__circle--9 {
    width: 4.5rem;
    height: 4.5rem;
  }

  .lp-hero--abrir-empresa .lp-hero__circle--12 {
    width: 2.75rem;
    height: 2.75rem;
  }

  .lp-hero--abrir-empresa .lp-hero__circle--14 {
    width: 3rem;
    height: 3rem;
  }

  .lp-hero--abrir-empresa .lp-hero__image {
    width: 100%;
    height: auto;
    max-height: 28rem;
    object-position: center bottom;
    border-radius: 0;
  }

  .lp-hero--contabilidade .lp-hero__media {
    max-width: 32rem;
  }

  .lp-hero--contabilidade .lp-hero__image {
    max-height: 28rem;
  }

  .lp-hero--contabilidade .lp-hero__badge-card {
    width: min(20rem, 92%);
  }

  .lp-highlights__grid {
    grid-template-columns: 1fr;
  }

  .lp-highlights {
    margin-top: 0;
    padding-top: 2rem;
  }

  .lp-hero--abrir-empresa + .lp-highlights {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lp-hero--contabilidade + .lp-highlights {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lp-highlights--overlap {
    padding-top: 0.75rem;
  }

  .lp-highlights--overlap .lp-highlights__grid {
    transform: translateY(22%);
  }

  .lp-highlights--overlap + .plan-finder {
    padding-top: 9rem;
  }

  .lp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-stats__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-compare-wrap {
    --compare-label-col: 34%;
  }

  .lp-compare {
    overflow: visible;
  }

  .lp-compare__plans-head .lp-compare__plan-name {
    padding: 0.5rem 0.35rem;
    font-size: var(--text-xs);
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .lp-compare__corner {
    padding: 0.75rem 0.45rem;
    font-size: var(--text-xs);
    white-space: normal;
  }

  .lp-compare__table th,
  .lp-compare__table td {
    padding: 0.65rem 0.4rem;
    font-size: var(--text-xs);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .lp-compare__row-label {
    min-width: 0;
  }

  .lp-compare__label-wrap {
    display: block;
    white-space: normal;
  }

  .lp-compare__detail {
    font-size: var(--text-xs);
    line-height: 1.35;
  }

  .plans-grid,
  .plans-grid--2,
  [data-plans-segment-active="comercio"] .plans-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .plan-savings-layout {
    grid-template-columns: 1fr;
  }

  .plan-savings-card {
    max-width: 26rem;
    margin-inline: auto;
  }

  .plan-card--enterprise__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
  }

  .plan-card--enterprise__cta {
    width: 100%;
  }

  .plan-card--enterprise__cta .btn {
    width: 100%;
  }
}

/* Plan finder (planos) */
.plan-finder {
  padding: 4.5rem 0;
}

.lp-highlights--overlap + .plan-finder {
  padding-top: 6.75rem;
  overflow: visible;
}

.plan-finder__layout {
  display: grid;
  grid-template-columns: minmax(0, 19.5rem) minmax(0, 24rem);
  gap: 1.25rem;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.plan-finder__layout--ready {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(0, 18.5rem) repeat(2, minmax(0, 24.5rem));
  gap: 1.25rem;
}

.plan-finder__layout--ready .plan-finder__card,
.plan-finder__layout--ready .plan-savings-layout--finder:not([hidden]) {
  width: 100%;
  min-width: 0;
}

.plan-finder__layout--ready .plan-savings-layout--finder:not([hidden]) {
  display: block;
}

.plan-savings-layout--finder .plan-savings-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem 0.85rem;
  border-top: 1px solid var(--gray-100);
}

.plan-savings-card__more {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--btn-brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.plan-savings-card__more:hover,
.plan-savings-card__more:focus-visible {
  color: var(--btn-brand-hover);
}

.plan-savings-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--btn-brand);
}

.plan-savings-card__link:hover {
  text-decoration: underline;
}

.plan-finder__intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.plan-finder__intro .eyebrow {
  margin-bottom: 0.4rem;
  font-size: var(--text-sm);
}

.plan-finder__lead {
  margin: 0 0 0.75rem;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--gray-700);
}

.plan-finder__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.plan-finder__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  line-height: 1.4;
  color: var(--text-brand);
}

.plan-finder__perks li::before {
  content: "";
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231558b8' stroke-width='2.5'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}

.plan-finder__card {
  width: 100%;
  max-width: none;
  margin-left: 0;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.22);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.plan-finder__tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem 0;
  background: var(--gray-100);
  border-bottom: 1px solid rgba(34, 189, 255, 0.08);
}

.plan-finder__tab {
  flex: 1;
  margin: 0;
  padding: 0.6rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 10px 10px 0 0;
  background: transparent;
  color: var(--text-brand);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-finder__tab:hover {
  color: var(--text-brand);
  background: rgba(255, 255, 255, 0.55);
}

.plan-finder__tab--active {
  background: var(--white);
  color: var(--text-brand);
  border-color: rgba(34, 189, 255, 0.12);
  border-bottom-color: var(--white);
  box-shadow: 0 -2px 12px rgba(34, 189, 255, 0.06);
}

.plan-finder__panel {
  padding: 0.85rem 0.85rem 0.75rem;
}

.plan-finder__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-finder__step {
  padding: 0.65rem 0.7rem 0.7rem;
  border-radius: 10px;
  background: var(--blue-50);
  border: 1px solid rgba(34, 189, 255, 0.08);
}

.plan-finder__step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.plan-finder__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--brand-gradient-d);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
}

.plan-finder__question {
  display: block;
  margin: 0.1rem 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.plan-finder__field {
  padding-left: 1.95rem;
}

.plan-finder__select {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 1px solid rgba(34, 189, 255, 0.16);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--text-brand);
  font-size: var(--text-sm);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231558b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-finder__select:focus {
  outline: none;
  border-color: var(--text-brand);
  box-shadow: 0 0 0 3px rgba(34, 189, 255, 0.2);
}

.plan-finder__select:invalid {
  color: var(--text-brand);
}

.plan-finder__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.95rem;
  padding: 0.25rem;
  border: 1px solid rgba(34, 189, 255, 0.14);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-finder__stepper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.plan-finder__stepper-btn:hover:not(:disabled) {
  background: var(--blue-100);
  color: var(--text-brand);
}

.plan-finder__stepper-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.plan-finder__stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.plan-finder__stepper-value {
  min-width: 2.25rem;
  padding: 0 0.2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: var(--text-brand);
}

.plan-finder__result {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.plan-finder__result.is-open {
  max-height: 320px;
  margin-top: 0.85rem;
  opacity: 1;
  pointer-events: auto;
}

.plan-finder__result-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(11, 45, 92, 0.18);
  position: relative;
  overflow: hidden;
}

.plan-finder__result-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(0, 212, 224, 0.25), transparent 55%);
  pointer-events: none;
}

.plan-finder__result-main,
.plan-finder__result-actions {
  position: relative;
  z-index: 1;
}

.plan-finder__result-label {
  margin: 0 0 0.35rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.plan-finder__result-name {
  margin: 0 0 0.2rem;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: var(--white);
}

.plan-finder__result-price {
  margin: 0 0 0.45rem;
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  color: rgba(255, 255, 255, 0.92);
}

.plan-finder__was {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.plan-finder__result-price strong {
  font-size: var(--text-lg);
  color: var(--text-on-gradient);
}

.plan-finder__result-desc {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: rgba(255, 255, 255, 0.82);
}

.plan-finder__result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.plan-finder__result-actions .btn {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: var(--text-sm);
}

.plan-finder__result-link {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.plan-finder__result-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.plan-card--recommended {
  outline: 2px solid #00d4e0;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2), var(--shadow-md);
}

@media (max-width: 960px) {
  .plan-finder__layout,
  .plan-finder__layout--ready {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .plan-finder__card {
    max-width: none;
    margin-left: 0;
  }

  .plan-savings-layout--finder {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

  .plan-finder__layout--ready .plan-savings-layout--finder:not([hidden]) {
    display: grid;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .plan-finder__tabs {
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 0.75rem;
  }

  .plan-finder__tab {
    border-radius: var(--radius-sm);
    white-space: normal;
  }

  .plan-finder__tab--active {
    border-bottom-color: rgba(34, 189, 255, 0.12);
  }

  .plan-finder__field {
    padding-left: 0;
  }

  .plan-finder__stepper {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .lp-stats__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .features-carousel {
    align-items: center;
  }

  .features-carousel__btn {
    margin-top: 0;
  }
}

/* Service flow (solicitar abertura / futuros funis) */
.service-flow-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 42%);
}

.service-flow-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 189, 255, 0.08);
}

.service-flow-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.service-flow-header__back {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.service-flow-header__back:hover {
  color: var(--text-brand);
}

.service-flow {
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.service-flow__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.service-flow__intro h1 {
  margin: 0 0 0.65rem;
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.service-flow__intro p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
}

.service-flow__progress {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.service-flow__progress-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  color: var(--text-brand);
}

.service-flow__progress-num {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-flow__progress-label {
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: var(--leading-snug);
}

.service-flow__progress-item.is-active,
.service-flow__progress-item.is-done {
  color: var(--text-brand);
}

.service-flow__progress-item.is-active .service-flow__progress-num,
.service-flow__progress-item.is-done .service-flow__progress-num {
  border-color: var(--text-brand);
  background: var(--blue-600);
  color: var(--white);
}

.service-flow__progress-item.is-done .service-flow__progress-num {
  background: var(--blue-700);
  border-color: var(--text-brand);
}

.service-flow__form {
  position: relative;
}

.service-flow__panel {
  animation: service-flow-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-flow__panel[hidden] {
  display: none;
}

@keyframes service-flow-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-flow__card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-flow__card--success {
  text-align: center;
}

.service-flow__title {
  margin: 0 0 0.35rem;
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  color: var(--text-brand);
}

.service-flow__lead {
  margin: 0 0 1.35rem;
  color: var(--text-brand);
  font-size: var(--text-base);
}

.service-flow__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-flow__actions--split {
  justify-content: space-between;
}

.service-flow__actions--split .btn--primary {
  flex: 1;
}

.service-flow__summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1px solid rgba(34, 189, 255, 0.08);
}

.service-flow__summary div + div {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(34, 189, 255, 0.08);
}

.service-flow__summary dt {
  margin: 0 0 0.15rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-brand);
}

.service-flow__summary dd {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-brand);
}

.service-flow__success-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(34, 189, 255, 0.12);
  color: var(--text-brand);
  font-size: var(--text-xl);
  font-weight: 800;
}

.service-flow__card .form-feedback {
  margin-top: 1rem;
}

.form-row__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.plan-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.65rem;
}

.plan-picker__card {
  position: relative;
  display: block;
  cursor: pointer;
}

.plan-picker__card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.plan-picker__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 100%;
}

.plan-picker__card:hover .plan-picker__content {
  border-color: var(--blue-600);
}

.plan-picker__card input:checked + .plan-picker__content {
  border-color: var(--btn-brand);
  background: rgba(34, 189, 255, 0.06);
  box-shadow: 0 0 0 1px var(--btn-brand);
}

.plan-picker__card input:focus-visible + .plan-picker__content {
  outline: 2px solid var(--btn-brand);
  outline-offset: 2px;
}

.plan-picker__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-brand);
  line-height: 1.25;
}

.plan-picker__was {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.plan-picker__price {
  font-size: var(--text-sm);
  color: var(--text-brand);
  line-height: 1.2;
}

.plan-picker__price strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.plan-picker__period {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}

.plan-picker__hint {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.35;
}

.plan-picker__disclaimer {
  margin: 0.35rem 0 0;
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.45;
}

.plan-picker__card--featured .plan-picker__content::before {
  content: "Popular";
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-700);
  margin-bottom: 0.1rem;
}

.plan-picker__card--unsure .plan-picker__content {
  justify-content: center;
}

@media (max-width: 520px) {
  .plan-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .service-flow {
    padding-top: 1.75rem;
  }

  .service-flow__progress-label {
    font-size: var(--text-xs);
  }

  .service-flow__actions--split {
    flex-direction: column-reverse;
  }

  .service-flow__actions--split .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-flow__panel {
    animation: none;
  }
}

/* Visitor lead modal (entrada no site) */
.visitor-lead-modal {
  width: min(100% - 1.5rem, 560px);
  max-height: calc(100vh - 1.5rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(34, 189, 255, 0.06),
    0 32px 64px rgba(7, 26, 51, 0.22);
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    overlay 0.28s allow-discrete,
    display 0.28s allow-discrete;
}

.visitor-lead-modal.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.visitor-lead-modal.is-closing {
  opacity: 0;
  transform: scale(0.98) translateY(6px);
}

@starting-style {
  .visitor-lead-modal.is-active {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
}

.visitor-lead-modal::backdrop {
  background: rgba(7, 26, 51, 0);
  backdrop-filter: blur(0);
  transition:
    background-color 0.28s ease,
    backdrop-filter 0.28s ease,
    overlay 0.28s allow-discrete,
    display 0.28s allow-discrete;
}

.visitor-lead-modal.is-active::backdrop {
  background: rgba(7, 26, 51, 0.58);
  backdrop-filter: blur(4px);
}

@starting-style {
  .visitor-lead-modal.is-active::backdrop {
    background: rgba(7, 26, 51, 0);
    backdrop-filter: blur(0);
  }
}

.visitor-lead-modal__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 1.5rem);
}

.visitor-lead-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(34, 189, 255, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-brand);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.visitor-lead-modal__close svg {
  display: block;
  flex-shrink: 0;
}

.visitor-lead-modal__close:hover,
.visitor-lead-modal__close:focus-visible {
  background: var(--blue-50);
  border-color: rgba(34, 189, 255, 0.28);
}

.visitor-lead-modal__header {
  position: relative;
  padding: 1.75rem 1.75rem 1.35rem;
  background: var(--service-hero-bg);
  color: var(--text-brand);
  text-align: center;
}

.visitor-lead-modal__header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 189, 255, 0.14), transparent);
}

.visitor-lead-modal__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--text-brand);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-lead-modal__title {
  margin: 0 auto 0.5rem;
  max-width: 24rem;
  padding-right: 0;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.visitor-lead-modal__intro {
  margin: 0 auto 1rem;
  max-width: 28rem;
  color: var(--text-brand);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.visitor-lead-modal__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visitor-lead-modal__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.14);
  color: var(--text-brand);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.visitor-lead-modal__trust svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.visitor-lead-modal__body {
  padding: 1.35rem 1.75rem 1.65rem;
  background: var(--white);
  overflow-y: auto;
}

.visitor-lead-modal__fields {
  display: grid;
  gap: 0.85rem;
}

.visitor-lead-modal__row--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.visitor-lead-modal__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.visitor-lead-modal__field input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--text-brand);
  font: inherit;
  font-size: var(--text-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.visitor-lead-modal__field input::placeholder {
  color: var(--text-brand);
}

.visitor-lead-modal__field input:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 189, 255, 0.14);
}

.visitor-lead-modal__contact {
  margin: 1.15rem 0 0;
  padding: 0;
  border: none;
}

.visitor-lead-modal__contact legend {
  margin-bottom: 0.65rem;
  padding: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.visitor-lead-modal__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.visitor-lead-modal__choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.visitor-lead-modal__choice svg {
  flex-shrink: 0;
}

.visitor-lead-modal__choice--whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 190, 87, 0.28);
}

.visitor-lead-modal__choice--whatsapp:hover,
.visitor-lead-modal__choice--whatsapp:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(30, 190, 87, 0.34);
}

.visitor-lead-modal__choice--call {
  background: var(--white);
  border-color: rgba(34, 189, 255, 0.18);
  color: var(--blue-800);
  box-shadow: var(--shadow-sm);
}

.visitor-lead-modal__choice--call:hover,
.visitor-lead-modal__choice--call:focus-visible {
  border-color: rgba(34, 189, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.visitor-lead-modal__layout.is-success .visitor-lead-modal__header {
  display: none;
}

.visitor-lead-modal__layout.is-success .visitor-lead-modal__close {
  top: 0.85rem;
  right: 0.85rem;
  border-color: rgba(34, 189, 255, 0.12);
  background: var(--blue-50);
  color: var(--text-brand);
}

.visitor-lead-modal__success {
  padding: 2.5rem 0.5rem 0.5rem;
  text-align: center;
}

.visitor-lead-modal__success-title {
  margin: 0 0 0.35rem;
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  color: var(--text-brand);
}

.visitor-lead-modal__success-text {
  margin: 0 0 1.15rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.visitor-lead-modal__success-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(118, 214, 255, 0.18), rgba(34, 189, 255, 0.22));
  color: var(--text-brand);
  font-size: var(--text-lg);
  font-weight: 800;
}

.visitor-lead-modal__success[hidden],
.visitor-lead-modal__form[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .visitor-lead-modal {
    width: min(100% - 1rem, 560px);
  }

  .visitor-lead-modal__header {
    padding: 1.5rem 1.25rem 1.15rem;
  }

  .visitor-lead-modal__body {
    padding: 1.15rem 1.25rem 1.35rem;
  }

  .visitor-lead-modal__row--split,
  .visitor-lead-modal__choices {
    grid-template-columns: 1fr;
  }

  .visitor-lead-modal__trust {
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visitor-lead-modal {
    transition: none;
  }
}

/* Blog */
.blog-layout {
  --text-brand: var(--gray-900);
  --brand-blue-start: #2f86ff;
  --brand-blue-end: #1d6fe0;
  --brand-gradient-h: linear-gradient(90deg, #0b2d5c 0%, #1558b8 100%);
  --brand-gradient-d: linear-gradient(135deg, #1d6fe0 0%, #2f86ff 100%);
  --blue-950: #071a33;
  --text-strong: #051528;
  --text-list: #4d5f73;
  --blue-900: #0b2d5c;
  --blue-800: #0f3f86;
  --blue-700: #1558b8;
  --blue-600: #1d6fe0;
  --blue-500: #2f86ff;
  --blue-400: #5ca3ff;
  --blue-100: #e8f2ff;
  --blue-50: #f4f8ff;
  --blog-surface: var(--blue-50);
  --blog-surface-alt: #eef4ff;
  --blog-header-bg: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  --blog-theme-abertura-start: var(--blue-900);
  --blog-theme-abertura-end: var(--blue-600);
  --blog-theme-mei-start: var(--blue-800);
  --blog-theme-mei-end: var(--blue-500);
  --blog-theme-tributacao-start: var(--blue-700);
  --blog-theme-tributacao-end: var(--blue-400);
  --blog-theme-gestao-start: var(--blue-950);
  --blog-theme-gestao-end: var(--blue-700);
  --blog-theme-abertura-soft: rgba(29, 111, 224, 0.1);
  --blog-theme-mei-soft: rgba(21, 88, 184, 0.1);
  --blog-theme-tributacao-soft: rgba(47, 134, 255, 0.12);
  --blog-theme-gestao-soft: rgba(11, 45, 92, 0.08);
  --blog-theme-abertura-text: var(--blue-700);
  --blog-theme-mei-text: var(--blue-800);
  --blog-theme-tributacao-text: var(--blue-600);
  --blog-theme-gestao-text: var(--blue-900);
  --blog-theme-simples-start: var(--blue-700);
  --blog-theme-simples-end: var(--blue-400);
  --blog-theme-simples-soft: rgba(47, 134, 255, 0.12);
  --blog-theme-simples-text: var(--blue-600);
  --blog-theme-conteudos-start: var(--blue-950);
  --blog-theme-conteudos-end: var(--blue-700);
  --blog-theme-conteudos-soft: rgba(11, 45, 92, 0.08);
  --blog-theme-conteudos-text: var(--blue-900);
  --blog-theme-empreendedorismo-start: var(--blue-800);
  --blog-theme-empreendedorismo-end: var(--blue-500);
  --blog-theme-empreendedorismo-soft: rgba(21, 88, 184, 0.1);
  --blog-theme-empreendedorismo-text: var(--blue-800);
  --blog-theme-clt-start: var(--blue-900);
  --blog-theme-clt-end: var(--blue-600);
  --blog-theme-clt-soft: rgba(29, 111, 224, 0.1);
  --blog-theme-clt-text: var(--blue-700);
  --blog-theme-cnae-start: var(--blue-800);
  --blog-theme-cnae-end: var(--blue-500);
  --blog-theme-cnae-soft: rgba(21, 88, 184, 0.1);
  --blog-theme-cnae-text: var(--blue-800);
  --blog-theme-materiais-start: var(--blue-950);
  --blog-theme-materiais-end: var(--blue-600);
  --blog-theme-materiais-soft: rgba(11, 45, 92, 0.08);
  --blog-theme-materiais-text: var(--blue-900);

  background: linear-gradient(180deg, var(--blog-surface) 0%, var(--blog-surface-alt) 100%);
}

.blog-header {
  position: static;
  z-index: 1;
  background: var(--blog-header-bg);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.blog-chrome {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--blog-header-bg);
  box-shadow: 0 12px 32px rgba(15, 63, 134, 0.16);
}

html:has(body.blog-layout[data-blog-slug]) {
  overflow-x: clip;
}

body.blog-layout[data-blog-slug] {
  overflow-x: clip;
}

body.blog-layout[data-blog-slug] .blog-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

body.blog-layout[data-blog-slug] .blog-article {
  padding-top: calc(var(--blog-chrome-height, 11rem) + 2.75rem);
}

.blog-chrome .blog-header {
  border-bottom: 0;
}

.reading-progress {
  height: 7px;
  background: rgba(21, 88, 184, 0.12);
  pointer-events: none;
}

.reading-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-700) 0%, #22d3ee 100%);
  transition: width 0.12s ease-out;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
}

.blog-header--light {
  background: rgba(255, 255, 255, 0.98);
  color: var(--gray-900);
  border-bottom: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: 0 10px 30px rgba(15, 63, 134, 0.04);
  backdrop-filter: blur(14px);
}

.blog-header--light .blog-header__brand {
  color: var(--blue-900);
}

.blog-header--light .logo__mark {
  width: 2.25rem;
  color: var(--blue-600);
}

.blog-header--light .blog-header__brand-text span {
  color: var(--blue-500);
}

.blog-header--light .blog-header__toggle {
  background: var(--blue-50);
  color: var(--blue-800);
}

.blog-header--light .blog-header__categories a {
  color: var(--gray-700);
}

.blog-header--light .blog-header__categories a:hover,
.blog-header--light .blog-header__categories a[aria-current="page"] {
  background: var(--blue-50);
  color: var(--blue-800);
}

.blog-header--light .blog-header__topic-trigger {
  color: var(--gray-700);
}

.blog-header--light .blog-header__topic-trigger:hover,
.blog-header--light .blog-header__topic.is-open .blog-header__topic-trigger {
  background: var(--blue-50);
  color: var(--blue-800);
}

.blog-header--light .blog-header__site-link {
  color: var(--blue-700);
}

.blog-header--light .blog-header__site-link:hover {
  color: var(--blue-900);
}

.blog-header--light .blog-header__bar {
  border-bottom: 0;
}

.blog-header__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.blog-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.blog-header__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
}

.blog-header__brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.blog-header__brand-text strong {
  font-size: var(--text-sm);
}

.blog-header__brand-text span {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.blog-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.blog-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.blog-header__primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.blog-header__primary a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-header__primary a:hover,
.blog-header__primary a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.blog-header__subnav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.08);
}

.blog-header__topics {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  margin-left: auto;
  flex: none;
  min-width: 0;
}

.blog-header__topic {
  position: relative;
}

.blog-header__topic-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-header__topic-trigger:hover,
.blog-header__topic.is-open .blog-header__topic-trigger {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.blog-header__topic-icon {
  width: 0.8rem;
  height: 0.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.blog-header__topic.is-open .blog-header__topic-icon {
  transform: rotate(180deg);
}

.blog-header__topic-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 30;
  min-width: 240px;
  max-width: min(320px, 90vw);
  max-height: min(360px, 60vh);
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  overflow: auto;
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 901px) {
  .blog-header__topic:hover .blog-header__topic-menu,
  .blog-header__topic:focus-within .blog-header__topic-menu,
  .blog-header__topic.is-open .blog-header__topic-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.blog-header__topic-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--gray-800);
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
}

.blog-header__topic-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

.blog-header__themes {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-header__themes::-webkit-scrollbar {
  display: none;
}

.blog-header__themes a {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-header__themes a:hover,
.blog-header__themes a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.blog-header__themes-mobile {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-header__categories {
  display: none;
}

.blog-header__categories a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-header__categories a:hover,
.blog-header__categories a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.blog-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.blog-header__materiais {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-header__materiais:hover,
.blog-header__materiais[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.blog-header--light .blog-header__materiais {
  color: var(--gray-700);
}

.blog-header--light .blog-header__materiais:hover,
.blog-header--light .blog-header__materiais[aria-current="page"] {
  background: var(--blue-50);
  color: var(--blue-800);
}

.blog-header__site-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}

.blog-header__site-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-header__site-link:hover {
  color: var(--white);
}

.blog-header .btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  font-size: var(--text-xs);
}

.blog-header .btn--light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.blog-header__tagline {
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-sm);
}

.blog-header__tagline p {
  margin: 0;
}

body.blog-nav-is-open {
  overflow: hidden;
}

.blog-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  border: 0;
  background: rgba(11, 45, 92, 0.5);
  cursor: pointer;
}

.blog-inst-hero {
  padding: 2.75rem 0 2rem;
  background: var(--white);
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-inst-hero__inner {
  max-width: 42rem;
}

.blog-inst-hero h1 {
  margin: 0 0 0.85rem;
  color: var(--blue-900);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
}

.blog-inst-hero p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.blog-home {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.blog-home__sidebar {
  min-width: 0;
}

.blog-home__content {
  min-width: 0;
}

.blog-topic-index {
  position: sticky;
  top: calc(4.25rem + 1.5rem);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
}

.blog-topic-index__title {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-topic-index__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-topic-index__list li {
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-topic-index__list li:last-child {
  border-bottom: 0;
}

.blog-topic-index__list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-snug);
}

.blog-topic-index__list a:hover {
  color: var(--blue-800);
}

.blog-topic-index__section + .blog-topic-index__section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-topic-index__note {
  display: block;
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--leading-snug);
}

.blog-topic-index__note:hover {
  color: var(--blue-800);
}

.blog-home__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-topic-block {
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue-600);
}

.blog-topic-block--abertura {
  border-left-color: var(--blue-600);
}

.blog-topic-block--mei {
  border-left-color: var(--blue-700);
}

.blog-topic-block--tributacao {
  border-left-color: var(--blue-500);
}

.blog-topic-block--gestao {
  border-left-color: var(--blue-900);
}

.blog-topic-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-topic-block__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-500);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-topic-block__head h2 {
  margin: 0 0 0.45rem;
  color: var(--blue-900);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

.blog-topic-block__head p {
  margin: 0;
  max-width: 36rem;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-topic-block__link {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-topic-block__link:hover {
  background: rgba(29, 111, 224, 0.14);
}

.blog-topic-block__empty {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-topic-list__item {
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-topic-list__item:last-child {
  border-bottom: 0;
}

.blog-topic-list__link {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  color: inherit;
  transition: background 0.2s ease;
}

.blog-topic-list__link:hover {
  color: var(--blue-800);
}

.blog-topic-list__link time {
  color: var(--gray-500);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-topic-list__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-topic-list__text strong {
  color: var(--blue-900);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: var(--leading-snug);
}

.blog-topic-list__text span {
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.blog-page {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 3.5rem;
}

.blog-page__sidebar .blog-topic-index {
  position: sticky;
  top: calc(4.25rem + 1.5rem);
}

.blog-page__sidebar .blog-topic-index__list a[aria-current="page"] {
  color: var(--blue-800);
  font-weight: 700;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 4rem;
}

.blog-article-layout .blog-article {
  padding: 0;
}

.blog-article-layout .blog-article__header,
.blog-article-layout .blog-article__content,
.blog-article-layout .blog-related {
  max-width: none;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr min(42rem, 100%) 1fr;
  column-gap: 2rem;
  align-items: start;
  width: min(100% - 2rem, 1140px);
  max-width: 100%;
  margin-inline: auto;
  padding: 0 1rem;
}

.article-layout__main {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  max-width: 42rem;
  justify-self: center;
}

.article-toc {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: min(240px, 100%);
  max-width: 100%;
  min-width: 0;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--blog-chrome-height, 11rem) + 3.5rem);
  z-index: 10;
  overflow: visible;
}

.article-toc__title {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.4;
}

.article-toc__nav {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  overflow: visible;
  background: var(--white);
}

.article-toc__link {
  display: block;
  padding: 0.8rem 0.95rem 0.8rem 1.05rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.8125rem;
  line-height: 1.45;
  text-decoration: none;
  box-shadow: inset 4px 0 0 transparent;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.article-toc__link:first-child {
  border-top: 0;
}

.article-toc__link:hover {
  color: var(--blue-900);
  background: #f8fbff;
}

.article-toc__link.is-active {
  color: var(--blue-900);
  font-weight: 700;
  background: linear-gradient(90deg, #e8f4ff 0%, #f4f8ff 100%);
  box-shadow: inset 4px 0 0 var(--blue-700);
}

.article-layout .blog-article__header,
.article-layout .blog-article__content,
.article-layout .blog-service-cta,
.article-layout .blog-share,
.article-layout .blog-comments,
.article-layout .blog-related {
  max-width: none;
  margin-inline: 0;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(145deg, var(--blue-950) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
  color: var(--white);
}

.blog-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 134, 255, 0.3), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(92, 163, 255, 0.1), transparent 35%);
  pointer-events: none;
}

.blog-hero__inner {
  position: relative;
  max-width: 42rem;
}

.blog-hero h1 {
  margin: 0 0 1rem;
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--white);
}

.blog-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 111, 224, 0.22);
  box-shadow: 0 18px 40px rgba(15, 63, 134, 0.12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  overflow: hidden;
}

.blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card__link:hover .blog-card__image {
  transform: scale(1.035);
}

.blog-card__media--alt {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.blog-card__media--warm {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.5rem;
}

.blog-card__date {
  color: var(--blue-500);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
}

.blog-card p {
  flex: 1;
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-card__cta {
  margin-top: 0.35rem;
  color: var(--blue-600);
  font-size: var(--text-sm);
  font-weight: 700;
}

.blog-card:hover .blog-card__cta {
  text-decoration: underline;
}

.blog-article {
  padding: 3rem 0 4rem;
}

.blog-article__header {
  max-width: none;
  margin-bottom: 2.5rem;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-article__category {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

a.blog-article__category:hover {
  background: rgba(29, 111, 224, 0.16);
}

.blog-article__date,
.blog-article__read {
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-article h1 {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
}

.blog-article__lead {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.blog-article__content {
  max-width: none;
}

.blog-article__content h2 {
  scroll-margin-top: calc(var(--blog-chrome-height, 8rem) + 1rem);
  margin: 2rem 0 0.85rem;
  color: var(--blue-900);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

.blog-article__content p {
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-list);
}

.blog-article__content li {
  color: var(--text-list);
  line-height: var(--leading-relaxed);
}

.blog-article__content li + li {
  margin-top: 0.45rem;
}

.blog-article__content li strong,
.blog-article__content li b {
  font-weight: 700;
  color: inherit;
}

.blog-article__content > p {
  margin: 0 0 1rem;
}

.blog-article__content strong,
.blog-article__content b {
  font-weight: 700;
  color: var(--text-strong);
}

.blog-article__content a {
  color: var(--blue-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article__content a:hover {
  color: var(--blue-900);
}

.blog-article__content table {
  width: 100%;
  margin: 0.75rem 0;
  border-collapse: collapse;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.blog-article__content th,
.blog-article__content td {
  border: 1px solid var(--gray-200);
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.blog-article__content th {
  background: var(--blue-50);
  font-weight: 700;
  color: var(--blue-900);
}

.blog-article__content tr:nth-child(even) td {
  background: rgba(244, 248, 255, 0.55);
}

.blog-article__content .table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  -webkit-overflow-scrolling: touch;
}

.blog-article__content .table-wrap table {
  margin: 0;
}

.blog-article__content .table-wrap--compact th,
.blog-article__content .table-wrap--compact td {
  padding: 0.45rem 0.65rem;
  font-size: var(--text-xs);
}

.blog-article__content .table-wrap--plain tr:nth-child(even) td {
  background: transparent;
}

.blog-article__content .table-wrap--wide {
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
}

@media (min-width: 768px) {
  .blog-article__content .table-wrap--wide {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
}

.blog-article__cover {
  margin: 0 0 1.35rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-article__cover img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-article__content img {
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.blog-block {
  margin: 1.75rem 0;
}

.blog-block--figure {
  margin: 1.75rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--blue-50);
  border: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-block--figure img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-block--figure figcaption,
.blog-block__caption {
  padding: 0.75rem 1rem;
  color: var(--gray-500);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.blog-block--wide {
  width: min(100% + 4rem, calc(100vw - 2rem));
  margin-inline: 50%;
  transform: translateX(-50%);
}

.blog-block--callout {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.blog-block--callout .blog-block__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}

.blog-block--callout p:last-child {
  margin: 0;
}

.blog-block--tip {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.blog-block--info {
  background: var(--blue-50);
  border-color: rgba(21, 88, 184, 0.14);
  color: var(--blue-900);
}

.blog-block--warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.blog-block--details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.blog-block--details summary {
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-900);
  list-style: none;
}

.blog-block--details summary::-webkit-details-marker {
  display: none;
}

.blog-block--details summary::after {
  content: "+";
  float: right;
  color: var(--blue-600);
  font-size: 1.1rem;
}

.blog-block--details[open] summary::after {
  content: "−";
}

.blog-block__details-body {
  padding: 0 1.1rem 1rem;
  border-top: 1px solid var(--gray-200);
}

.blog-block__details-body p {
  margin: 0.85rem 0 0;
}

.blog-block-group--accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.75rem 0;
}

.blog-block-group--accordion .blog-block--details {
  margin: 0;
}

.blog-block--faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.blog-block--faq + .blog-block--faq {
  margin-top: 0.5rem;
}

.blog-block__faq-item {
  border: 1px solid rgba(21, 88, 184, 0.28);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(21, 88, 184, 0.08);
}

.blog-block__faq-question {
  margin: 0;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.45;
  background: linear-gradient(135deg, #f4f8ff 0%, #eef4ff 100%);
  border-bottom: 1px solid rgba(21, 88, 184, 0.2);
}

.blog-block__faq-answer {
  padding: 0.85rem 1.1rem 1rem;
  background: #fafcff;
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}

.blog-block__faq-answer p {
  margin: 0;
}

.blog-block__faq-answer p + p {
  margin-top: 0.75rem;
}

.blog-block--video .blog-block__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

.blog-block--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-block--download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(21, 88, 184, 0.12);
  background: linear-gradient(135deg, var(--blue-50), #eef4ff);
}

.blog-block__download-copy strong {
  display: block;
  margin: 0.2rem 0 0.35rem;
  font-family: var(--font-display);
  color: var(--text-strong);
}

.blog-block__download-copy p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-block__download-type {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(21, 88, 184, 0.1);
  color: var(--blue-800);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: var(--blue-600);
  font-size: var(--text-sm);
  font-weight: 600;
}

.blog-article__back:hover {
  text-decoration: underline;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-breadcrumb a {
  color: var(--blue-600);
  font-weight: 600;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-breadcrumb__category {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(8, 132, 173, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.blog-breadcrumb__category:hover {
  text-decoration: none !important;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 132, 173, 0.28);
}

.blog-breadcrumb__category--mei {
  background: linear-gradient(135deg, var(--blog-theme-mei-start), var(--blog-theme-mei-end));
}

.blog-breadcrumb__category--tributacao {
  background: linear-gradient(135deg, var(--blog-theme-tributacao-start), var(--blog-theme-tributacao-end));
}

.blog-breadcrumb__category--simples {
  background: linear-gradient(135deg, var(--blog-theme-simples-start), var(--blog-theme-simples-end));
}

.blog-breadcrumb__category--abertura {
  background: linear-gradient(135deg, var(--blog-theme-abertura-start), var(--blog-theme-abertura-end));
}

.blog-breadcrumb__category--gestao,
.blog-breadcrumb__category--conteudos {
  background: linear-gradient(135deg, var(--blog-theme-gestao-start), var(--blog-theme-gestao-end));
}

.blog-breadcrumb__category--empreendedorismo {
  background: linear-gradient(135deg, var(--blog-theme-empreendedorismo-start), var(--blog-theme-empreendedorismo-end));
}

.blog-breadcrumb__category--clt {
  background: linear-gradient(135deg, var(--blog-theme-clt-start), var(--blog-theme-clt-end));
}

.blog-breadcrumb__category--cnae {
  background: linear-gradient(135deg, var(--blog-theme-cnae-start), var(--blog-theme-cnae-end));
}

.blog-breadcrumb span[aria-current="page"] {
  color: var(--gray-700);
}

.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.blog-section-head h1,
.blog-section-head h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
}

.blog-section-head p {
  margin: 0.35rem 0 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-section-head__link {
  color: var(--blue-600);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.blog-section-head__link:hover {
  text-decoration: underline;
}

.blog-section-head--sub {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.blog-section-head--sub h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
}

.blog-theme-group {
  margin-bottom: 0.5rem;
}

.blog-theme-group .blog-feed {
  margin-bottom: 0;
}

.blog-theme-group .blog-feed-item h4 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: var(--leading-snug);
}

.blog-empty {
  padding: 2.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  border-radius: var(--radius-md);
}

.blog-empty p {
  margin: 0 0 1.25rem;
  color: var(--gray-700);
}

.blog-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-featured__main,
.blog-featured__side-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-featured__main:hover,
.blog-featured__side-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 63, 134, 0.12);
}

.blog-featured__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-featured__main .blog-featured__media {
  aspect-ratio: 16 / 8;
}

.blog-featured__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.blog-featured__side-item .blog-featured__media {
  aspect-ratio: 16 / 7;
}

.blog-featured__media {
  position: relative;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}

.blog-featured__media--mei {
  background: linear-gradient(135deg, var(--blog-theme-mei-start), var(--blog-theme-mei-end));
}

.blog-featured__media--tributacao {
  background: linear-gradient(135deg, var(--blog-theme-tributacao-start), var(--blog-theme-tributacao-end));
}

.blog-featured__media--gestao {
  background: linear-gradient(135deg, var(--blog-theme-gestao-start), var(--blog-theme-gestao-end));
}

.blog-featured__media--abertura {
  background: linear-gradient(135deg, var(--blog-theme-abertura-start), var(--blog-theme-abertura-end));
}

.blog-featured__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-featured__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem 1.4rem;
}

.blog-featured__meta {
  color: var(--blue-500);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-featured__main h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: var(--leading-snug);
}

.blog-featured__side-item h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.blog-featured__body p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-themes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.blog-theme-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-theme-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 111, 224, 0.22);
  box-shadow: 0 16px 36px rgba(15, 63, 134, 0.1);
}

.blog-theme-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  color: var(--white);
}

.blog-theme-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-theme-card--abertura .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-abertura-start), var(--blog-theme-abertura-end));
}

.blog-theme-card--mei .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-mei-start), var(--blog-theme-mei-end));
}

.blog-theme-card--tributacao .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-tributacao-start), var(--blog-theme-tributacao-end));
}

.blog-theme-card--gestao .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-gestao-start), var(--blog-theme-gestao-end));
}

.blog-theme-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.blog-theme-card p {
  flex: 1;
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-theme-card__count {
  color: var(--blue-600);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-trails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.blog-trail-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-trail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 63, 134, 0.1);
}

.blog-trail-card__step {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-sm);
  font-weight: 800;
}

.blog-trail-card h3 {
  margin: 0 0 0.25rem;
  color: var(--blue-900);
  font-size: var(--text-base);
}

.blog-trail-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.blog-trail-card__cta {
  color: var(--blue-600);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
}

.blog-feed-item {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
  transition: background 0.2s ease;
}

.blog-feed-item:last-child {
  border-bottom: 0;
}

.blog-feed-item:hover {
  background: rgba(29, 111, 224, 0.03);
}

.blog-feed-item__theme {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-feed-item__theme--mei {
  background: var(--blog-theme-mei-soft);
  color: var(--blog-theme-mei-text);
}

.blog-feed-item__theme--tributacao {
  background: var(--blog-theme-tributacao-soft);
  color: var(--blog-theme-tributacao-text);
}

.blog-feed-item__theme--gestao {
  background: var(--blog-theme-gestao-soft);
  color: var(--blog-theme-gestao-text);
}

.blog-feed-item__theme--abertura {
  background: var(--blog-theme-abertura-soft);
  color: var(--blog-theme-abertura-text);
}

.blog-feed-item h3 {
  margin: 0 0 0.35rem;
  color: var(--blue-900);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.blog-feed-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.blog-feed-item__date {
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
}

.blog-feed-item__arrow {
  color: var(--blue-500);
  font-size: var(--text-lg);
  font-weight: 700;
}

.blog-feed-item__link {
  display: contents;
  color: inherit;
}

.blog-feed-item__theme--simples {
  background: var(--blog-theme-simples-soft);
  color: var(--blog-theme-simples-text);
}

.blog-feed-item__theme--conteudos {
  background: var(--blog-theme-conteudos-soft);
  color: var(--blog-theme-conteudos-text);
}

.blog-feed-item__byline {
  display: block;
  margin-top: 0.5rem;
  color: var(--gray-700);
  font-size: var(--text-xs);
}

.blog-popular {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-popular__item {
  min-width: 0;
}

.blog-popular__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-popular__link:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 111, 224, 0.22);
  box-shadow: 0 18px 40px rgba(15, 63, 134, 0.12);
}

.blog-popular__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  overflow: hidden;
}

.blog-popular__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-popular__link:hover .blog-popular__image {
  transform: scale(1.035);
}

.blog-popular__category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-popular__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.blog-popular__link h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.blog-popular__meta {
  margin: 0;
  margin-top: auto;
  color: var(--gray-700);
  font-size: var(--text-xs);
}

.blog-themes--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-theme-card--simples .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-simples-start), var(--blog-theme-simples-end));
}

.blog-theme-card--conteudos .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-conteudos-start), var(--blog-theme-conteudos-end));
}

.blog-theme-card--empreendedorismo .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-empreendedorismo-start), var(--blog-theme-empreendedorismo-end));
}

.blog-theme-card--clt .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-clt-start), var(--blog-theme-clt-end));
}

.blog-theme-card--cnae .blog-theme-card__icon {
  background: linear-gradient(135deg, var(--blog-theme-cnae-start), var(--blog-theme-cnae-end));
}

.blog-materials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-materials--compact {
  margin-bottom: 2rem;
}

.blog-material-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-material-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 111, 224, 0.22);
}

.blog-material-card__type {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-material-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
}

.blog-material-card p {
  flex: 1;
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-material-card__cta {
  color: var(--blue-600);
  font-size: var(--text-sm);
  font-weight: 700;
}

.blog-material-card--guia .blog-material-card__type {
  background: var(--blog-theme-mei-soft);
  color: var(--blog-theme-mei-text);
}

.blog-material-card--planilha .blog-material-card__type {
  background: var(--blog-theme-tributacao-soft);
  color: var(--blog-theme-tributacao-text);
}

.blog-material-card--ferramenta .blog-material-card__type {
  background: var(--blog-theme-conteudos-soft);
  color: var(--blog-theme-conteudos-text);
}

.blog-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-card__read {
  color: var(--gray-700);
  font-size: var(--text-xs);
  font-weight: 600;
}

.blog-card__author {
  color: var(--blue-600);
  font-size: var(--text-xs);
  font-weight: 600;
}

.blog-category-note {
  margin: 1.5rem 0 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-category-note a {
  color: var(--blue-600);
  font-weight: 600;
}

.blog-service-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-50), #eef4ff);
  border: 1px solid rgba(29, 111, 224, 0.14);
}

.blog-service-cta strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-900);
  font-size: var(--text-base);
}

.blog-service-cta p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-category-hero {
  padding: 2.75rem 0 2.25rem;
  background: var(--white);
  border-bottom: 1px solid rgba(21, 88, 184, 0.08);
}

.blog-category-hero--mei {
  background: linear-gradient(180deg, var(--blog-theme-mei-soft), transparent);
}

.blog-category-hero--tributacao {
  background: linear-gradient(180deg, var(--blog-theme-tributacao-soft), transparent);
}

.blog-category-hero--gestao {
  background: linear-gradient(180deg, var(--blog-theme-gestao-soft), transparent);
}

.blog-category-hero--conteudos {
  background: linear-gradient(180deg, var(--blog-theme-conteudos-soft), transparent);
}

.blog-category-hero--simples {
  background: linear-gradient(180deg, var(--blog-theme-simples-soft), transparent);
}

.blog-category-hero--empreendedorismo {
  background: linear-gradient(180deg, var(--blog-theme-empreendedorismo-soft), transparent);
}

.blog-category-hero--clt {
  background: linear-gradient(180deg, var(--blog-theme-clt-soft), transparent);
}

.blog-category-hero--cnae {
  background: linear-gradient(180deg, var(--blog-theme-cnae-soft), transparent);
}

.blog-category-hero--materiais {
  background: linear-gradient(180deg, var(--blog-theme-materiais-soft), transparent);
}

.blog-category-hero--abertura {
  background: linear-gradient(180deg, var(--blog-theme-abertura-soft), transparent);
}

.tools-layout .blog-category-hero {
  --blog-theme-abertura-soft: rgba(34, 189, 255, 0.18);
  --blog-theme-abertura-text: var(--blue-900);
  --blog-theme-tributacao-soft: rgba(34, 189, 255, 0.2);
  --blog-theme-tributacao-text: var(--blue-900);
  --blog-theme-simples-soft: rgba(118, 214, 255, 0.24);
  --blog-theme-simples-text: var(--blue-900);
  --blog-theme-clt-soft: rgba(0, 74, 173, 0.14);
  --blog-theme-clt-text: #004aad;
  --blog-theme-cnae-soft: rgba(18, 153, 196, 0.2);
  --blog-theme-cnae-text: var(--blue-900);
  --blog-theme-materiais-soft: rgba(6, 109, 146, 0.16);
  --blog-theme-materiais-text: var(--blue-950);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, var(--tools-hero-accent, rgba(34, 189, 255, 0.2)) 0%, transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(118, 214, 255, 0.16) 0%, transparent 28%),
    linear-gradient(115deg, var(--blue-50) 0%, rgba(232, 247, 255, 0.82) 48%, var(--white) 100%);
  border-bottom-color: rgba(18, 153, 196, 0.16);
}

.tools-layout .blog-category-hero--abertura,
.tools-layout .blog-category-hero--tributacao {
  --tools-hero-accent: rgba(34, 189, 255, 0.22);
}

.tools-layout .blog-category-hero--simples {
  --tools-hero-accent: rgba(118, 214, 255, 0.28);
}

.tools-layout .blog-category-hero--clt {
  --tools-hero-accent: rgba(0, 74, 173, 0.16);
}

.tools-layout .blog-category-hero--cnae {
  --tools-hero-accent: rgba(18, 153, 196, 0.22);
}

.tools-layout .blog-category-hero--materiais {
  --tools-hero-accent: rgba(6, 109, 146, 0.18);
}

.blog-category-hero__inner {
  max-width: 42rem;
}

.tools-layout .blog-category-hero__inner {
  max-width: 50rem;
}

.blog-category-hero__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-category-hero--mei .blog-category-hero__label {
  background: var(--blog-theme-mei-soft);
  color: var(--blog-theme-mei-text);
}

.blog-category-hero--tributacao .blog-category-hero__label {
  background: var(--blog-theme-tributacao-soft);
  color: var(--blog-theme-tributacao-text);
}

.blog-category-hero--gestao .blog-category-hero__label {
  background: var(--blog-theme-gestao-soft);
  color: var(--blog-theme-gestao-text);
}

.blog-category-hero--conteudos .blog-category-hero__label {
  background: var(--blog-theme-conteudos-soft);
  color: var(--blog-theme-conteudos-text);
}

.blog-category-hero--simples .blog-category-hero__label {
  background: var(--blog-theme-simples-soft);
  color: var(--blog-theme-simples-text);
}

.blog-category-hero--empreendedorismo .blog-category-hero__label {
  background: var(--blog-theme-empreendedorismo-soft);
  color: var(--blog-theme-empreendedorismo-text);
}

.blog-category-hero--clt .blog-category-hero__label {
  background: var(--blog-theme-clt-soft);
  color: var(--blog-theme-clt-text);
}

.blog-category-hero--cnae .blog-category-hero__label {
  background: var(--blog-theme-cnae-soft);
  color: var(--blog-theme-cnae-text);
}

.blog-category-hero--materiais .blog-category-hero__label {
  background: var(--blog-theme-materiais-soft);
  color: var(--blog-theme-materiais-text);
}

.blog-category-hero--abertura .blog-category-hero__label {
  background: var(--blog-theme-abertura-soft);
  color: var(--blog-theme-abertura-text);
}

.blog-category-hero h1 {
  margin: 0 0 0.85rem;
  color: var(--blue-900);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
}

.tools-layout .blog-category-hero h1 {
  color: #1f3b57;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
}

.blog-category-hero p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.blog-empty {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px dashed rgba(21, 88, 184, 0.18);
  text-align: center;
}

.blog-empty p {
  margin: 0 0 1rem;
  color: var(--gray-700);
}

.blog-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.blog-article__author {
  margin-top: 0.75rem;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.blog-article__author strong {
  color: var(--blue-900);
}

.blog-article__author-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(244, 248, 255, 0.9);
  border: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-article__author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-article__author-meta {
  min-width: 0;
}

.blog-article__author-card .blog-article__author {
  margin: 0;
}

.blog-article__author-role,
.blog-article__author-bio {
  margin: 0.25rem 0 0;
  color: var(--gray-500);
  font-size: var(--text-sm);
}

.blog-article__author-bio {
  line-height: 1.5;
}

.blog-article__author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.55rem 0 0;
}

.blog-article__author-socials a {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--blue-700);
}

.blog-article__author-socials a:hover {
  color: var(--blue-900);
}

.blog-share {
  max-width: 42rem;
  margin: 2.25rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-share--icons {
  margin: 1rem 0 0;
  padding-top: 0;
  border-top: none;
}

.blog-share__label {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: var(--text-sm);
  font-weight: 700;
}

.blog-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(21, 88, 184, 0.14);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-900);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-share--icons .blog-share__btn {
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  padding: 0;
}

.blog-share__btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.blog-share__btn:hover {
  border-color: rgba(29, 111, 224, 0.28);
  background: rgba(29, 111, 224, 0.04);
}

.blog-share__btn--whatsapp:hover {
  color: #128c7e;
  border-color: rgba(18, 140, 126, 0.35);
  background: rgba(18, 140, 126, 0.06);
}

.blog-share__btn--linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.35);
  background: rgba(10, 102, 194, 0.06);
}

.blog-share__btn--facebook:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
  background: rgba(24, 119, 242, 0.06);
}

.blog-share__btn--copy.is-copied {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.06);
}

.blog-subscribe {
  padding: 1.75rem 0;
  background:
    linear-gradient(145deg, rgba(4, 90, 122, 0.96) 0%, rgba(8, 132, 173, 0.94) 55%, rgba(18, 153, 196, 0.92) 100%),
    radial-gradient(circle at 90% 10%, rgba(118, 214, 255, 0.22), transparent 42%);
  color: var(--white);
}

.blog-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.blog-subscribe__copy h2 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

.blog-subscribe__copy p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.blog-subscribe__form {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.blog-subscribe__fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: end;
}

.blog-subscribe__form .form-row {
  margin-bottom: 0;
}

.blog-subscribe__form .form-row label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
}

.blog-subscribe__form .form-row input {
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border-color: transparent;
  background: var(--white);
}

.blog-subscribe__form .form-feedback {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.blog-subscribe__form .form-feedback.is-success {
  color: #bbf7d0;
}

.blog-subscribe__form .form-feedback.is-error {
  color: #fecaca;
}

.blog-subscribe__form .btn {
  white-space: nowrap;
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.875rem;
}

.blog-subscribe__note {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.blog-subscribe__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .blog-subscribe__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-subscribe__fields {
    grid-template-columns: 1fr;
  }

  .blog-subscribe__form .btn {
    width: 100%;
  }
}

.blog-comments {
  max-width: 42rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-comments__header {
  margin-bottom: 1.25rem;
}

.blog-comments__header h2 {
  margin: 0 0 0.4rem;
  color: var(--blue-900);
  font-size: var(--text-lg);
}

.blog-comments__intro {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.blog-comments__optional {
  font-weight: 500;
  color: var(--gray-500);
}

.blog-comments__list-wrap {
  margin-bottom: 1.75rem;
}

.blog-comments__form {
  margin-bottom: 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--blue-50), #f8fcff);
  border: 1px solid rgba(29, 111, 224, 0.12);
}

.blog-comments__form .form-feedback.is-error {
  color: #b91c1c;
}

.blog-comments__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.blog-comments__loading,
.blog-comments__empty {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-sm);
}

.blog-comments__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-comments__item {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-comments__item--new {
  animation: blog-comment-in 0.35s ease;
}

@keyframes blog-comment-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-comments__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.45rem;
}

.blog-comments__author {
  color: var(--blue-900);
  font-size: var(--text-sm);
}

.blog-comments__meta time {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.blog-comments__body {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  white-space: pre-wrap;
}

@media (max-width: 640px) {
  .blog-comments__form .form-row--split {
    grid-template-columns: 1fr;
  }
}

.blog-related {
  max-width: 42rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 88, 184, 0.1);
}

.blog-related h2 {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-size: var(--text-lg);
}

.blog-related__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-related__list a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(21, 88, 184, 0.1);
  color: var(--blue-900);
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-related__list a:hover {
  border-color: rgba(29, 111, 224, 0.22);
  background: rgba(29, 111, 224, 0.03);
}

.blog-card__media--mei,
.blog-card__media[data-theme="mei"] {
  background: linear-gradient(135deg, var(--blog-theme-mei-start), var(--blog-theme-mei-end));
}

.blog-card__media--tributacao,
.blog-card__media[data-theme="tributacao"] {
  background: linear-gradient(135deg, var(--blog-theme-tributacao-start), var(--blog-theme-tributacao-end));
}

.blog-card__media--gestao,
.blog-card__media--conteudos,
.blog-card__media[data-theme="gestao"] {
  background: linear-gradient(135deg, var(--blog-theme-conteudos-start), var(--blog-theme-conteudos-end));
}

.blog-card__media--simples {
  background: linear-gradient(135deg, var(--blog-theme-simples-start), var(--blog-theme-simples-end));
}

.blog-card__media--abertura,
.blog-card__media[data-theme="abertura"] {
  background: linear-gradient(135deg, var(--blog-theme-abertura-start), var(--blog-theme-abertura-end));
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

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

  .blog-themes--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-home,
  .blog-page,
  .blog-article-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout__main {
    grid-column: 1;
    max-width: 42rem;
    margin-inline: auto;
  }

  .article-toc {
    display: none;
  }

  .blog-topic-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 2.5rem 0 3rem;
  }

  .blog-themes,
  .blog-themes--wide,
  .blog-trails {
    grid-template-columns: 1fr;
  }

  .blog-materials,
  .blog-materials--compact {
    grid-template-columns: 1fr;
  }

  .blog-popular {
    grid-template-columns: 1fr;
  }

  .blog-feed-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .blog-feed-item__date,
  .blog-feed-item__arrow {
    display: none;
  }

  .blog-trail-card {
    grid-template-columns: 1fr;
  }

  .blog-trail-card__cta {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .blog-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .blog-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    width: min(100%, 320px);
    height: 100dvh;
    padding: 5.5rem 1.25rem 1.5rem;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(15, 63, 134, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    flex: none;
    min-width: auto;
  }

  .blog-header:not(.blog-header--light) .blog-header__nav {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
    box-shadow: -20px 0 50px rgba(15, 63, 134, 0.2);
  }

  .blog-header__nav.is-open {
    transform: translateX(0);
  }

  .blog-header__primary {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .blog-header__primary a {
    padding: 0.75rem 0.85rem;
  }

  .blog-header__themes-mobile {
    display: none;
  }

  .blog-header__topics {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    margin-left: 0;
    flex: none;
  }

  .blog-header__topic {
    width: 100%;
  }

  .blog-header__topic-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    white-space: normal;
    text-align: left;
  }

  .blog-header__topic-menu {
    position: static;
    min-width: 0;
    max-width: none;
    margin-top: 0.2rem;
    padding: 0 0 0.35rem 0.5rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.25s ease, visibility 0.2s ease;
  }

  .blog-header__topic.is-open .blog-header__topic-menu {
    visibility: visible;
    max-height: 480px;
  }

  .blog-header__topic-menu a {
    padding: 0.65rem 0.85rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .blog-header__topic-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .blog-header__categories {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .blog-header__categories a {
    padding: 0.75rem 0.85rem;
  }

  .blog-header__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: auto;
  }

  .blog-header__materiais {
    justify-content: center;
    padding: 0.75rem 0.85rem;
    text-align: center;
  }

  .blog-header__tagline {
    display: none;
  }
}

/* Página de Contato */
.contact-page__hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
  background: var(--service-hero-bg);
}

.contact-page__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-page__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}

.contact-page__blob--1 {
  top: -4rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  background: rgba(118, 214, 255, 0.18);
}

.contact-page__blob--2 {
  bottom: -5rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(34, 189, 255, 0.1);
}

.contact-page__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-page__circle--1 {
  top: 18%;
  right: 8%;
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid rgba(34, 189, 255, 0.22);
}

.contact-page__circle--2 {
  bottom: 22%;
  right: 18%;
  width: 1rem;
  height: 1rem;
  background: var(--brand-blue-end);
  box-shadow: 0 0 0 1rem rgba(34, 189, 255, 0.12);
}

.contact-page__circle--3 {
  top: 28%;
  left: 4%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid rgba(0, 74, 173, 0.2);
}

.contact-page__hero-inner {
  position: relative;
  z-index: 1;
}

.contact-page__hero h1 {
  margin: 0 0 1rem;
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.contact-page__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page__card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-page__card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 189, 255, 0.22);
  box-shadow: 0 14px 32px rgba(34, 189, 255, 0.12);
}

.contact-page__card--accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 247, 255, 0.95) 100%);
  border-color: rgba(34, 189, 255, 0.2);
}

.contact-page__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(34, 189, 255, 0.22);
}

.contact-page__card-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page__card-body {
  min-width: 0;
}

.contact-page__card h2 {
  margin: 0 0 0.2rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-brand);
}

.contact-page__card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-brand);
}

.contact-page__card a {
  color: var(--btn-brand);
  font-weight: 600;
}

.contact-page__card a:hover {
  color: var(--btn-brand-hover);
}

.contact-page__card-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--gray-500);
}

.contact-page__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 189, 255, 0.14);
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(34, 189, 255, 0.08);
}

.contact-page__highlights-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--btn-brand);
}

.contact-page__highlights-icon svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page__form-section {
  position: relative;
  overflow: hidden;
}

.contact-page__form-section::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 2px solid rgba(34, 189, 255, 0.12);
  pointer-events: none;
}

.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-page__map-section {
  position: relative;
  padding-top: 4rem;
  background:
    radial-gradient(circle at top right, rgba(118, 214, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.contact-page__map-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: stretch;
}

.contact-page__map-info {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-page__map-info h3 {
  margin: 0 0 0.75rem;
  font-size: var(--text-lg);
  color: var(--text-brand);
}

.contact-page__map-info p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.contact-page__map-details {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.contact-page__map-details li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--text-brand);
}

.contact-page__map-details li + li {
  margin-top: 0.45rem;
}

.contact-page__map-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-blue-end);
}

.contact-page__map-info .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-page__map {
  overflow: hidden;
  border: 1px solid rgba(34, 189, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 36vw, 360px);
  border: 0;
}

@media (max-width: 980px) {
  .contact-page__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-page__map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-page__cards {
    grid-template-columns: 1fr;
  }

  .contact-page__highlights {
    justify-content: flex-start;
  }

  .contact-page__actions .btn {
    width: 100%;
  }
}

/* Página Sobre Nós */
.about-page__hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background: var(--service-hero-bg);
}

.about-page__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-page__bg-photo {
  position: absolute;
  inset: 0;
  background: url("/images/abrir-empresa-bg.jpg") center / cover no-repeat;
  opacity: 0.3;
}

.about-page__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(243, 252, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.82) 45%,
      rgba(255, 255, 255, 0.72) 100%
    ),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.55), transparent 62%),
    radial-gradient(circle at 12% 18%, rgba(118, 214, 255, 0.1), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(34, 189, 255, 0.05), transparent 30%);
}

.about-page__blob {
  position: absolute;
  border-radius: 50%;
}

.about-page__blob--1 {
  top: -5rem;
  right: 10%;
  width: 18rem;
  height: 18rem;
  background: rgba(118, 214, 255, 0.22);
}

.about-page__blob--2 {
  bottom: -6rem;
  left: -3rem;
  width: 15rem;
  height: 15rem;
  background: rgba(34, 189, 255, 0.12);
}

.about-page__circle {
  position: absolute;
  border-radius: 50%;
}

.about-page__circle--1 {
  top: 20%;
  left: 6%;
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(34, 189, 255, 0.24);
}

.about-page__circle--2 {
  bottom: 18%;
  right: 42%;
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid rgba(0, 74, 173, 0.22);
}

.about-page__circle--solid {
  top: 14%;
  right: 28%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--brand-blue-end);
  box-shadow: 0 0 0 1.1rem rgba(34, 189, 255, 0.14);
}

.about-page__hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.about-page__hero-content {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.about-page__hero-content h1 {
  margin: 0 0 1rem;
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.about-page__hero-lead {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.about-page__hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__hero-tags li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 189, 255, 0.16);
  color: var(--text-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(34, 189, 255, 0.08);
}

.about-page__purpose {
  padding: 0 0 1rem;
  margin-top: -1.5rem;
}

.about-page__purpose-card {
  position: relative;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: var(--brand-gradient-d);
  color: var(--white);
  text-align: center;
  box-shadow: 0 24px 48px rgba(34, 189, 255, 0.22);
}

.about-page__purpose-card .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.about-page__purpose-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--white);
}

.about-page__purpose-card p {
  margin: 0 auto;
  max-width: 42rem;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.92);
}

.about-page__pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-page__pillar {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(34, 189, 255, 0.12);
}

.about-page__pillar--mission {
  background: linear-gradient(160deg, #ffffff 0%, #eef9ff 100%);
}

.about-page__pillar--vision {
  background: linear-gradient(160deg, #ffffff 0%, #e8f7ff 100%);
}

.about-page__pillar--essence {
  background: linear-gradient(160deg, #ffffff 0%, #f3fcff 100%);
}

.about-page__pillar-num {
  display: inline-flex;
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-blue-end);
}

.about-page__pillar h3 {
  margin: 0 0 0.65rem;
  font-size: var(--text-lg);
  color: var(--text-brand);
}

.about-page__pillar p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-page__value:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 189, 255, 0.22);
  box-shadow: 0 16px 36px rgba(34, 189, 255, 0.1);
}

.about-page__value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: var(--brand-gradient-d);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(34, 189, 255, 0.22);
}

.about-page__value-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page__value h3 {
  margin: 0 0 0.45rem;
  font-size: var(--text-base);
  color: var(--text-brand);
}

.about-page__value p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.about-page__story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.about-page__story-content h2 {
  margin: 0 0 1rem;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.about-page__story-content p {
  margin: 0 0 1rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.about-page__timeline {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about-page__timeline li {
  position: relative;
  padding: 0 0 1.25rem 1.35rem;
  border-left: 2px solid rgba(34, 189, 255, 0.22);
}

.about-page__timeline li:last-child {
  padding-bottom: 0;
}

.about-page__timeline li::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--brand-blue-end);
  box-shadow: 0 0 0 4px rgba(34, 189, 255, 0.14);
}

.about-page__timeline strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--text-base);
  color: var(--text-brand);
}

.about-page__timeline span {
  display: block;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.about-page__story-media {
  margin: 0;
}

.about-page__story-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.about-page__story-photo img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  object-position: center;
}

.about-page__quote {
  margin: 1rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(118, 214, 255, 0.16) 0%, rgba(34, 189, 255, 0.08) 100%);
  border: 1px solid rgba(34, 189, 255, 0.14);
}

.about-page__quote p {
  margin: 0;
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 600;
  line-height: var(--leading-relaxed);
  color: var(--text-brand);
}

.about-page__stats {
  background:
    radial-gradient(circle at top left, rgba(118, 214, 255, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(34, 189, 255, 0.06), transparent 28%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.about-page__cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.about-page__cta-layout h2 {
  margin: 0 0 1rem;
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text-brand);
}

.about-page__cta-layout p {
  margin: 0;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-page__cta-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__cta-cards li {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(34, 189, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.about-page__cta-cards strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: var(--text-base);
  color: var(--text-brand);
}

.about-page__cta-cards span {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.about-page__cta-cards a {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--btn-brand);
}

.about-page__cta-cards a:hover {
  color: var(--btn-brand-hover);
}

@media (max-width: 980px) {
  .about-page__story-layout,
  .about-page__cta-layout {
    grid-template-columns: 1fr;
  }

  .about-page__bg-photo {
    opacity: 0.24;
  }

  .about-page__pillars-grid,
  .about-page__values-grid {
    grid-template-columns: 1fr;
  }

  .about-page__cta-actions .btn {
    width: 100%;
  }
}

/* Páginas de campanha (ex.: /regularizacao) — não linkadas no menu principal */
.lp-campaign-header .btn--sm {
  white-space: nowrap;
}

.lp-campaign-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(34, 189, 255, 0.08);
  background: var(--white);
  text-align: center;
}

.lp-campaign-footer__inner {
  display: grid;
  gap: 0.35rem;
}

.lp-campaign-footer p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.lp-campaign-footer__legal {
  font-size: var(--text-xs);
}

body.lp-campaign-page.has-cookie-banner .lp-campaign-footer {
  padding-bottom: 5.5rem;
}

body.lp-campaign-page .whatsapp-fab {
  bottom: 1.5rem;
}

body.lp-campaign-page.has-cookie-banner .whatsapp-fab {
  bottom: 5.5rem;
}

.lp-mei-pendencias {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(118, 214, 255, 0.22), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(34, 189, 255, 0.16), transparent 32%),
    radial-gradient(circle at 78% 88%, rgba(8, 132, 173, 0.12), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(6, 109, 146, 0.1), transparent 30%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.lp-mei-pendencias__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.lp-mei-pendencias__card {
  --pendencia-accent: var(--blue-600);
  --pendencia-accent-light: var(--blue-400);
  --pendencia-accent-soft: rgba(34, 189, 255, 0.12);
  --pendencia-accent-glow: rgba(34, 189, 255, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(165deg, var(--white) 0%, var(--pendencia-accent-soft) 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 34px var(--pendencia-accent-glow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-mei-pendencias__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pendencia-accent);
}

.lp-mei-pendencias__card::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pendencia-accent-glow), transparent 70%);
  pointer-events: none;
}

.lp-mei-pendencias__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 22px 44px var(--pendencia-accent-glow);
}

.lp-mei-pendencias__card--das {
  --pendencia-accent: var(--blue-400);
  --pendencia-icon-from: var(--blue-700);
  --pendencia-icon-to: var(--blue-500);
  --pendencia-accent-light: #a8e4ff;
  --pendencia-accent-soft: rgba(118, 214, 255, 0.2);
  --pendencia-accent-glow: rgba(118, 214, 255, 0.24);
}

.lp-mei-pendencias__card--dasn {
  --pendencia-accent: var(--blue-600);
  --pendencia-icon-from: var(--blue-700);
  --pendencia-icon-to: var(--blue-400);
  --pendencia-accent-light: var(--blue-400);
  --pendencia-accent-soft: rgba(34, 189, 255, 0.16);
  --pendencia-accent-glow: rgba(34, 189, 255, 0.22);
}

.lp-mei-pendencias__card--inativo {
  --pendencia-accent: var(--blue-800);
  --pendencia-icon-from: var(--blue-900);
  --pendencia-icon-to: var(--blue-700);
  --pendencia-accent-light: var(--blue-700);
  --pendencia-accent-soft: rgba(8, 132, 173, 0.14);
  --pendencia-accent-glow: rgba(8, 132, 173, 0.2);
}

.lp-mei-pendencias__card--limite {
  --pendencia-accent: var(--blue-950);
  --pendencia-icon-from: var(--blue-950);
  --pendencia-icon-to: var(--blue-800);
  --pendencia-accent-light: var(--blue-800);
  --pendencia-accent-soft: rgba(4, 90, 122, 0.12);
  --pendencia-accent-glow: rgba(4, 90, 122, 0.18);
}

.lp-mei-pendencias__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--pendencia-icon-from, var(--pendencia-accent)) 0%,
    var(--pendencia-icon-to, var(--pendencia-accent-light, var(--blue-400))) 100%
  );
  box-shadow: 0 10px 22px var(--pendencia-accent-glow);
}

.lp-mei-pendencias__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-mei-pendencias__card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--text-brand);
}

.lp-mei-pendencias__card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

@media (max-width: 1023px) {
  .lp-mei-pendencias__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .lp-mei-pendencias__grid {
    grid-template-columns: 1fr;
  }
}

/* Blog calculator — PJ x CLT / Fator R */
.blog-calculator-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.blog-calculator-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-calculator__breakdown {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-calculator__breakdown > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: var(--text-sm);
}

.blog-calculator__breakdown dt {
  color: var(--gray-600);
}

.blog-calculator__breakdown dd {
  margin: 0;
  font-weight: 600;
  color: var(--text-brand);
}

.blog-calculator__breakdown-total {
  padding-top: 0.65rem;
  border-top: 1px solid var(--gray-200);
}

.blog-calculator__card--active {
  border-color: rgba(29, 111, 224, 0.45);
  background: rgba(29, 111, 224, 0.06);
  box-shadow: 0 0 0 1px rgba(29, 111, 224, 0.12);
}

.blog-calculator__card--active h3 {
  color: var(--blue-700);
}

.blog-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.blog-calculator__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-calculator__fieldset {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.blog-calculator__fieldset legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-brand);
}

.blog-calculator__hint {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
}

.blog-calculator__field-note {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.blog-calculator__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-700);
  cursor: pointer;
}

.blog-calculator__checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--blue-600);
}

.blog-calculator__results {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--blog-theme-clt-soft), var(--white) 40%);
}

.blog-calculator__results h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.blog-calculator__anexo-banner {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.blog-calculator__anexo-banner--iii {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.35);
}

.blog-calculator__anexo-banner--v {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.35);
}

.blog-calculator__anexo-banner-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.blog-calculator__anexo-banner-title {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 1.1;
  color: var(--text-brand);
}

.blog-calculator__anexo-banner--iii .blog-calculator__anexo-banner-title {
  color: #15803d;
}

.blog-calculator__anexo-banner--v .blog-calculator__anexo-banner-title {
  color: #c2410c;
}

.blog-calculator__anexo-banner-text {
  margin: 0.45rem 0 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__fator-meter {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.blog-calculator__fator-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.blog-calculator__fator-meter-head strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.blog-calculator__fator-meter-track {
  position: relative;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--gray-100);
  overflow: visible;
}

.blog-calculator__fator-meter-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-800));
  transition: width 0.25s ease;
}

.blog-calculator__fator-meter-mark {
  position: absolute;
  top: -0.15rem;
  bottom: -0.15rem;
  left: 70%;
  width: 2px;
  background: var(--gray-700);
  transform: translateX(-50%);
}

.blog-calculator__fator-meter-mark span {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
}

.blog-calculator__fator-meter-note {
  margin: 1.35rem 0 0;
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
}

.blog-calculator__das-box {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.blog-calculator__das-box-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.blog-calculator__das-box strong {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.blog-calculator__das-box p {
  margin: 0.35rem 0 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__advanced {
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.blog-calculator__advanced summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-800);
  list-style: none;
}

.blog-calculator__advanced summary::-webkit-details-marker {
  display: none;
}

.blog-calculator__advanced[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.blog-calculator__advanced .form-row,
.blog-calculator__advanced .blog-calculator__breakdown {
  padding: 1rem;
}

.blog-calculator__fieldset .blog-calculator__advanced {
  margin-top: 0.35rem;
}

.blog-calculator__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.blog-calculator__card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.blog-calculator__card h3 {
  margin: 0 0 0.75rem;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-calculator__card--clt h3 {
  color: var(--blue-700);
}

.blog-calculator__card--pj h3 {
  color: var(--blog-theme-clt-text);
}

.blog-calculator__card dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-calculator__card dl > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.blog-calculator__card dt {
  font-size: var(--text-xs);
  color: var(--gray-600);
}

.blog-calculator__card dd {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-brand);
}

.blog-calculator__callout {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(29, 111, 224, 0.08);
  border: 1px solid rgba(29, 111, 224, 0.18);
}

.blog-calculator__callout p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-800);
}

.blog-calculator__callout strong {
  color: var(--text-brand);
}

.blog-calculator__hibrido-box {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(29, 111, 224, 0.35);
  background: rgba(29, 111, 224, 0.04);
}

.blog-calculator__hibrido-box-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.blog-calculator__hibrido-box strong {
  display: block;
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.blog-calculator__hibrido-box p {
  margin: 0.45rem 0 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__hibrido-detail {
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-calculator__hibrido-detail div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.blog-calculator__hibrido-detail span:last-child {
  font-weight: 600;
  color: var(--text-brand);
  white-space: nowrap;
}

.blog-calculator__verdict {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(29, 111, 224, 0.08);
  border: 1px solid rgba(29, 111, 224, 0.15);
}

.blog-calculator__verdict p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-800);
}

.blog-calculator__disclaimer {
  margin: 0;
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  color: var(--gray-500);
}

.blog-calculator__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.blog-calculator__step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-500);
}

.blog-calculator__step.is-active,
.blog-calculator__step.is-done {
  color: var(--text-brand);
}

.blog-calculator__step-num {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: var(--text-xs);
  font-weight: 700;
}

.blog-calculator__step.is-active .blog-calculator__step-num,
.blog-calculator__step.is-done .blog-calculator__step-num {
  background: var(--blue-600);
  color: var(--white);
}

.blog-calculator__panel[hidden] {
  display: none !important;
}

.blog-calculator__form--wide {
  max-width: 44rem;
}

.blog-calculator--abertura .blog-calculator__steps {
  justify-content: center;
}

.blog-calculator--abertura .blog-calculator__panel[data-step="form"] {
  display: flex;
  justify-content: center;
}

.blog-calculator--abertura .blog-calculator__form--wide {
  width: 100%;
  margin-inline: auto;
}

.blog-calculator__actions {
  margin-top: 0.5rem;
}

.blog-calculator--abertura .blog-calculator__actions {
  display: flex;
  justify-content: center;
}

.blog-calculator__form .form-row--split > .form-row {
  margin-bottom: 0;
}

.blog-calculator__form .form-row--split > .form-row .blog-calculator__field-note {
  min-height: 0;
}

.blog-calculator__field-note--block {
  display: block;
  margin: -0.35rem 0 1rem;
}

.blog-calculator__gate[hidden] {
  display: none !important;
}

.blog-calculator__gate {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-calculator__gate h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.blog-calculator__gate .blog-calculator__compare,
.blog-calculator__gate .blog-calculator__breakdown,
.blog-calculator__gate .blog-calculator__das-box,
.blog-calculator__gate .blog-calculator__verdict,
.blog-calculator__gate .blog-calculator__disclaimer {
  margin: 0;
}

.blog-calculator__gate .blog-calculator__hint {
  margin: 0;
}

.blog-calculator__breakdown .blog-calculator__line-note {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gray-500);
}

#rescisao-results {
  gap: 1.25rem;
}

.rescisao-calculator-section {
  padding-bottom: 2rem;
}

.rescisao-calculator-section + .section {
  padding-top: 2rem;
}

.blog-calculator__actions {
  margin-top: 0.75rem;
}

.blog-calculator__actions--split {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.blog-calculator__help-list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-calculator__help-list li {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__help-section + .blog-calculator__help-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.blog-calculator__help-section h3 {
  margin: 0 0 0.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-brand);
}

.blog-calculator__help-section p {
  margin: 0 0 0.65rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__help-section p:last-child {
  margin-bottom: 0;
}

.fator-r-example {
  display: grid;
  gap: 1rem;
}

.fator-r-example__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fator-r-example__values .feature-card {
  min-height: 0;
}

.fator-r-example__values span,
.fator-r-example__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.fator-r-example__values strong {
  display: block;
  font-size: var(--text-xl);
  color: var(--text-brand);
}

.fator-r-example__values p {
  margin: 0.45rem 0 0;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.fator-r-example__result {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(29, 111, 224, 0.22);
  border-radius: var(--radius-md);
  background: var(--white);
}

.fator-r-example__result p {
  margin: 0 0 0.55rem;
  line-height: var(--leading-relaxed);
  color: var(--gray-800);
}

.fator-r-example__steps {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 0;
  padding: 0;
}

.fator-r-example__step {
  display: block;
  width: 100%;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.fator-r-example__step:first-child {
  padding-top: 0.35rem;
}

.fator-r-example__step:last-child {
  border-bottom: 0;
  padding-bottom: 0.35rem;
}

.fator-r-example__step > strong {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--text-brand);
  font-size: var(--text-base);
  line-height: 1.35;
}

.fator-r-example__step > p {
  display: block;
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-800);
}

.fator-r-example__step > p strong {
  color: var(--text-brand);
}

.fator-r-example__comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  text-align: center;
}

.fator-r-example__comparison div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fator-r-example__comparison span {
  font-size: var(--text-xs);
  color: var(--gray-600);
}

.fator-r-example__comparison strong {
  font-size: var(--text-2xl);
  color: var(--text-brand);
}

.fator-r-example__comparison .fator-r-example__comparison-symbol {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #15803d;
}

.fator-r-example__verdict {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--gray-800);
}

.fator-r-example__note {
  margin-top: 0.9rem;
}

.fator-r-example-section {
  padding-bottom: 2rem;
}

.fator-r-example-section + .section {
  padding-top: 2rem;
}

@media (max-width: 760px) {
  .fator-r-example__values {
    grid-template-columns: 1fr;
  }

  .fator-r-example__comparison {
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.recaptcha-field {
  margin: 0.85rem 0 1rem;
}

.recaptcha-field .g-recaptcha {
  transform-origin: left center;
}

.blog-calculator__result-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-calculator__result-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--text-brand);
}

.blog-calculator__result-summary {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
}

.blog-calculator__savings {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 163, 74, 0.3);
  background: rgba(22, 163, 74, 0.08);
}

.blog-calculator__savings-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #15803d;
}

.blog-calculator__savings strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.1;
  color: #15803d;
}

.blog-calculator__savings p {
  margin: 0.45rem 0 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
}

.blog-calculator__compare--abertura {
  margin-bottom: 1.25rem;
}

.blog-calculator__card-total {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-brand);
}

.blog-calculator__card--trad h3 {
  color: var(--gray-700);
}

.blog-calculator__card--tb h3 {
  color: var(--blue-700);
}

.blog-calculator__compare--abertura .blog-calculator__card dl > div {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.blog-calculator__compare--abertura .blog-calculator__card dt {
  flex: 1;
  min-width: 0;
}

.blog-calculator__compare--abertura .blog-calculator__card dd {
  flex-shrink: 0;
  text-align: right;
}

.blog-calculator__card dl .blog-calculator__line-note {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--gray-500);
}

.blog-calculator__line-value--free {
  color: #15803d !important;
}

.blog-calculator--abertura .blog-calculator-cta__actions {
  margin: 1.5rem 0 1rem;
  gap: 2rem;
  align-items: center;
}

.blog-calculator--abertura .blog-calculator-cta__actions .btn--ghost {
  padding-inline: 0.25rem;
}

@media (max-width: 900px) {
  .blog-calculator__layout {
    grid-template-columns: 1fr;
  }

  .blog-calculator__results {
    position: static;
  }
}

@media (max-width: 540px) {
  .blog-calculator__compare {
    grid-template-columns: 1fr;
  }

  .blog-calculator__fieldset {
    padding: 1.15rem;
  }
}

/* Guia das calculadoras — alinhado ao padrão do site */
.tool-guide__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.tool-guide__how-section {
  overflow: visible;
}

.tool-guide__how-section > .container.lp-steps-layout {
  overflow: visible;
}

.tool-guide__how-section--centered .how-tabs__step {
  grid-template-columns: 2.75rem minmax(0, 1fr);
  align-items: center;
}

.tool-guide__how-section--centered .how-tabs__step-body {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  text-align: left;
}

.tool-guide__how-section--centered .how-tabs__step-body p {
  width: 100%;
  text-align: left;
}

.tool-guide__how-section--centered .how-tabs__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .tool-guide__how-section--centered .how-tabs__step {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

  .tool-guide__how-section--centered .how-tabs__step-body {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .tool-guide__cards {
    grid-template-columns: 1fr;
  }
}
