/* ===== Tema Obten - Hospedagem e Criação de Sites ===== */
/* PHP, Bootstrap 5, Poppins - Totalmente responsivo */

:root {
  --accent: #2E93EE;
  --accent-secondary: #1a7bd4;
  --accent-hover: #1a7bd4;
  --accent-dark: #215A8B;
  --text: #1f2044;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --fds-hero-bg: #020b2f;
  /* Mesma cor sólida da barra fixa (.fds-header-bar) */
  --fds-header-bg: #020b2f;
  /* Topo fixo: faixa promo + header (atualizado via JS em main.js) */
  --fds-promo-h: 0px;
  --fds-header-h: 88px;
  /* Espaço entre a faixa promo e a “pílula” do header + altura total reservada no body */
  --fds-header-float-gap: 0px;
  --fds-top-fixed: calc(var(--fds-promo-h, 0px) + var(--fds-header-float-gap) + var(--fds-header-h, 88px));
  /* Início do conteúdo do header (faixa esquerda + gap + padding do nav) = alinhamento do hero com a logo */
  --fds-header-accent-w: 0px;
  --fds-header-shell-gap: 0.65rem;
  --fds-nav-padding-x: 1rem;
  --fds-hero-align-pl: calc(env(safe-area-inset-left, 0px) + var(--fds-header-accent-w) + var(--fds-header-shell-gap) + var(--fds-nav-padding-x));
  --fds-hero-align-pr: calc(env(safe-area-inset-right, 0px) + var(--fds-header-accent-w) + var(--fds-header-shell-gap) + var(--fds-nav-padding-x));
}
@media (max-width: 991px) {
  .sw-intro-grid {
    grid-template-columns: 1fr;
  }
  .sw-intro-media {
    max-width: 420px;
  }
  .sw-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare {
    padding-top: calc(var(--fds-top-fixed) + 48px);
    padding-bottom: 56px;
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare .templates-hero-title {
    font-size: clamp(1.9rem, 5.8vw, 3rem);
  }
  :root {
    --fds-nav-padding-x: 0px;
  }
}
@media (max-width: 575px) {
  :root {
    --fds-header-accent-w: 0px;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  scroll-padding-top: var(--fds-top-fixed);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--accent, #2e93ee) 88%, #ffffff 12%) var(--fds-header-bg, #020b2f);
}
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
}
body.fds-theme {
  padding-top: var(--fds-top-fixed);
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track {
  background: var(--fds-header-bg, #020b2f);
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent, #2e93ee) 90%, #ffffff 10%) 0%,
    color-mix(in srgb, var(--accent, #2e93ee) 74%, #0b1220 26%) 100%
  );
  border-radius: 999px;
  border: 2px solid var(--fds-header-bg, #020b2f);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 2px 10px rgba(2, 11, 47, 0.35);
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-hover, #1a7bd4) 92%, #ffffff 8%) 0%,
    color-mix(in srgb, var(--accent-hover, #1a7bd4) 78%, #0b1220 22%) 100%
  );
}

/* Botões no site público: padrão pill */
body.fds-theme .btn:not(.btn-close) {
  border-radius: 100px !important;
}
body.fds-theme .btn-group > .btn:not(.btn-close) {
  border-radius: 100px !important;
}
body.fds-theme .input-group > .btn:not(:first-child):not(.btn-close) {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
body.fds-theme .input-group > .btn:not(:last-child):not(.btn-close) {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Alinhamento global: conteúdo desktop em 1140px */
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}

h1, h2, h3, h4, h5, h6, .lead, p, a, span, li, button, input {
  font-family: 'Poppins', sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent-hover);
}

/* ===== Faixa promocional (topo, acima do header) ===== */
.fds-promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: center;
}
.fds-promo-bar .container-fluid {
  max-width: 100%;
  text-align: center;
}
.fds-promo-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.35rem 0.75rem;
}
.fds-promo-text {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 10.5rem);
  margin: 0;
  text-align: center !important;
  box-sizing: border-box;
}
.fds-promo-link {
  font-weight: 600;
}
.fds-promo-link:hover {
  opacity: 0.9;
}
.fds-promo-timer-box {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.35rem;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}
.fds-promo-timer-box .fds-promo-n {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.fds-promo-timer-box .fds-promo-u {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  margin-left: 0.06rem;
  vertical-align: 0.12em;
  opacity: 1;
}
@media (max-width: 575.98px) {
  .fds-promo-inner {
    gap: 0.45rem 0.6rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .fds-promo-text {
    max-width: calc(100% - 8.75rem);
    font-size: 0.8rem;
  }
  .fds-promo-timer-box {
    gap: 0.28rem;
    padding: 0.18rem 0.45rem;
    font-size: 0.72rem;
  }
  .fds-promo-timer-box .fds-promo-n {
    font-size: 0.85rem;
  }
  .fds-promo-timer-box .fds-promo-u {
    font-size: 0.62rem;
  }
}

/* ===== Header - fundo largura total + conteúdo centralizado ===== */
.fds-header-bar {
  background: var(--fds-header-bg, #121829);
  position: fixed;
  top: calc(var(--fds-promo-h, 0px) + var(--fds-header-float-gap));
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000; /* garante sobreposição ao slider */
  box-sizing: border-box;
  /* Encosta nas laterais da viewport; só safe-area em aparelhos com notch */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  overflow: visible;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}
.fds-header-progress {
  position: fixed;
  top: calc(var(--fds-promo-h, 0px) + var(--fds-header-float-gap));
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3101;
  pointer-events: none;
}
.fds-header-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent, #2E93EE);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}
.fds-header-bar .container.fds-header-shell {
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 992px) {
  .fds-header-bar .container.fds-header-shell {
    max-width: 1420px;
  }
}
/* Faixas laterais — mesma altura da barra central (flex stretch) */
.fds-navbar-accent {
  flex: 0 0 46px;
  width: 46px;
  align-self: stretch;
  min-height: 3.25rem;
}
.fds-header-bar .fds-navbar-accent {
  display: none !important;
}
.fds-navbar-accent--left {
  background: var(--accent, #2e93ee);
  border-radius: 0 14px 14px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}
.fds-navbar-accent--right {
  background: #ffffff;
  border-radius: 14px 0 0 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-left: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}
@media (max-width: 575px) {
  .fds-navbar-accent {
    flex-basis: 38px;
    width: 38px;
  }
}
.fds-navbar {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 1rem;
  flex-wrap: wrap;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  overflow: visible;
  /* Evita salto quando a fonte web carrega e o texto refaz o wrap */
  min-height: 3.6rem;
}
@media (max-width: 767px) {
  .sw-intro-section,
  .sw-benefits-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sw-benefits-grid {
    grid-template-columns: 1fr;
  }
  .sw-benefits-title,
  .sw-why-panel__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare {
    padding-top: calc(var(--fds-top-fixed) + 34px);
    padding-bottom: 42px;
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare .templates-hero-title {
    font-size: clamp(1.62rem, 7.2vw, 2.2rem);
    line-height: 1.18;
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb {
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    text-align: center;
  }
  .fds-navbar {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}
.fds-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}
.fds-logo-link:hover { color: var(--accent); }
.fds-header-bar .fds-logo-link,
.fds-header-bar .fds-logo-link:hover {
  color: rgba(255, 255, 255, 0.95);
}
/* Logo colorida → branca no header escuro */
.fds-header-bar .fds-logo-img {
  filter: brightness(0) invert(1);
}
.fds-logo-img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}
.fds-header-bar .fds-logo-text {
  color: rgba(255, 255, 255, 0.95);
}
/* Logotipo ancorado à esquerda (não “ao centro” do bloco) */
.fds-header-bar .fds-navbar {
  justify-content: flex-start;
}
.fds-header-bar .fds-logo-link {
  flex: 0 0 auto;
}
.fds-nav-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0.45rem;
}
/* Header: menu principal (Soluções) alinhado à direita da área central */
.fds-header-bar .fds-nav-center {
  justify-content: flex-end;
  padding-left: 0.45rem;
  padding-right: clamp(0.65rem, 2vw, 1.15rem);
}
.fds-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fds-nav-menu li { position: relative; }
.fds-header-bar .fds-nav-menu a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.fds-nav-menu .dropdown-toggle::after {
  display: none;
}
.fds-header-bar .fds-nav-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.fds-header-bar .fds-nav-menu .dropdown.show > .dropdown-toggle {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.fds-nav-menu .dropdown.show > .dropdown-toggle {
  color: var(--accent, #2e93ee);
  background: transparent;
}
.fds-header-bar .fds-nav-menu a.fds-nav-whatwedo {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.55rem 0.9rem;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
}
.fds-header-bar .fds-nav-menu a.fds-nav-whatwedo:hover,
.fds-header-bar .fds-nav-menu .dropdown.show > .fds-nav-whatwedo {
  color: #ffffff;
  background: transparent;
  border: none;
}
.fds-nav-whatwedo-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}
.fds-header-bar .fds-nav-whatwedo-icon {
  color: rgba(255, 255, 255, 0.9);
}
.fds-header-bar .fds-nav-whatwedo-icon .bi {
  color: inherit;
}
.fds-nav-whatwedo-icon .bi {
  font-size: 0.72rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-nav-menu .dropdown.show .fds-nav-whatwedo-icon .bi {
  transform: rotate(180deg);
}
.fds-header-bar .fds-nav-whatwedo[aria-expanded="true"] .fds-nav-whatwedo-icon .bi {
  transform: rotate(180deg);
}
.fds-header-bar .fds-nav-whatwedo[aria-expanded="false"] .fds-nav-whatwedo-icon .bi {
  transform: rotate(0deg);
}
/* Chevron genérico do dropdown (outros menus) */
.fds-nav-menu .dropdown-toggle .bi-chevron-down { font-size: 0.65rem; transition: transform 0.2s; }
.fds-nav-menu .dropdown.show .dropdown-toggle .bi-chevron-down { transform: rotate(180deg); }
/* Pill "Soluções" — sobrescreve o 0.65rem acima (mesma especificidade vinha depois e ganhava) */
.fds-header-bar .fds-nav-menu .fds-nav-whatwedo .fds-nav-whatwedo-icon .bi-chevron-down {
  font-size: 0.82rem;
  line-height: 1;
}
.fds-nav-menu .dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
}
.fds-header-bar .dropdown-menu {
  background: #ffffff;
  min-width: 220px;
  padding: 0.75rem 0;
  border-radius: 22px;
}
.fds-header-bar .dropdown-menu .dropdown-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: #111827;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: color 0.2s ease;
}
.fds-header-bar .dropdown-menu .dropdown-item:hover,
.fds-header-bar .dropdown-menu .dropdown-item:focus {
  background-color: #ffffff;
  color: var(--accent);
}

.fds-nav-badge {
  display: inline-block;
  padding: 0.05rem 0.4rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  position: absolute;
  right: 0.1rem;
  top: -0.55rem;
}
.fds-header-bar .fds-nav-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}
.fds-header-bar.header-scrolled .fds-nav-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}
.fds-nav-store-link .fds-nav-store-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  margin-right: 0.05rem;
}
.fds-nav-store-link .fds-nav-badge {
  position: static;
  right: auto;
  top: auto;
  margin-left: 0.35rem;
  padding: 0.12rem 0.42rem;
  font-size: 0.58rem;
  line-height: 1;
  background: var(--accent);
  color: #ffffff;
  letter-spacing: 0.06em;
}
.fds-header-bar.header-scrolled .fds-nav-store-link .fds-nav-badge {
  background: var(--accent);
  color: #ffffff;
}
.fds-nav-menu .dropdown-item { padding: 0.5rem 1rem; }
.fds-nav-menu .dropdown-item:hover,
.fds-nav-menu .dropdown-item:focus {
  background-color: transparent;
  color: var(--accent);
}
.fds-solutions-menu {
  position: fixed !important;
  top: calc(var(--fds-promo-h, 0px) + var(--fds-header-h, 88px)) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-top: 0 !important;
  padding: 3.8rem 0 4.6rem !important;
  min-height: 520px;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--fds-header-bg, #020b2f) !important;
  box-shadow: none !important;
  transform: none !important;
  transform-origin: top center;
  will-change: opacity, transform;
  overflow: hidden;
}
.fds-nav-menu .dropdown-menu.fds-solutions-menu.show {
  animation: fdsMegaMenuReveal 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-solutions-grid {
  width: min(1420px, 100vw);
  max-width: min(1420px, 100vw);
  margin: 0 auto;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.2rem 2.6rem;
  align-items: start;
}
.fds-solutions-col--tools {
  transform: translateX(-7rem);
}
.fds-solutions-title {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 0.55rem;
  text-transform: none;
}
.fds-solutions-link {
  display: block;
  position: relative;
  border-radius: 8px;
  padding: 0.28rem 0.1rem 0.28rem 1rem !important;
  color: #ffffff !important;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
}
.fds-solutions-link::before {
  content: "›";
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent, #2E93EE);
  font-size: 1rem;
  font-weight: 700;
}
.fds-solutions-link:hover,
.fds-solutions-link:focus {
  background: transparent !important;
  color: var(--accent, #2e93ee) !important;
}
.fds-solutions-visual {
  position: absolute;
  right: calc(max(50px, env(safe-area-inset-right, 0px)) + 16.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 24vw, 380px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fds-solutions-visual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 18px;
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.fds-solutions-visual-link:hover,
.fds-solutions-visual-link:focus,
.fds-solutions-visual-link:focus-visible,
.fds-solutions-visual-link:active {
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.fds-solutions-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  opacity: 0.92;
  transform: translateY(10px) scale(0.985);
  filter: blur(1px);
  box-shadow: none !important;
}
.fds-nav-menu .dropdown-menu.fds-solutions-menu.show .fds-solutions-visual img {
  animation: fdsPhoneReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
}
@keyframes fdsMegaMenuReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(0.985);
    filter: blur(1.5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
@keyframes fdsPhoneReveal {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@media (max-width: 1199px) {
  .fds-solutions-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
  }
  .fds-solutions-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: min(980px, 100vw);
    max-width: min(980px, 100vw);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .fds-solutions-visual {
    display: none;
  }
  .fds-solutions-col--tools {
    transform: none;
  }
}
.fds-nav-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}
.fds-nav-right-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fds-header-bar .fds-nav-right-menu > li > a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 0;
  position: relative;
  transition: color 0.2s ease;
}
.fds-header-bar .fds-nav-right-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(-1 * (0.95rem + 1px));
  height: 4px;
  border-radius: 0;
  background: var(--accent, #2E93EE);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.fds-header-bar .fds-nav-right-menu > li > a:hover,
.fds-header-bar .fds-nav-right-menu > li > a:focus-visible {
  color: #ffffff;
  background: transparent;
}
.fds-header-bar .fds-nav-right-menu > li > a:hover::after,
.fds-header-bar .fds-nav-right-menu > li > a:focus-visible::after {
  transform: scaleX(1);
}
.fds-header-bar .fds-nav-right-dropdown > .fds-nav-right-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.fds-header-bar .fds-nav-right-toggle::after {
  display: none;
}
.fds-nav-right-toggle-icon {
  color: var(--accent, #2E93EE);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fds-nav-right-toggle-icon .bi {
  font-size: 0.78rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-header-bar .fds-nav-right-dropdown > .fds-nav-right-toggle[aria-expanded="true"] .fds-nav-right-toggle-icon .bi {
  transform: rotate(180deg);
}
.fds-header-bar .fds-nav-right-dropdown > .fds-nav-right-toggle[aria-expanded="true"]::after,
.fds-header-bar .fds-nav-right-dropdown.show > .fds-nav-right-toggle::after {
  transform: scaleX(1);
}
.fds-nav-right-dropdown {
  position: relative;
}
.fds-nav-right-submenu {
  margin-top: 0 !important;
  min-width: clamp(440px, 44vw, 560px);
  width: max-content;
  max-width: min(92vw, 640px);
  padding: 0.65rem 0 !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: var(--fds-header-bg, #020b2f) !important;
  box-shadow: none !important;
  inset: auto auto auto 0 !important;
  top: calc(100% + 2px) !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
}
.fds-header-bar .dropdown-menu.fds-nav-right-submenu .dropdown-item {
  font-size: 1.02rem;
  font-weight: 600;
  color: #ffffff !important;
  padding: 0.9rem 1.25rem 0.9rem 2.55rem !important;
  white-space: nowrap;
  position: relative;
  line-height: 1.18;
  background: transparent !important;
}
.fds-header-bar .dropdown-menu.fds-nav-right-submenu .dropdown-item::before {
  content: "›";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent, #2E93EE);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.fds-header-bar .dropdown-menu.fds-nav-right-submenu .dropdown-item:hover,
.fds-header-bar .dropdown-menu.fds-nav-right-submenu .dropdown-item:focus,
.fds-header-bar .dropdown-menu.fds-nav-right-submenu .dropdown-item:active {
  background: transparent !important;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .fds-nav-right-menu {
    display: none;
  }
}
.fds-nav-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1.15rem;
  border-radius: 100px;
  border: 1px solid var(--accent, #2e93ee);
  background: var(--accent, #2e93ee);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.fds-nav-login-btn:hover {
  background: var(--accent-hover, #1a7bd4);
  border-color: var(--accent-hover, #1a7bd4);
  color: #ffffff;
}
.fds-nav-login-btn.dropdown-toggle::after {
  display: none;
}

/* Cliente logado no header (foto + nome + Sair) — compacto */
.fds-header-user {
  max-width: min(200px, 32vw);
  gap: 0.35rem !important;
}
.fds-header-user-profile {
  color: #111827;
  min-width: 0;
  max-width: 100%;
  border-radius: 8px;
  padding: 0.1rem 0.3rem 0.1rem 0.1rem;
  gap: 0.4rem !important;
}
.fds-header-user-profile:hover {
  background: transparent;
  color: inherit;
}
.fds-header-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.fds-header-user-avatar--placeholder {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 0.85rem;
}
.fds-header-user-name {
  font-size: 0.72rem;
  font-weight: 500;
  max-width: 92px;
  line-height: 1.2;
  color: #374151;
}
.fds-header-logout-btn {
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #4b5563;
  line-height: 1.2;
  white-space: nowrap;
}
.fds-header-logout-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.fds-header-bar .fds-header-user-profile {
  color: rgba(255, 255, 255, 0.92);
}
.fds-header-bar .fds-header-user-name {
  color: rgba(255, 255, 255, 0.82);
}
.fds-header-bar .fds-header-logout-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
}
.fds-header-bar .fds-header-logout-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.fds-mobile-user-banner {
  border-color: #eef0f6 !important;
  padding-bottom: 0.85rem !important;
  margin-bottom: 0.85rem !important;
}
.fds-mobile-user-banner .fw-semibold {
  font-size: 0.9rem;
}
.fds-mobile-user-banner .small {
  font-size: 0.78rem;
}
.fds-mobile-user-banner .btn {
  margin-top: 0.65rem !important;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
}
.fds-mobile-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.fds-mobile-user-avatar--placeholder {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 1rem;
}

/* Dropdown do botão Entrar (desktop) */
.fds-login-dropdown {
  position: absolute !important; /* garante overlay, não entra no fluxo */
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
  padding: 0.35rem 0;
  min-width: 420px;
  top: calc(100% + 18px);
  right: 0;
  left: auto;
  margin-top: 0;
  z-index: 4000;
}
.fds-login-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 34px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  filter: drop-shadow(0 -1px 0 #e5e7eb);
}
.fds-login-item {
  display: flex !important;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.05rem !important;
}
.fds-login-item:hover,
.fds-login-item:focus {
  background: transparent !important;
}
.fds-login-ico {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  flex: 0 0 auto;
  opacity: 0.85;
  font-size: 1.1rem;
}
.fds-login-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}
.fds-login-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
  color: var(--accent, #2E93EE);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fds-login-sub {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.15;
}
.fds-login-arrow {
  color: #6b7280;
  flex: 0 0 auto;
}

/* Modal login cliente */
.client-login-modal {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}
.client-login-modal .modal-header {
  padding: 1.1rem 1.25rem 0.5rem;
}
.client-login-modal .modal-body {
  padding: 0.75rem 1.25rem 1.25rem;
}
.client-login-dialog.has-hero {
  max-width: 860px;
}
.client-login-layout {
  display: block;
}
.client-login-hero {
  display: none;
}
.client-login-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-login-modal .modal-title {
  font-weight: 700;
  color: #111827;
}
.client-login-form .form-control {
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  border-color: #e5e7eb;
  background: #ffffff;
}
.client-input-wrap {
  position: relative;
}
.client-input-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.95rem;
  pointer-events: none;
}
.client-login-form .form-control.has-icon {
  padding-left: 2.35rem;
}
.client-login-form .form-control.has-toggle {
  padding-right: 2.5rem;
}
.client-input-toggle {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6b7280;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.client-input-toggle:hover {
  background: #f3f4f6;
  color: #374151;
}
.client-login-form .form-control:focus {
  border-color: var(--accent, #2E93EE);
  box-shadow: 0 0 0 4px rgba(46, 147, 238, 0.18);
}
.client-login-btn {
  border-radius: 12px;
  background: var(--accent, #2E93EE);
  border-color: var(--accent, #2E93EE);
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.client-login-btn:hover {
  background: var(--accent-hover, #1a7bd4);
  border-color: var(--accent-hover, #1a7bd4);
  color: #fff;
}
.client-login-forgot {
  color: var(--accent, #2E93EE);
  text-decoration: none;
  font-size: 0.9rem;
}
.client-login-forgot:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .client-login-dialog.has-hero .client-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 407px;
    gap: 1rem;
    align-items: stretch;
  }
  .client-login-dialog.has-hero .client-login-form {
    padding-right: 0.35rem;
  }
  .client-login-dialog.has-hero .client-login-hero {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    width: 407px;
    height: 251px;
    min-height: 251px;
  }
}

/* Backdrop acrílico do modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(15, 23, 42, 0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 6000;
}

/* Garantir modal acima do header (header tem z-index alto) */
.modal {
  z-index: 6010;
}
body.modal-open {
  overflow-y: scroll !important;
  padding-right: 0 !important;
}
.fds-header-bar .fds-nav-icon {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  border-radius: 8px;
}
.fds-header-bar .fds-nav-icon:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.fds-nav-icon {
  color: var(--text);
  font-size: 1.15rem;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s;
}
.fds-nav-icon:hover { color: var(--accent); }
/* Menu hamburger no header escuro */
.fds-header-bar .fds-nav-toggler {
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.fds-header-bar .fds-nav-toggler:hover,
.fds-header-bar .fds-nav-toggler:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.fds-header-bar .fds-nav-toggler:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

/* Header ao rolar: mesmo fundo, sem sombra/linha */
.fds-header-bar.header-scrolled {
  background: var(--fds-header-bg, #020b2f);
  box-shadow: none;
  border-bottom: none;
}
.fds-header-bar.header-scrolled .fds-navbar {
  box-shadow: none;
  border-color: transparent;
}
.fds-header-bar.header-scrolled .fds-logo-link,
.fds-header-bar.header-scrolled .fds-logo-link:hover {
  color: rgba(255, 255, 255, 0.95);
}
.fds-header-bar.header-scrolled .fds-logo-img {
  filter: brightness(0) invert(1);
}
.fds-header-bar.header-scrolled .fds-logo-text {
  color: rgba(255, 255, 255, 0.95);
}
/* Só links do 1.º nível; não afeta .dropdown-item (hover usa --accent) */
.fds-header-bar.header-scrolled .fds-nav-menu > li > a,
.fds-header-bar.header-scrolled .fds-nav-menu > li > a:hover {
  color: rgba(255, 255, 255, 0.88);
}
.fds-header-bar.header-scrolled .fds-nav-menu > li > a:hover {
  color: #ffffff;
}
.fds-header-bar.header-scrolled .fds-nav-login-btn {
  border-color: var(--accent, #2e93ee);
  background: var(--accent, #2e93ee);
  color: #ffffff;
}
.fds-header-bar.header-scrolled .fds-nav-login-btn:hover {
  background: var(--accent-hover, #1a7bd4);
  border-color: var(--accent-hover, #1a7bd4);
  color: #ffffff;
}
.fds-header-bar.header-scrolled .fds-nav-icon,
.fds-header-bar.header-scrolled .fds-nav-icon:hover {
  color: rgba(255, 255, 255, 0.88);
}
.fds-header-bar.header-scrolled .fds-nav-toggler {
  color: rgba(255, 255, 255, 0.85);
}
.fds-header-bar.header-scrolled .fds-nav-toggler:hover,
.fds-header-bar.header-scrolled .fds-nav-toggler:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.fds-header-bar.header-scrolled .fds-header-user-profile {
  color: rgba(255, 255, 255, 0.92);
}
.fds-header-bar.header-scrolled .fds-header-user-name {
  color: rgba(255, 255, 255, 0.82);
}
.fds-header-bar.header-scrolled .fds-header-logout-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
}
.fds-header-bar.header-scrolled .fds-header-logout-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.fds-nav-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  padding: 0.35rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 992px) {
  .fds-nav-center.collapse {
    display: flex !important;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .fds-header-bar .container.fds-header-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .fds-nav-toggler {
    display: flex;
    margin-left: auto;
  }
  .fds-navbar {
    align-items: flex-start;
    border-radius: 0;
    padding: 0.55rem 0;
  }
  .fds-nav-center {
    display: none !important;
    order: 3;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow: hidden;
  }
  .fds-nav-center.collapsing {
    transition: height 0.2s ease-out;
  }
  .fds-nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 0.5rem;
    gap: 0.25rem;
  }
  .fds-header-bar .fds-nav-menu a {
    justify-content: flex-start;
    padding: 0.55rem 0;
    font-size: 1rem;
  }
  .fds-nav-icons {
    display: inline-flex;
    gap: 0.12rem;
    align-self: center;
    margin-left: 0;
  }
  /* Mobile: mantém apenas o carrinho visível ao lado do hambúrguer */
  .fds-nav-icons > :not(.fds-cart-trigger) {
    display: none !important;
  }
}
/* Drawer mobile do menu principal */
.fds-mobile-menu {
  width: min(80vw, 320px) !important;
  border-right: 0;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  z-index: 4100;
  background: var(--fds-header-bg, #020b2f);
  color: #e5efff;
}
.offcanvas-backdrop.show {
  z-index: 4090;
  background-color: rgba(2, 11, 47, 0.62);
}
.fds-mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.95rem 1rem;
}
.fds-mobile-menu-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fds-mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.fds-mobile-menu-logo .fds-logo-img {
  max-height: 28px;
}
.fds-mobile-menu .offcanvas-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.84);
  margin: 0;
}
.fds-mobile-menu .btn-close {
  filter: invert(1) brightness(1.15);
  opacity: 0.82;
}
.fds-mobile-menu .offcanvas-body {
  padding: 0.85rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
}
.fds-mobile-menu .fds-mobile-user-banner {
  border-bottom-color: rgba(148, 163, 184, 0.28) !important;
}
.fds-mobile-menu .fds-mobile-user-banner .text-dark,
.fds-mobile-menu .fds-mobile-user-banner .small {
  color: #eaf2ff !important;
}
.fds-mobile-menu .fds-mobile-user-banner .btn-outline-secondary {
  border-color: rgba(148, 163, 184, 0.38);
  color: #eaf2ff;
  background: rgba(9, 30, 82, 0.66);
}
.fds-mobile-menu .fds-mobile-user-banner .btn-outline-secondary:hover {
  background: rgba(46, 147, 238, 0.16);
  border-color: rgba(46, 147, 238, 0.55);
  color: #fff;
}
.fds-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.fds-mobile-menu-section {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 30, 82, 0.42);
}
.fds-mobile-menu-section-toggle {
  width: 100%;
  border: 0;
  background: rgba(10, 36, 98, 0.55);
  color: #e5efff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fds-mobile-menu-section-toggle--whatwedo {
  background: rgba(10, 36, 98, 0.55);
  border: 0;
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  gap: 0.35rem;
}
.fds-mobile-whatwedo-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #dbe8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}
.fds-mobile-menu-section-toggle .bi {
  transition: transform 0.2s ease;
}
.fds-mobile-menu-section-toggle[aria-expanded="true"] .bi {
  transform: rotate(180deg);
}
.fds-mobile-submenu,
.fds-mobile-main-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fds-mobile-submenu li + li,
.fds-mobile-main-links li + li {
  border-top: 0;
}
.fds-mobile-submenu a,
.fds-mobile-main-links a {
  color: #eaf2ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.fds-mobile-main-links {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 30, 82, 0.42);
}
.fds-mobile-main-links a .bi {
  color: var(--accent, #2E93EE);
}
.fds-mobile-main-links .fds-mobile-main-cta {
  border-top: 0 !important;
  margin-top: 0.6rem;
}
.fds-mobile-main-links .fds-mobile-main-cta + .fds-mobile-main-cta {
  margin-top: 0.45rem;
}
.fds-mobile-main-links .fds-mobile-main-cta a {
  background: var(--accent, #2E93EE);
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(46, 147, 238, 0.22);
}
.fds-mobile-main-links .fds-mobile-main-cta a .bi {
  color: #fff;
}
.fds-mobile-main-links .fds-mobile-main-cta a:hover {
  background: var(--accent-hover, #1a7bd4);
}
.fds-mobile-menu-social {
  margin-top: auto;
  padding-top: 1rem;
}
.fds-mobile-menu-social-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 0.55rem;
}
.fds-mobile-menu-social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.fds-mobile-menu-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(9, 30, 82, 0.72);
  border: 0;
  color: #cfe1ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
}
.fds-mobile-menu-social-links a:hover {
  background: rgba(46, 147, 238, 0.18);
  color: #ffffff;
}
@media (min-width: 992px) {
  .fds-mobile-menu {
    display: none !important;
  }
}
/* Sobrescreve flex-start do breakpoint 991px: logo e hamburger centralizados na vertical */
@media (max-width: 767px) {
  .fds-navbar {
    align-items: center;
  }
}

/* ===== Main ===== */
/* Barra superior simples (Início | Grandes marcas) – fundo branco, aba azul */
.fds-top-strip {
  background: #ffffff;
  font-size: 0.85rem;
  color: #0032ba;
}
.fds-top-strip-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.4rem 0 0;
  position: relative;
}
.fds-top-strip-nav a {
  position: relative;
  color: #0032ba;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 12px 12px 0 0;
}
.fds-top-strip-nav a.active {
  background-color: #0032ba;
  color: #ffffff;
  font-weight: 600;
}
.fds-top-strip-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: transparent;
}

.fds-main {
  min-height: 60vh;
  background: transparent;
}

/* Mesma largura útil da home: alinhamento lateral do hero / FAQ / portfólio (sem cap Bootstrap 1140/1320) */
.fds-main .container {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fds-hero-align-pl);
  padding-right: var(--fds-hero-align-pr);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .fds-main .container {
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
  }
}

/* ===== Faixa: Inclusos em todos os planos ===== */
.fds-included-plans {
  background-color: var(--included-bg, #162736);
  padding: 0;
}
.fds-included-wrap {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  padding-block: 0.8rem;
}
.fds-included-title {
  position: relative;
  padding: 1.05rem 0.95rem;
  background: transparent;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 1;
}
.fds-included-title::after {
  content: none;
}
.fds-included-title h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--included-title, #ffffff);
  font-size: 1.55rem;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fds-included-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fds-included-item {
  position: relative;
  padding: 0.95rem 0.95rem;
  color: #d9e6ef;
  min-height: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fds-included-item + .fds-included-item {
  border-left: 0;
  padding-left: 1.05rem;
}
.fds-included-item + .fds-included-item::before {
  content: "";
  position: absolute;
  left: -0.18rem;
  top: 50%;
  width: 2px;
  height: 30px;
  background: var(--included-divider, #8b5cf6);
  border-radius: 2px;
  transform: translateY(-50%) rotate(16deg);
  opacity: 0.95;
}
.fds-included-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--included-icon, #28c7e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 0.24rem;
}
.fds-included-icon--img {
  color: transparent;
}
.fds-included-icon--img img {
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.fds-included-item h4 {
  margin: 0 0 0.12rem;
  color: var(--included-item-title, #ffffff);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.fds-included-item p {
  margin: 0;
  color: var(--included-item-text, #d5e3ef);
  font-size: 0.66rem;
  line-height: 1.2;
  text-align: center;
  max-width: 205px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Loja de Templates ===== */
.templates-store-section {
  background: #ffffff;
}
.templates-store-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.templates-store-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.templates-store-total {
  font-size: 0.92rem;
  color: #475569;
}
.templates-store-total strong {
  color: var(--accent);
  font-weight: 700;
}

.fds-modal-loja-templates-aviso {
  border-radius: 16px;
  overflow: hidden;
}
.fds-modal-loja-templates-aviso .modal-body {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #334155;
}
.fds-modal-loja-templates-aviso .modal-title {
  color: #0f172a;
}
.fds-loja-templates-aviso-check .form-check-input {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.15rem;
}
.page-loja-templates .fds-loja-templates-aviso-bell {
  position: fixed;
  left: max(10px, env(safe-area-inset-left, 0px));
  bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 10px));
  z-index: 1035;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent, #e10743) 0%, #c10538 100%);
  color: #fff;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fds-loja-bell-float 3s ease-in-out infinite;
}
.page-loja-templates .fds-loja-templates-aviso-bell__ico {
  display: block;
  position: relative;
  z-index: 1;
  animation: fds-loja-bell-shake 2.8s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.page-loja-templates .fds-loja-templates-aviso-bell__ping {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: fds-loja-bell-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.page-loja-templates .fds-loja-templates-aviso-bell__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: #dc2626;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
  animation: fds-loja-bell-badge-pulse 1.8s ease-in-out infinite;
}
.page-loja-templates .fds-loja-templates-aviso-bell:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  color: #fff;
  animation: none;
}
.page-loja-templates .fds-loja-templates-aviso-bell:hover .fds-loja-templates-aviso-bell__ico {
  animation: none;
}
.page-loja-templates .fds-loja-templates-aviso-bell.is-visible {
  display: inline-flex;
}
@keyframes fds-loja-bell-float {
  0%, 100% {
    box-shadow:
      0 4px 16px rgba(15, 23, 42, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 0 0 0 rgba(225, 7, 67, 0.35);
  }
  50% {
    box-shadow:
      0 6px 22px rgba(15, 23, 42, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 0 22px 4px rgba(225, 7, 67, 0.2);
  }
}
@keyframes fds-loja-bell-shake {
  0%, 100% { transform: rotate(0deg); }
  12% { transform: rotate(14deg); }
  24% { transform: rotate(-12deg); }
  36% { transform: rotate(8deg); }
  48% { transform: rotate(-4deg); }
  60% { transform: rotate(0deg); }
}
@keyframes fds-loja-bell-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    opacity: 0.6;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    opacity: 0;
  }
}
@keyframes fds-loja-bell-badge-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.95; }
}
@media (max-width: 575px) {
  .page-loja-templates .fds-loja-templates-aviso-bell {
    bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 8px));
    left: max(8px, env(safe-area-inset-left, 0px));
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }
  .page-loja-templates .fds-loja-templates-aviso-bell__badge {
    font-size: 0.6rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 3px;
  }
}

/* Banner tipo loja-templates (também em Fale Conosco) */
.templates-hero {
  background: var(--fds-hero-bg);
  color: #0f172a;
  padding: 50px 0 50px;
}

/* Hero com fundo por trás da barra de navegação */
.page-loja-templates .templates-hero,
.page-fale-conosco .templates-hero,
.page-wp-care .templates-hero,
.page-sistemas-web .templates-hero,
.page-mapa-do-site .templates-hero,
.page-legal-institucional .templates-hero,
.page-hospedagem-sites .templates-hero,
.page-central-de-ajuda .templates-hero,
.page-registro-dominio .rd-hero {
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: calc(var(--fds-top-fixed) + 40px);
  padding-bottom: 48px;
  position: relative;
  z-index: 0;
  background: #ffffff;
  color: #1e293b;
  overflow: hidden;
}

/* Criação de sites — hero: cor principal do tema, texto e CTAs à esquerda */
.page-criacao-de-sites .templates-hero {
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: calc(var(--fds-top-fixed) + 40px);
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
  background: var(--accent, #2e93ee);
  color: #ffffff;
  overflow: hidden;
}
.page-wp-care .templates-hero {
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: calc(var(--fds-top-fixed) + 64px);
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
  background: var(--fds-header-bg, #020b2f);
  color: #ffffff;
  overflow: hidden;
}
.page-wp-care .templates-hero .templates-hero-title {
  color: #ffffff;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1rem !important;
}
.page-wp-care .templates-hero .fds-blog-list-breadcrumb a,
.page-wp-care .templates-hero .fds-blog-list-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.templates-hero.templates-hero--wpcare {
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: calc(var(--fds-top-fixed) + 64px);
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
  background: var(--fds-header-bg, #020b2f);
  color: #ffffff;
  overflow: hidden;
}
.templates-hero.templates-hero--wpcare .templates-hero-title {
  color: #ffffff;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1rem !important;
}
.templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb a,
.templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-criacao-de-sites .templates-hero.templates-hero--wpcare {
  background: var(--fds-header-bg, #020b2f) !important;
}
.page-criacao-de-sites .templates-hero.templates-hero--wpcare .templates-hero-title {
  text-align: center;
  color: #ffffff !important;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
}
.page-criacao-de-sites .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb {
  justify-content: center;
}
.page-criacao-de-sites .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb a,
.page-criacao-de-sites .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-sistemas-web .templates-hero.templates-hero--wpcare {
  background: var(--fds-header-bg, #020b2f) !important;
}
.page-sistemas-web .templates-hero.templates-hero--wpcare .templates-hero-title {
  text-align: center;
  color: #ffffff !important;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
}
.page-sistemas-web .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb {
  justify-content: center;
}
.page-sistemas-web .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb a,
.page-sistemas-web .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-sistemas-web .wp-care-section img {
  width: 100%;
  height: auto;
  display: block;
}
.sw-intro-section {
  background: #f3f4f6;
  padding: clamp(3rem, 5.4vw, 4.4rem) 0;
}
.sw-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr) minmax(220px, 290px);
  gap: clamp(1.6rem, 2.8vw, 3.4rem);
  align-items: stretch;
}
.sw-intro-media {
  display: flex;
  align-items: center;
}
.sw-intro-media img {
  width: 100%;
  display: block;
}
.sw-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sw-intro-copy h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: #111827;
  max-width: 40rem;
}
.sw-intro-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.45;
  color: #1f2937;
  max-width: 40rem;
}
.sw-intro-cta {
  margin-top: 1.5rem;
  min-height: 52px;
  width: auto;
  max-width: none;
  min-width: clamp(220px, 28vw, 300px);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  letter-spacing: 0.01em;
}
.sw-intro-tech {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sw-intro-tech h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  flex-shrink: 0;
}
.sw-intro-tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.75rem);
  min-height: clamp(200px, 32vh, 280px);
}
.sw-intro-tech-list li {
  min-height: 0;
  border: 1px solid #d5dae2;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.45rem, 1.2vw, 0.65rem);
}
.sw-intro-tech-list li img {
  max-width: 85%;
  max-height: clamp(26px, 3.2vw, 32px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .sw-intro-grid {
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  }
  .sw-intro-tech {
    grid-column: 1 / -1;
    max-width: 640px;
  }
  .sw-intro-tech-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: clamp(160px, 22vw, 220px);
  }
}
@media (max-width: 767px) {
  .sw-intro-cta {
    width: auto;
    max-width: none;
  }
  .sw-intro-tech-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    min-height: clamp(200px, 42vw, 260px);
  }
}
.sw-benefits-section {
  background: linear-gradient(180deg, #eef1f5 0%, #f6f7f9 38%, #f3f4f6 100%);
  padding: clamp(3.2rem, 6vw, 5rem) 0 clamp(3.5rem, 6.2vw, 5.25rem);
}
.sw-benefits-head {
  margin-bottom: clamp(1.75rem, 3.2vw, 2.75rem);
  max-width: 40rem;
}
.sw-benefits-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 72%, #374151);
}
.sw-benefits-title {
  margin: 0;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0f172a;
}
.sw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.85rem);
}
.sw-benefit-card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  background: #fff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #94a3b8 22%, transparent);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 12px 36px -18px rgba(15, 23, 42, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sw-benefit-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 35%, #cbd5e1);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05), 0 20px 44px -20px rgba(15, 23, 42, 0.22);
}
.sw-benefit-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.35rem;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
}
.sw-benefit-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.sw-benefit-card__body p {
  margin: 0;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.58;
  color: #475569;
}
.sw-why-panel {
  margin-top: clamp(2.5rem, 4.5vw, 3.75rem);
  display: flex;
  min-height: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, #94a3b8 18%, transparent);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 16px 48px -24px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}
.sw-why-panel__accent {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 55%, #1e3a5f) 100%);
}
.sw-why-panel__inner {
  padding: clamp(1.6rem, 3vw, 2.35rem) clamp(1.5rem, 3.2vw, 2.75rem) clamp(1.6rem, 3vw, 2.35rem) clamp(1.35rem, 2.5vw, 2rem);
  flex: 1;
  min-width: 0;
}
.sw-why-panel__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #0f172a;
}
.sw-why-panel__text {
  margin: 0;
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.62;
  color: #475569;
  max-width: 58rem;
}
.sw-benefits-cta {
  margin-top: clamp(2.5rem, 4.2vw, 3.5rem);
  display: flex;
  justify-content: center;
}
.sw-benefits-cta__btn {
  min-height: 52px;
  width: auto;
  max-width: none;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  letter-spacing: 0.02em;
}

/* Sistemas Web — responsivo (hero, intro, benefícios, formulário) */
@media (max-width: 1199px) {
  .page-sistemas-web .sw-intro-tech {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .page-sistemas-web .sw-intro-grid {
    gap: clamp(1.1rem, 3.2vw, 1.75rem);
  }
  .page-sistemas-web .sw-intro-media {
    width: 100%;
    max-width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .page-sistemas-web .sw-intro-tech {
    max-width: min(640px, 100%);
  }
  .page-sistemas-web .sw-benefit-card:hover {
    transform: none;
  }
}
@media (max-width: 767px) {
  .page-sistemas-web .sw-intro-section,
  .page-sistemas-web .sw-benefits-section {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .page-sistemas-web .sw-intro-section {
    padding-top: clamp(2.2rem, 6.5vw, 3.2rem);
    padding-bottom: clamp(2.2rem, 6.5vw, 3.2rem);
  }
  .page-sistemas-web .sw-benefits-section {
    padding-top: clamp(2.35rem, 7vw, 3.6rem);
    padding-bottom: clamp(2.5rem, 7.5vw, 4rem);
  }
  .page-sistemas-web .sw-intro-copy h2 {
    font-size: clamp(1.48rem, 6.2vw, 2rem);
  }
  .page-sistemas-web .sw-intro-copy p {
    font-size: clamp(0.94rem, 3.6vw, 1.1rem);
  }
  .page-sistemas-web .sw-intro-tech-list {
    min-height: clamp(160px, 36vw, 230px);
  }
  .page-sistemas-web .sw-benefits-head {
    max-width: none;
  }
  .page-sistemas-web .sw-benefit-card {
    padding: 1.1rem 1.15rem;
    gap: 0.8rem;
  }
  .page-sistemas-web .sw-benefit-card__icon {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.15rem;
  }
  .page-sistemas-web .sw-why-panel {
    margin-top: clamp(2rem, 5vw, 2.75rem);
  }
  .page-sistemas-web .sw-why-panel__inner {
    padding: 1.2rem 1rem 1.2rem 0.95rem;
  }
  .page-sistemas-web .sw-why-panel__accent {
    width: 4px;
  }
  .page-sistemas-web .sw-benefits-cta {
    margin-top: clamp(2rem, 5vw, 2.85rem);
  }
  .page-sistemas-web .fds-criacao-lead-section.wp-care-form-theme {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-top: clamp(2.5rem, 7vw, 3.8rem);
    padding-bottom: clamp(2.75rem, 8vw, 4.25rem);
  }
  .page-sistemas-web .wp-care-form-theme .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }
}
@media (max-width: 575px) {
  .page-sistemas-web .templates-hero.templates-hero--wpcare {
    padding-top: calc(var(--fds-top-fixed) + 40px);
    padding-bottom: 44px;
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare .templates-hero-title {
    font-size: clamp(1.45rem, 7.5vw, 2.05rem);
    line-height: 1.2;
  }
  .page-sistemas-web .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb {
    font-size: clamp(0.8rem, 3.2vw, 0.95rem);
    gap: 0.28rem;
  }
  .page-sistemas-web .wp-care-section img {
    max-height: min(52vh, 420px);
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .page-sistemas-web .sw-intro-tech-list {
    min-height: auto;
    grid-template-rows: repeat(3, minmax(52px, auto));
    gap: 0.55rem;
  }
  .page-sistemas-web .sw-benefits-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }
  .page-sistemas-web .sw-why-panel__title {
    font-size: clamp(1.38rem, 6vw, 1.85rem);
  }
  .page-sistemas-web .sw-why-panel__text {
    font-size: 0.96rem;
  }
}
@media (max-width: 399px) {
  .page-sistemas-web .sw-benefit-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-sistemas-web .sw-benefit-card__icon {
    margin-bottom: 0.1rem;
  }
}

.page-criacao-de-sites .wp-care-section img {
  width: 100%;
  height: auto;
  display: block;
}
.page-landing-pages-e-hotsites .templates-hero {
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: calc(var(--fds-top-fixed) + 64px);
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
  background: #121829;
  color: #ffffff;
  overflow: hidden;
}
.page-landing-pages-e-hotsites .templates-hero .templates-hero-title {
  color: #ffffff;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1rem !important;
}
.page-landing-pages-e-hotsites .templates-hero .fds-blog-list-breadcrumb a,
.page-landing-pages-e-hotsites .templates-hero .fds-blog-list-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-criacao-de-sites .templates-hero .templates-hero-badge {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}
.page-criacao-de-sites .templates-hero .templates-hero-title {
  text-align: left;
  color: #ffffff;
}
.page-criacao-de-sites .templates-hero .templates-hero-subtitle {
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  margin-left: 0;
  margin-right: 0;
  max-width: 38rem;
}
.page-criacao-de-sites .templates-hero .templates-hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}
.page-criacao-de-sites .templates-hero .wp-care-hero-btn--primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--accent, #2e93ee);
}
.page-criacao-de-sites .templates-hero .wp-care-hero-btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #ffffff;
  color: var(--accent-hover, #1a7bd4);
}
.page-criacao-de-sites .templates-hero .wp-care-hero-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}
.page-criacao-de-sites .templates-hero .wp-care-hero-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 991px) {
  .page-criacao-de-sites .templates-hero.templates-hero--wpcare {
    padding-top: calc(var(--fds-top-fixed) + 48px);
    padding-bottom: 56px;
  }
  .page-criacao-de-sites .templates-hero.templates-hero--wpcare .templates-hero-title {
    font-size: clamp(1.9rem, 5.8vw, 3rem);
  }
  .page-criacao-de-sites .fds-criacao-sites-services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-criacao-de-sites .fds-criacao-sites-services__card {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-criacao-de-sites .fds-criacao-diferenciais__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-criacao-de-sites .fds-criacao-portfolio__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
}
@media (max-width: 767px) {
  .page-criacao-de-sites .templates-hero.templates-hero--wpcare {
    padding-top: calc(var(--fds-top-fixed) + 34px);
    padding-bottom: 42px;
  }
  .page-criacao-de-sites .templates-hero.templates-hero--wpcare .templates-hero-title {
    font-size: clamp(1.62rem, 7.2vw, 2.2rem);
    line-height: 1.18;
  }
  .page-criacao-de-sites .templates-hero.templates-hero--wpcare .fds-blog-list-breadcrumb {
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    text-align: center;
  }
  .page-criacao-de-sites .fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__track {
    gap: 1rem;
  }
  .page-criacao-de-sites .fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__track span {
    font-size: clamp(1rem, 4.7vw, 1.32rem);
  }
  .page-criacao-de-sites .fds-criacao-sites-services {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .page-criacao-de-sites .fds-criacao-sites-services__card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .page-criacao-de-sites .fds-criacao-sites-services__icon {
    width: 62px;
  }
  .page-criacao-de-sites .fds-criacao-diferenciais__grid {
    grid-template-columns: 1fr;
  }
  .page-criacao-de-sites .fds-criacao-diferenciais__intro h2 {
    font-size: clamp(1.3rem, 6.1vw, 1.8rem);
  }
  .page-criacao-de-sites .fds-criacao-portfolio__intro h2 {
    font-size: clamp(1.26rem, 5.8vw, 1.85rem);
  }
  .page-criacao-de-sites .fds-criacao-diferenciais__btn {
    width: 100%;
    max-width: 420px;
  }
  .page-criacao-de-sites #criacaoLeadForm .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.32rem, 6.3vw, 1.82rem);
  }
}

/* Criação de sites — hero: WordPress + PHP sobrepostos (tom claro, efeito mesclado) */
.page-criacao-de-sites .cds-hero-stack {
  width: 100%;
  max-width: 420px;
}
/* Faixa de tecnologias — grelha estática, logos cinza, tamanho único */
.page-criacao-de-sites .cds-tech-strip-full {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 1.35rem 0 1.5rem;
  /* Igual ao bloco .fds-portfolio-safari (portfólio) */
  background: #fafafa;
  border-bottom: none;
  overflow: hidden;
}
.page-criacao-de-sites .cds-tech-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: center;
  justify-items: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.page-criacao-de-sites .cds-tech-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
}
.page-criacao-de-sites .cds-tech-logo-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%) brightness(0.3) contrast(0.9);
  opacity: 0.62;
}
.page-criacao-de-sites .cds-tech-logo-img[alt="WooCommerce"] {
  width: 98px;
  height: 98px;
  max-width: 98px;
  max-height: 98px;
}
.page-criacao-de-sites .cds-tech-logo-img[alt="JavaScript"] {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
}
.page-criacao-de-sites .cds-tech-logo-img[alt="WordPress"] {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
}
@media (max-width: 767px) {
  .page-criacao-de-sites .cds-tech-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 399px) {
  .page-criacao-de-sites .cds-tech-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-criacao-de-sites .cds-hero-stack-inner {
  position: relative;
  width: 100%;
  isolation: isolate;
}
.page-criacao-de-sites .cds-hero-stack-inner::before {
  content: "";
  position: absolute;
  left: 5%;
  right: -5%;
  top: 10%;
  bottom: 10%;
  background: radial-gradient(ellipse 90% 80% at 55% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}
.page-criacao-de-sites .cds-hero-orbit-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
}
.page-criacao-de-sites .cds-hero-browser-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
.page-criacao-de-sites .cds-hero-browser {
  position: relative;
  width: clamp(132px, 36vw, 168px);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.page-criacao-de-sites .cds-hero-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-criacao-de-sites .cds-hero-browser-dots {
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
}
.page-criacao-de-sites .cds-hero-browser-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.page-criacao-de-sites .cds-hero-browser-dots i:nth-child(1) {
  background: #fb7185;
}
.page-criacao-de-sites .cds-hero-browser-dots i:nth-child(2) {
  background: var(--accent, #2E93EE);
}
.page-criacao-de-sites .cds-hero-browser-dots i:nth-child(3) {
  background: #34d399;
}
.page-criacao-de-sites .cds-hero-browser-url {
  flex: 1;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.page-criacao-de-sites .cds-hero-browser-viewport {
  position: relative;
  min-height: 72px;
  padding: 10px 10px 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-criacao-de-sites .cds-hero-browser-line {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
  width: 100%;
}
.page-criacao-de-sites .cds-hero-browser-line--mid {
  width: 78%;
  opacity: 0.85;
}
.page-criacao-de-sites .cds-hero-browser-line--short {
  width: 52%;
  opacity: 0.7;
}
.page-criacao-de-sites .cds-hero-browser-cursor {
  position: absolute;
  right: 12%;
  bottom: 14%;
  font-size: 1.35rem;
  line-height: 1;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  animation: cds-hero-cursor-tap 1.85s ease-in-out infinite;
}
.page-criacao-de-sites .cds-hero-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(300px, 80%);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: cds-hero-orbit-spin 16s linear infinite;
}
.page-criacao-de-sites .cds-hero-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}
.page-criacao-de-sites .cds-hero-orbit-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.page-criacao-de-sites .cds-hero-orbit-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.98;
  animation: cds-hero-orbit-counter 16s linear infinite;
}
.page-criacao-de-sites .cds-hero-orbit-item--top {
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}
.page-criacao-de-sites .cds-hero-orbit-item--right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.page-criacao-de-sites .cds-hero-orbit-item--bottom {
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.page-criacao-de-sites .cds-hero-orbit-item--left {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes cds-hero-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes cds-hero-orbit-counter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes cds-hero-cursor-tap {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  42% {
    transform: translate(-3px, 2px) scale(0.94);
  }
  52% {
    transform: translate(-1px, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-criacao-de-sites .cds-hero-orbit,
  .page-criacao-de-sites .cds-hero-orbit-item img {
    animation: none !important;
  }
  .page-criacao-de-sites .cds-hero-browser-cursor {
    animation: none !important;
  }
}
@media (min-width: 992px) {
  .page-criacao-de-sites .cds-hero-stack {
    max-width: 420px;
  }
  .page-criacao-de-sites .cds-hero-orbit-wrap {
    min-height: 320px;
  }
}

.page-registro-dominio .rd-hero-globe-bg {
  position: absolute;
  z-index: 0;
  right: max(-4rem, -8vw);
  top: 42%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  color: #94a3b8;
  opacity: 0.22;
  font-size: clamp(11rem, 32vw, 22rem);
}
.page-registro-dominio .rd-hero-globe-bg i {
  display: block;
}
.page-registro-dominio .rd-hero-main {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-registro-dominio .rd-hero-globe-bg {
    right: -18vw;
    top: 28%;
    opacity: 0.14;
    font-size: clamp(7rem, 58vw, 13rem);
  }
}
.rd-hero-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.75rem;
}
.rd-hero-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 42rem;
  margin-bottom: 0.65rem;
  text-align: left;
}
.rd-hero-title-muted {
  color: #0f172a;
}
.rd-hero-title-accent {
  color: #e11d74;
  display: inline;
}
.rd-hero-lead {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.35rem;
  max-width: 36rem;
}
.rd-hero-card {
  max-width: 920px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.15rem 1.15rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.rd-hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rd-hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: #f1f5f9;
  color: #334155;
}
.rd-hero-tab:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.rd-hero-tab.is-active {
  background: #334155;
  color: #fff;
}
.rd-hero-tab.is-active i {
  color: inherit;
}
.rd-hero-form {
  margin: 0;
}
.rd-hero-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.rd-hero-search-field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.rd-hero-search-ico {
  display: flex;
  align-items: center;
  padding-left: 0.9rem;
  color: #94a3b8;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rd-hero-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0.75rem 0.75rem 0.75rem 0.35rem;
  font-size: 1rem;
  color: #0f172a;
}
.rd-hero-search-input::placeholder {
  color: #94a3b8;
}
.rd-hero-search-submit {
  flex-shrink: 0;
  border: none;
  padding: 0 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: #e11d74;
  cursor: pointer;
  transition: background 0.2s, filter 0.2s;
}
.rd-hero-search-submit:hover {
  background: #c91663;
  color: #fff;
}
.rd-hero-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rd-hero-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.35rem 0.65rem;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  border-right: 1px solid #e2e8f0;
}
.rd-hero-price-item:last-child {
  border-right: none;
}
.rd-hero-price-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}
.rd-hero-panel--ia {
  padding-top: 0.25rem;
}
.rd-hero-ia-text {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  max-width: 36rem;
}
.rd-hero-ia-btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  background: #e11d74;
  border: 1px solid #e11d74;
  color: #fff;
}
.rd-hero-ia-btn:hover {
  background: #c91663;
  border-color: #c91663;
  color: #fff;
}
.rd-hero-ia-btn--outline {
  background: #fff;
  border-color: #e2e8f0;
  color: #334155;
}
.rd-hero-ia-btn--outline:hover {
  border-color: #e11d74;
  color: #e11d74;
  background: #fff;
}
.rd-hero-links a {
  color: #64748b;
}
.rd-hero-links a:hover {
  color: #e11d74;
}
.rd-hero-links-sep {
  margin: 0 0.35rem;
  color: #cbd5e1;
}

/* Resultados da busca — registro de domínio (destaques + outras opções) */
.page-registro-dominio-resultados {
  scroll-margin-top: calc(var(--fds-top-fixed) + 12px);
}
.rd-result-spinner {
  color: #0f766e;
  border-color: rgba(13, 148, 136, 0.25);
  border-right-color: #0d9488;
}
.rd-result-layout {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.rd-result-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rd-result-card-head {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rd-result-card--exact .rd-result-card-head {
  background: linear-gradient(180deg, #e0f2fe 0%, #dbeafe 100%);
  color: #0369a1;
}
.rd-result-card--bundle .rd-result-card-head {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent, #2E93EE) 22%, #ffffff 78%) 0%,
    color-mix(in srgb, var(--accent, #2E93EE) 38%, #ffffff 62%) 100%
  );
  color: #0b4f82;
}
.rd-result-card-body {
  padding: 1.1rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rd-result-domain {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d9488;
  word-break: break-word;
  margin-bottom: 0.5rem;
}
.rd-result-preco {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.rd-result-preco-suf {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
}
.rd-result-disclaimer {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 0.65rem;
}
.rd-result-status--ok {
  color: #0f766e;
}
.rd-result-status--no {
  color: #b91c1c;
}
.rd-result-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}
.rd-result-btn-reg {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border: 2px solid #0d9488;
  background: #fff;
  color: #0d9488;
}
.rd-result-btn-reg:hover:not(:disabled) {
  background: #f0fdfa;
  color: #0f766e;
  border-color: #0f766e;
}
.rd-result-btn-reg:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.rd-result-btn-pacote {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  background: #0d9488;
  border: 1px solid #0d9488;
  color: #fff;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.rd-result-btn-pacote:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}
.rd-result-bundle-lead {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.45;
}
.rd-result-foot {
  color: #94a3b8;
  line-height: 1.4;
}
.rd-result-outras-wrap {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}
.rd-result-outras-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.rd-result-outras-list {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.rd-result-outras-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.rd-result-outras-item:last-child {
  border-bottom: none;
}
.rd-result-outras-name {
  font-weight: 600;
  color: #0d9488;
  word-break: break-word;
  min-width: 0;
  flex: 1 1 200px;
}
.rd-result-outras-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.rd-result-outras-preco {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}
.rd-result-btn-reg-outline {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border: 2px solid #0d9488;
  background: #fff;
  color: #0d9488;
  font-size: 0.85rem;
}
.rd-result-btn-reg-outline:hover:not(:disabled) {
  background: #f0fdfa;
  color: #0f766e;
}
.rd-result-btn-reg-outline:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 575px) {
  .rd-hero-prices {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .rd-hero-price-item {
    flex: 0 0 auto;
  }
  .rd-hero-search {
    flex-direction: column;
    align-items: stretch;
  }
  .rd-hero-search-field {
    border-bottom: 1px solid #e2e8f0;
  }
  .rd-hero-search-submit {
    width: 100%;
    border-radius: 0;
    padding: 0.75rem 1rem;
  }
}
.templates-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #334155;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  margin-bottom: 0.9rem;
}
.templates-hero-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}
.templates-hero-subtitle {
  font-size: 1rem;
  color: #334155;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.templates-hero-cta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}
.templates-hero-whatsapp {
  border-radius: 999px;
  background: #ffffff;
  border: none;
  color: #0030b9;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 18px rgba(15,23,42,0.3);
}
.templates-hero-whatsapp i {
  font-size: 1.1rem;
}
.templates-hero-whatsapp:hover {
  background: #e5edff;
  color: #001a72;
}

.templates-hero-search-wrap {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}
.templates-hero-search {
  width: min(760px, 100%);
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  padding: 0.3rem 0.3rem 0.3rem 2.7rem;
}
.templates-hero-search-ico {
  position: absolute;
  left: 1rem;
  color: #64748b;
  font-size: 1rem;
}
.templates-hero-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1rem;
  padding: 0.58rem 0.45rem;
}
.templates-hero-search-input::placeholder {
  color: #94a3b8;
}
.templates-hero-search-btn {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.62rem 1.15rem;
  min-width: 114px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.templates-hero-search-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .templates-hero-title {
    font-size: 2rem;
  }
  .templates-hero-search {
    padding: 0.25rem 0.25rem 0.25rem 2.35rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  .templates-hero-search-ico {
    position: absolute;
    left: 0.78rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .templates-hero-search-input {
    flex: 1 1 auto;
    padding: 0.45rem 0.35rem;
    font-size: 0.95rem;
  }
  .templates-hero-search-btn {
    margin: 0;
    min-width: 98px;
    padding: 0.54rem 0.85rem;
    font-size: 0.92rem;
  }
}

.templates-sidebar {
  border-radius: 18px;
  padding: 1.1rem 1rem 0.95rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(var(--bs-primary-rgb, 46, 147, 238), 0.2);
  box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.1);
}
.templates-sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.65rem;
}
.templates-sidebar-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.templates-filter-pill {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  width: 100%;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.52rem 0.8rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.06);
  color: #334155;
  margin-bottom: 0.45rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.templates-filter-pill .bi {
  font-size: 0.95rem;
  line-height: 1;
  color: #64748b;
}
.templates-filter-pill:hover {
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.13);
  border-color: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.22);
  color: var(--accent-hover);
}
.templates-filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.templates-filter-pill.active .bi {
  color: #fff;
}
.templates-sidebar-highlight {
  margin-top: 1rem;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.1);
  border: 1px dashed rgba(var(--bs-primary-rgb, 46, 147, 238), 0.45);
  font-size: 0.85rem;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}
.templates-download-widget {
  margin-bottom: 0.7rem;
}
.templates-download-widget-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.templates-download-widget-top .bi {
  font-size: 1rem;
  color: #15803d;
  animation: templates-download-icon-bob 1.6s ease-in-out infinite;
}
.templates-download-bar-track {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(22, 163, 74, 0.35);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}
.templates-download-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, #15803d 0%, #22c55e 40%, #4ade80 75%, #16a34a 100%);
  background-size: 200% 100%;
  animation:
    templates-download-fill-loop 2.1s ease-in-out infinite,
    templates-download-bar-hue 3.5s linear infinite;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.45);
}
.templates-download-bar-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: templates-download-shimmer-slide 1.6s linear infinite;
  pointer-events: none;
}
.templates-sidebar-highlight strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.templates-sidebar-highlight > span {
  display: block;
  line-height: 1.4;
}
@keyframes templates-download-fill-loop {
  0%,
  100% {
    width: 32%;
  }
  50% {
    width: 100%;
  }
}
@keyframes templates-download-bar-hue {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes templates-download-shimmer-slide {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes templates-download-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

.templates-sidebar-cta {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(var(--bs-primary-rgb, 46, 147, 238), 0.22);
  color: #0f172a;
  box-shadow: 0 8px 22px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.08);
}
.templates-sidebar-cta h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #111827;
}
.templates-sidebar-cta p {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.templates-sidebar-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.templates-sidebar-cta-link i {
  font-size: 1rem;
}
.templates-sidebar-cta-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}
.templates-pagination .page-link {
  border-radius: 999px !important;
  border: 1px solid #dbe5f1;
  background: #ffffff;
  color: #475569;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.templates-pagination .page-link:hover {
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.08);
  border-color: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.3);
  color: var(--accent);
}
.templates-pagination .page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.templates-pagination .page-item.disabled .page-link {
  opacity: 0.5;
}
.template-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.13);
}
.template-card-thumb {
  position: relative;
  background: #f8fafc;
  padding-top: 68%;
  overflow: hidden;
}
.template-card-promo-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  display: inline-block;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  padding: 0.2rem 0.72rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.template-card-promo-badge::after {
  content: " 🔥";
  display: inline-block;
  animation: promoFirePulse 1s ease-in-out infinite;
  transform-origin: center;
}
@keyframes promoFirePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.template-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.template-card:hover .template-card-thumb img {
  transform: scale(1.02);
}
.template-card-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 2rem;
}
.template-card-body {
  padding: 1.05rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.template-card-title {
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
  color: #172554;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.template-card-meta {
  font-size: 0.84rem;
  color: #64748b !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.4rem;
}
.template-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #64748b;
}
.template-card-cat .bi {
  font-size: 0.84rem;
  color: var(--accent);
}
.template-card-delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: -0.1rem;
  margin-bottom: 0.2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.1);
  border: 1px solid rgba(var(--bs-primary-rgb, 46, 147, 238), 0.2);
  color: #1e293b;
  font-size: 0.76rem;
  font-weight: 600;
}
.template-card-delivery .bi {
  font-size: 0.78rem;
  color: var(--accent);
}

/* ===== Fale Conosco ===== */
.contact-hero {
  background: #0030b9;
  color: #fff;
}
.contact-hero-wrap {
  padding: 2.6rem 0 2.1rem;
}
.contact-hero-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
}
.contact-section {
  background: #ffffff;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2.25rem 2rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #eef0f6;
}
.contact-card .form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
}
.contact-input {
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  min-height: 52px;
  padding: 0.75rem 1.25rem;
}
.contact-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light, rgba(46, 147, 238, 0.2));
  background: #ffffff;
  outline: none;
}
.contact-input[rows] {
  border-radius: 12px;
  min-height: 140px;
  padding: 1rem 1.25rem;
}
.contact-submit-btn {
  border-radius: 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 600;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 8px 20px var(--accent-light-2, rgba(46, 147, 238, 0.2));
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.contact-submit-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 12px 28px var(--accent-light-2, rgba(46, 147, 238, 0.28));
  transform: translateY(-1px);
  color: #ffffff;
}
.contact-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  border: 1px solid #e5e7eb;
}
.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-info-text {
  font-size: 0.9rem;
  color: #6b7280;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.4rem;
}
.contact-info-list i {
  color: var(--accent);
}
.contact-info-note {
  margin-top: 1.25rem;
  padding: 1.1rem 1.1rem;
  border-radius: 12px;
  background: var(--fds-hero-bg);
  font-size: 0.85rem;
  color: #374151;
  border: 1px solid #e8e4e0;
}
.contact-info-note h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.contact-note-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-note-links li + li {
  margin-top: 0.2rem;
}
.contact-note-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: #1f2937;
  padding: 0.35rem 0.6rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.contact-note-links a i {
  font-size: 0.9rem;
  color: var(--accent);
}
.contact-note-links a:hover {
  background-color: var(--accent-light, rgba(46, 147, 238, 0.12));
  color: var(--accent);
  transform: translateY(-0.5px);
}
.contact-client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  border-radius: 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  box-shadow: 0 6px 18px var(--accent-light-2, rgba(46, 147, 238, 0.25));
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.contact-client-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--accent-light-2, rgba(46, 147, 238, 0.35));
  transform: translateY(-1px);
}

/* ===== WP Care (landing) ===== */
.wp-care-hero-btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.wp-care-hero-btn--primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}
.wp-care-hero-btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}
.wp-care-hero-btn--outline {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
}
.wp-care-hero-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}
.wp-care-hero-btn--light {
  background: #fff;
  border: 1px solid #fff;
  color: var(--accent);
}
.wp-care-hero-btn--light:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-hover);
  border-color: #fff;
}
.wp-care-section--muted {
  background: #f8fafc;
}
.wp-care-section--hero-bg {
  background: var(--fds-hero-bg);
}
/* Faixa de tecnologias (WP Care) — visual premium */
.wp-care-tech-strip {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background: #ffffff;
  border-bottom: 1px solid #eef0f6;
  overflow: hidden;
}
@media (min-width: 992px) {
  .wp-care-tech-strip {
    padding: 4rem 0 4.5rem;
  }
}
.wp-care-tech-head {
  position: relative;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}
@media (min-width: 768px) {
  .wp-care-tech-head {
    margin-bottom: 2.75rem;
  }
}
.wp-care-tech-kicker {
  position: relative;
  display: inline-block;
  padding-bottom: 0.85rem;
  margin-bottom: 0.35rem;
}
.wp-care-tech-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(120px, 40vw);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.9;
}
.wp-care-tech-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0a0f1a;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.wp-care-tech-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 32rem;
  margin-bottom: 0;
  font-weight: 400;
}
.wp-care-tech-panel {
  position: relative;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem 1.75rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.08);
}
@media (min-width: 768px) {
  .wp-care-tech-panel {
    padding: 2rem 1.75rem 2.25rem;
  }
}
.wp-care-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 576px) {
  .wp-care-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .wp-care-tech-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
  }
}
/* Sistemas Web: 6 tecnologias na grelha (desktop) */
.page-sistemas-web .wp-care-tech-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 576px) {
  .page-sistemas-web .wp-care-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .page-sistemas-web .wp-care-tech-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* Sistemas Web — timeline vertical (metodologia) */
.page-sistemas-web .sw-methodology .sw-timeline {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-sistemas-web .sw-timeline-item {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  list-style: none;
}
@media (min-width: 576px) {
  .page-sistemas-web .sw-timeline-item {
    gap: 1.35rem;
  }
}
.page-sistemas-web .sw-timeline-item + .sw-timeline-item {
  margin-top: 0.25rem;
}
.page-sistemas-web .sw-timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  flex-shrink: 0;
}
@keyframes sw-timeline-dot-breathe {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.18) inset,
      0 6px 18px rgba(49, 65, 79, 0.35),
      0 0 0 0 rgba(49, 65, 79, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 8px 22px rgba(49, 65, 79, 0.45),
      0 0 0 10px rgba(49, 65, 79, 0);
    transform: scale(1.02);
  }
}
@keyframes sw-timeline-connector-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 200%;
  }
}
.page-sistemas-web .sw-timeline-dot {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  color: #fff;
  background: #31414f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 6px 18px rgba(49, 65, 79, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  animation: sw-timeline-dot-breathe 2.6s ease-in-out infinite;
}
.page-sistemas-web .sw-timeline-item:nth-child(1) .sw-timeline-dot {
  animation-delay: 0s;
}
.page-sistemas-web .sw-timeline-item:nth-child(2) .sw-timeline-dot {
  animation-delay: 0.35s;
}
.page-sistemas-web .sw-timeline-item:nth-child(3) .sw-timeline-dot {
  animation-delay: 0.7s;
}
.page-sistemas-web .sw-timeline-item:nth-child(4) .sw-timeline-dot {
  animation-delay: 1.05s;
}
.page-sistemas-web .sw-timeline-dot i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}
.page-sistemas-web .sw-timeline-item:hover .sw-timeline-dot {
  animation-play-state: paused;
  transform: scale(1.08) rotate(-2deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 10px 28px rgba(49, 65, 79, 0.5),
    0 0 0 4px rgba(49, 65, 79, 0.22);
}
.page-sistemas-web .sw-timeline-item:hover .sw-timeline-dot i {
  transform: scale(1.12);
}
.page-sistemas-web .sw-timeline-connector {
  flex: 1 1 auto;
  width: 3px;
  min-height: 1.25rem;
  margin-top: 0.4rem;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    #31414f 0%,
    rgba(49, 65, 79, 0.5) 28%,
    rgba(49, 65, 79, 0.12) 62%,
    #e2e8f0 100%
  );
  background-size: 100% 220%;
  animation: sw-timeline-connector-flow 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .page-sistemas-web .sw-timeline-dot,
  .page-sistemas-web .sw-timeline-connector {
    animation: none !important;
  }
  .page-sistemas-web .sw-timeline-dot {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.18) inset,
      0 6px 18px rgba(49, 65, 79, 0.32);
  }
  .page-sistemas-web .sw-timeline-item:hover .sw-timeline-dot {
    transform: none;
  }
  .page-sistemas-web .sw-timeline-item:hover .sw-timeline-dot i {
    transform: none;
  }
}
.page-sistemas-web .sw-timeline-item:last-child .sw-timeline-connector {
  display: none;
}
.page-sistemas-web .sw-timeline-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.25rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.page-sistemas-web .sw-timeline-item:last-child .sw-timeline-card {
  margin-bottom: 0;
}
.page-sistemas-web .sw-timeline-item:hover .sw-timeline-card {
  border-color: rgba(49, 65, 79, 0.22);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.page-sistemas-web .sw-timeline-step {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #31414f;
  margin-bottom: 0.35rem;
}
.page-sistemas-web .sw-timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.page-sistemas-web .sw-timeline-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
}

/* Registro de domínio — busca rápida (inline) */
.page-registro-dominio .rd-busca-inline {
  max-width: 520px;
}
.page-registro-dominio .rd-busca-inline-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.page-registro-dominio .rd-busca-inline-group .form-control:focus {
  box-shadow: none;
  border-color: #e2e8f0;
}
.page-registro-dominio .rd-busca-www {
  font-weight: 600;
  color: #64748b;
  border-color: #e2e8f0 !important;
}
.wp-care-tech-item {
  list-style: none;
  min-height: 100%;
}
.wp-care-tech-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 0.85rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.wp-care-tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 147, 238, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow:
    0 20px 40px -16px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(46, 147, 238, 0.1);
}
.wp-care-tech-ico-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.15);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.wp-care-tech-card:hover .wp-care-tech-ico-wrap {
  transform: scale(1.04);
  box-shadow: 0 12px 28px -8px rgba(46, 147, 238, 0.25);
}
.wp-care-tech-ico-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* JetEngine: Bootstrap Icons (mesma stack do admin — bi bi-*) */
.wp-care-tech-ico-wrap--bi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-care-tech-bi {
  font-size: 2.35rem;
  line-height: 1;
  color: #616cc1;
  display: block;
}
.wp-care-tech-card:hover .wp-care-tech-bi {
  color: var(--accent);
}
.wp-care-tech-name {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.wp-care-tech-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.3;
}
.wp-care-tech-card:hover .wp-care-tech-tag {
  color: var(--accent);
}

/* Hospedagem — faixa de tecnologias sem borda inferior */
.page-hospedagem-sites .wp-care-tech-strip {
  border-bottom: none;
}

/* Hospedagem — faixa de logos em scroll infinito */
.page-hospedagem-sites .hs-logo-marquee-box {
  margin-top: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  padding: 1.15rem 0;
  overflow: hidden;
}
.page-hospedagem-sites .hs-logo-marquee {
  overflow: hidden;
}
.page-hospedagem-sites .hs-logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.85rem);
  padding: 0 0.5rem;
  animation: hs-logo-marquee-x 48s linear infinite;
  will-change: transform;
}
@keyframes hs-logo-marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hospedagem-sites .hs-logo-marquee-track {
    animation: none;
  }
}
.page-hospedagem-sites .hs-logo-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.page-hospedagem-sites .hs-logo-marquee-img {
  height: 38px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
  opacity: 0.92;
}
.page-hospedagem-sites .hs-logo-marquee-text {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
  white-space: nowrap;
  line-height: 1;
}

/* Hospedagem — bloco de estatísticas de performance */
.page-hospedagem-sites .hs-perf-section {
  border-top: none;
}
.page-hospedagem-sites .hs-perf-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1d2144;
  line-height: 1.25;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.65rem;
}
.page-hospedagem-sites .hs-perf-subtitle {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.page-hospedagem-sites .hs-perf-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 16px;
  padding: 1.5rem 1.15rem 1.6rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.page-hospedagem-sites .hs-perf-card:hover {
  border-color: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.25);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}
.page-hospedagem-sites .hs-perf-card-ico-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.page-hospedagem-sites .hs-perf-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 1.45rem;
  color: #ffffff;
  background: #31414f;
  box-shadow: none;
}
.page-hospedagem-sites .hs-perf-card-stat {
  font-size: clamp(2rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent, #2e93ee);
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
}
.page-hospedagem-sites .hs-perf-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5c6378;
}
.page-hospedagem-sites .hs-perf-footnote {
  font-size: 0.72rem;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Fundo em diagonal (hero → branco), estilo “tilt” entre secções */
.wp-care-section--split-diagonal {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.wp-care-section--split-diagonal::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--fds-hero-bg);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 100%);
  z-index: 0;
  pointer-events: none;
}
.wp-care-section--split-diagonal > .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .wp-care-section--split-diagonal::before {
    clip-path: polygon(0 0, 100% 0, 100% 36%, 0 92%);
  }
}

/* Hospedagem — evita friso horizontal no topo da secção Segmentos (junção hero-bg → split-diagonal) */
.page-hospedagem-sites .wp-care-section--hero-bg {
  border-bottom: none;
  box-shadow: none;
}
.page-hospedagem-sites .wp-care-section--split-diagonal {
  margin-top: -1px;
  border-top: none;
  box-shadow: none;
}
.page-hospedagem-sites .wp-care-section--split-diagonal::before {
  top: -1px;
  bottom: auto;
  height: calc(100% + 2px);
}

.wp-care-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.wp-care-h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .wp-care-h2 {
    font-size: 1.85rem;
  }
}
.wp-care-lead {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
}
.wp-care-narrow {
  max-width: 640px;
}
.wp-care-media {
  margin: 0 auto;
  max-width: min(520px, 96%);
}
.wp-care-media-img {
  display: block;
  width: 100%;
  height: auto;
}
.wp-care-visual {
  min-height: 220px;
  background: linear-gradient(145deg, var(--accent-light, rgba(46, 147, 238, 0.12)), #fff);
  border: 1px solid #e5e7eb;
}
.wp-care-visual--alt {
  background: linear-gradient(145deg, #fff, var(--accent-light, rgba(46, 147, 238, 0.1)));
}
.wp-care-visual-ico {
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.85;
}

/* Assistência em todo o ciclo — monitor WordPress (visual refinado) */
.wp-care-cycle-row {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 1rem;
}
@media (min-width: 992px) {
  .wp-care-cycle-row {
    --bs-gutter-x: 0.65rem;
  }
}
.wp-care-monitor-wrap {
  width: 100%;
  max-width: min(400px, 100%);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .wp-care-monitor-wrap {
    margin-left: auto;
    margin-right: 0;
  }
}
.wp-care-monitor {
  position: relative;
  min-height: 240px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-care-monitor__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef1f4;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 16px 40px -20px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.wp-care-monitor__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid #f4f6f8;
  background: #fafbfc;
}
.wp-care-monitor__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7c8794;
}
.wp-care-monitor__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8eb8a8;
  box-shadow: 0 0 0 0 rgba(142, 184, 168, 0.35);
  animation: wp-care-dot-pulse 2.8s ease-out infinite;
}
.wp-care-monitor__chip {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6b7785;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #f1f3f5;
  border: 1px solid #e8ecf0;
}
.wp-care-monitor__main {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 0.9rem 0.95rem;
}
.wp-care-monitor__wp-ico {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7f9;
  border: 1px solid #eceff2;
  box-shadow: none;
  animation: wp-care-wp-float 5s ease-in-out infinite;
}
.wp-care-monitor__wp-ico i {
  font-size: 1.85rem;
  color: #6d7a88;
  line-height: 1;
}
.wp-care-monitor__side {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wp-care-monitor__metric-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8b2bd;
  margin-bottom: 0.1rem;
}
.wp-care-monitor__metric-value {
  display: flex;
  align-items: baseline;
  gap: 0.08rem;
  font-variant-numeric: tabular-nums;
}
.wp-care-monitor__metric-num {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #4a5562;
}
.wp-care-monitor__metric-suffix {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8e9aa8;
}
.wp-care-monitor__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 34px;
  padding-top: 0.15rem;
}
.wp-care-monitor__chart span {
  flex: 0 0 5px;
  width: 5px;
  min-width: 5px;
  height: 100%;
  border-radius: 3px;
  transform-origin: bottom center;
  transform: scaleY(0.42);
  opacity: 0.88;
  animation: wp-care-bar 2.4s ease-in-out infinite;
}
/* Tons desaturados: sage e cinza-azulado */
.wp-care-monitor__chart span:nth-child(odd) {
  background: linear-gradient(180deg, #c5d4ce 0%, #9eafa8 100%);
}
.wp-care-monitor__chart span:nth-child(even) {
  background: linear-gradient(180deg, #c5ccd4 0%, #9aa3ae 100%);
}
.wp-care-monitor__chart span:nth-child(1) {
  animation-delay: 0s;
}
.wp-care-monitor__chart span:nth-child(2) {
  animation-delay: 0.15s;
}
.wp-care-monitor__chart span:nth-child(3) {
  animation-delay: 0.3s;
}
.wp-care-monitor__chart span:nth-child(4) {
  animation-delay: 0.45s;
}
.wp-care-monitor__chart span:nth-child(5) {
  animation-delay: 0.6s;
}
.wp-care-monitor__chart span:nth-child(6) {
  animation-delay: 0.75s;
}
.wp-care-monitor__chart span:nth-child(7) {
  animation-delay: 0.9s;
}
.wp-care-monitor__chart span:nth-child(8) {
  animation-delay: 1.05s;
}
.wp-care-monitor__footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #8e9aa8;
  border-top: 1px solid #f4f6f8;
  background: #fcfcfd;
}
.wp-care-monitor__footer i {
  color: #8eb8a8;
  font-size: 0.88rem;
  flex-shrink: 0;
  opacity: 0.95;
}

@keyframes wp-care-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 184, 168, 0.25);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(142, 184, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 184, 168, 0);
  }
}
@keyframes wp-care-wp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes wp-care-bar {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wp-care-monitor__dot,
  .wp-care-monitor__wp-ico,
  .wp-care-monitor__chart span {
    animation: none !important;
  }
  .wp-care-monitor__dot {
    box-shadow: none;
  }
  .wp-care-monitor__chart span {
    opacity: 0.85;
    transform: scaleY(0.65);
  }
}

.wp-care-cta-btn {
  border-radius: 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
}
.wp-care-cta-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.wp-care-feature {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.wp-care-feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(49, 65, 79, 0.08);
  color: #31414f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}
.wp-care-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.45rem;
}
.wp-care-feature-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}
.wp-care-stat {
  padding: 1rem 0.5rem;
}
.wp-care-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.wp-care-stat-label {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.25rem;
  line-height: 1.35;
}
.template-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-height: 92px; /* garante alinhamento entre cards com/sem promoção */
}
.template-card-promo-badge {
  display: inline-block;
  background: rgba(31, 32, 68, 0.9);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  width: fit-content;
}
.template-card-price-de {
  font-size: 0.86rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.template-card-price-por {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  color: #334155;
}
.template-card-price-por b,
.template-card-price-por strong {
  font-size: 1.48rem;
  font-weight: 700;
  color: var(--accent, #2E93EE);
}
.template-card-price-por.is-label-only {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.1;
  color: #334155;
}
.template-card-price-valor {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent, #2E93EE);
}
.template-card-desconto {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.template-card-price-de.is-placeholder,
.template-card-desconto.is-placeholder {
  visibility: hidden;
}
.template-card-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.template-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 42px;
  padding: 0.42rem 0.95rem;
  font-size: 0.88rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-weight: 500;
}
.template-btn-outline:hover {
  background: #f8fafc;
  color: #1e293b;
  border-color: #94a3b8;
}
.template-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 42px;
  padding: 0.45rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #31414f;
  border-color: #31414f;
  color: #fff;
}
.template-btn-primary:hover {
  background: #263540;
  border-color: #263540;
  color: #fff;
}
.template-btn-label-mobile {
  display: none;
}
.template-btn-add-cart {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1.1rem;
}
.template-btn-add-cart:hover {
  background: transparent;
  color: #0030b9 !important;
}

/* Página do produto */
.product-page-section {
  background: #ffffff;
}
/* Mobile: título → bloco mídia (demo + imagem) → card → descrição → compartilhar */
.product-page-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-page-block--side {
  display: contents;
}
.product-page-block--media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-page-block--title {
  order: 1;
}
.product-page-block--media {
  order: 2;
}
.product-page-block--card {
  order: 3;
}
.product-page-block--desc {
  order: 4;
}
.product-page-block--share {
  order: 5;
}
.product-page-block--title .product-page-cats {
  margin-top: 0.35rem;
}
@media (min-width: 992px) {
  .product-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 1.5rem;
    align-items: start;
    grid-template-areas:
      "media side"
      "desc side"
      "share side";
  }
  .product-page-block--side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .product-page-block--media {
    grid-area: media;
    order: 0;
  }
  .product-page-block--desc {
    grid-area: desc;
    order: 0;
  }
  .product-page-block--share {
    grid-area: share;
    order: 0;
  }
  .product-page-block--title,
  .product-page-block--card {
    order: 0;
  }
}
.product-page-thumb {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.09);
  overflow: hidden;
}
.product-page-promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(31, 32, 68, 0.92);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.product-page-thumb img {
  width: 100%;
  display: block;
}
.product-demo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.52rem 1.15rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.product-demo-pill i {
  font-size: 1rem;
  color: var(--accent);
}
.product-demo-pill:hover {
  background: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.08);
  border-color: rgba(var(--bs-primary-rgb, 46, 147, 238), 0.35);
  color: var(--accent-hover);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.12);
}
.product-demo-pill:hover i {
  color: var(--accent-hover);
}
.product-page-thumb-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 3rem;
}
.product-page-info {
  background: transparent;
}
.product-page-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}
.product-page-desc {
  font-size: 16px;
  color: #374151;
  text-align: justify;
}
.product-page-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-page-share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-right: 0.25rem;
}
.product-page-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
}
.product-page-share-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  opacity: 0.9;
}
.product-page-share-btn:nth-child(2) { background: #1877f2; }
.product-page-share-btn:nth-child(3) { background: #000; }
.product-page-share-btn:nth-child(4) { background: #25d366; }
.product-license-card {
  margin-top: 0;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 1.3rem 1.4rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
  font-size: 0.9rem;
}
@media (min-width: 992px) {
  .product-license-card {
    position: sticky;
    top: 1.5rem;
    align-self: flex-start;
  }
}
.product-license-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-license-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.product-license-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.25rem;
}
.product-license-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: #16a34a;
}
.product-license-payments {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}
.product-license-payments-label {
  font-size: 0.78rem;
  color: #6b7280;
}
.product-license-payments-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #111827;
}
.product-license-appmax {
  font-size: 0.85rem;
  font-weight: 600;
}
.product-license-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  margin-bottom: 0.7rem;
}
.product-license-price-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #334155;
}
.product-license-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent, #2E93EE);
  margin-bottom: 0;
}
.product-license-price-wrap .product-license-price {
  margin-bottom: 0;
}
.product-license-promo-badge {
  display: inline-block;
  background: rgba(31, 32, 68, 0.9);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.product-license-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.7rem;
}
.product-license-price-de {
  font-size: 0.95rem;
  color: #6b7280;
  text-decoration: line-through;
}
.product-license-price-block .product-license-price-label {
  margin-top: 0.1rem;
}
.product-license-price-valor {
  font-size: 1.5rem;
  line-height: 1.15;
}
.product-license-price-valor strong {
  font-weight: 700;
  color: var(--accent, #2E93EE);
}
.product-license-price-por {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}
.product-license-desconto {
  color: #16a34a;
  font-weight: 500;
}
.product-license-btn {
  width: 100%;
  border-radius: 999px;
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4rem;
  padding: 0.9rem 1.25rem;
  font-size: 1.05rem;
}
.product-license-btn:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.product-license-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.75rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
.product-license-info-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-license-info-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #4b5563;
}
.product-license-info-line + .product-license-info-line {
  margin-top: 0.1rem;
}
.product-checkout-form {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  max-width: 460px;
}
.product-checkout-form .form-control,
.product-checkout-form .form-select {
  font-size: 0.85rem;
}
.product-checkout-form label {
  font-size: 0.78rem;
}
.product-checkout-feedback {
  min-height: 1.2em;
}

/* Checkout — alinhado ao tema do site (--accent, cards sólidos) */
.checkout-section {
  --checkout-primary: #30404e;
  --checkout-primary-hover: #25323d;
  --checkout-accent: #de003b;
  --checkout-accent-hover: #b80031;
  background: #ffffff;
  min-height: 100vh;
}
/* Mesmas variáveis onde o resumo/checkout aparece fora de .checkout-section (ex.: produto-ps, carrinho) */
.carrinho-dominios-section,
.produto-ps-section {
  --checkout-primary: #30404e;
  --checkout-primary-hover: #25323d;
  --checkout-accent: #de003b;
  --checkout-accent-hover: #b80031;
}
/* produto-ps: títulos em preto (evita azul fixo do resumo e ícones de secção) */
.produto-ps-section .carrinho-dominios-resumo-nome {
  color: #0f172a;
}
.produto-ps-section .carrinho-dominios-resumo > h2 {
  color: #0f172a;
}
.produto-ps-section h1.h3,
.produto-ps-section h2.h4,
.produto-ps-section h2.h5,
.produto-ps-section h2.h6 {
  color: #0f172a;
}
.produto-ps-section .checkout-section-title {
  color: #0f172a;
}
.produto-ps-section .checkout-section-title i {
  color: #334155;
}
/* Selo de confiança — topo da coluna de dados (checkout) */
.checkout-trust-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  border: 1px solid #ccebdc;
  background: #f4fbf7;
  box-shadow: none;
}
.checkout-trust-strip-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5f7ee;
  color: #16a34a;
  font-size: 0.95rem;
  line-height: 1;
}
.checkout-trust-strip-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  text-align: left;
}
.checkout-trust-strip-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  letter-spacing: 0;
}
.checkout-trust-strip-text {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #4b5563;
}
@media (max-width: 575px) {
  .checkout-trust-strip {
    padding: 0.7rem 0.9rem;
    gap: 0.65rem;
  }
  .checkout-trust-strip-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}
.checkout-summary-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}
.checkout-summary-header {
  background: var(--checkout-primary);
  color: #ffffff;
  border-radius: 17px 17px 0 0;
  padding: 1rem 1.4rem;
  font-size: 1.02rem;
  font-weight: 600;
}
.checkout-summary-body {
  padding: 1.1rem 1.3rem 1.2rem;
}
.checkout-summary-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  position: relative;
}
.checkout-summary-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #6b7280;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}
.checkout-summary-remove:hover {
  color: #dc3545;
  background: rgba(220,53,69,0.08);
}
.checkout-summary-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-summary-info {
  flex: 1;
}
.checkout-summary-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
}
.checkout-summary-total strong {
  font-size: 1.3rem;
  color: var(--checkout-accent);
}
.checkout-total-promo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.checkout-total-de {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: line-through;
}
.checkout-total-desconto {
  color: #16a34a;
  font-weight: 500;
}
.checkout-summary-safe {
  margin-top: 1rem;
  border-top: 1px dashed #e5e7eb;
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}
.checkout-safe-block {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.checkout-safe-block .checkout-safe-badge {
  justify-content: center;
  gap: 0.5rem;
}
.checkout-safe-block .checkout-safe-badge i.bi-shield-check {
  font-size: 1.25rem;
  color: #16a34a;
}
.checkout-asaas-logo {
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin: 0 0.2em;
}
.checkout-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 500;
}
.checkout-safe-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #10b981;
  position: relative;
}
.checkout-safe-icon::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 3px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #10b981;
  border-bottom: 2px solid #10b981;
  transform: rotate(45deg);
}

.checkout-benefits-card {
  margin-top: 0.75rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.9rem 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.checkout-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkout-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text);
}
.checkout-benefits-list li + li {
  margin-top: 0.3rem;
}
.checkout-benefit-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--checkout-primary);
  position: relative;
  margin-top: 2px;
}
.checkout-benefit-icon::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 3px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--checkout-primary);
  border-bottom: 2px solid var(--checkout-primary);
  transform: rotate(45deg);
}
.payment-alert-boleto {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-alert-boleto i {
  color: var(--checkout-primary);
}
.checkout-order-pay-btn {
  border-radius: 12px;
  background: var(--checkout-accent, #de003b);
  border-color: var(--checkout-accent, #de003b);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  font-size: 1.1rem;
}
.checkout-order-pay-btn:hover {
  background: var(--checkout-accent-hover, #b80031);
  border-color: var(--checkout-accent-hover, #b80031);
  color: #fff;
}
.checkout-main-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}
.checkout-main-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.checkout-main-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-main-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-main-product-info {
  flex: 1;
}
.checkout-main-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.checkout-main-price {
  font-size: 0.9rem;
  color: var(--checkout-primary);
  font-weight: 600;
}
.checkout-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: var(--text);
}
.checkout-section-title i {
  font-size: 1.2rem;
  color: var(--checkout-primary);
}
.checkout-auth-switch {
  display: inline-flex;
  border-radius: 999px;
  background: #f3f4f6;
  padding: 0.15rem;
}
.checkout-auth-tab {
  border: none;
  background: transparent;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.checkout-auth-tab.active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,0.08);
  color: var(--checkout-primary);
  font-weight: 600;
}
.checkout-auth-form {
  max-width: 360px;
}
.checkout-full-form {
  margin-top: 0.5rem;
}
.checkout-divider {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.checkout-cupom-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.checkout-cupom-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.checkout-cupom-row .checkout-input {
  flex: 1;
  min-width: 0;
}
.checkout-cupom-feedback {
  flex-shrink: 0;
  font-size: 0.875rem;
  white-space: nowrap;
}
.checkout-cupom .checkout-input {
  text-transform: uppercase;
}
.checkout-cupom-btn {
  border-radius: 12px;
  background: var(--checkout-primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.checkout-cupom-btn:hover {
  background: var(--checkout-primary-hover);
  color: #fff;
}
.checkout-cupom-btn.applied {
  background: #16a34a;
}
.checkout-cupom-btn.applied:hover {
  background: #15803d;
  color: #fff;
}
.checkout-input {
  border-radius: 12px;
  border-color: #e5e7eb;
  background-color: #f9fafb;
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  height: 46px;
}
.checkout-input:focus {
  border-color: var(--checkout-primary);
  box-shadow: 0 0 0 1px rgba(48,64,78,0.22);
  background-color: #ffffff;
}
.checkout-create-btn {
  display: inline-block;
  border-radius: 12px;
  padding: 0.55rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: #fff;
}
.checkout-create-btn:hover {
  background: var(--checkout-primary-hover);
  border-color: var(--checkout-primary-hover);
  color: #fff;
}
.checkout-payment-methods {
  display: flex;
  gap: 0.5rem;
}
.checkout-payment-option {
  flex: 1;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  color: var(--checkout-primary, #30404e);
}
.checkout-payment-option input {
  display: none;
}
.checkout-payment-option.active,
.checkout-payment-option:hover {
  border-color: var(--checkout-primary, #30404e);
  background: var(--checkout-primary, #30404e);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(48, 64, 78, 0.28);
}
.checkout-payment-option.active .checkout-payment-icon,
.checkout-payment-option.active .checkout-payment-label,
.checkout-payment-option:hover .checkout-payment-icon,
.checkout-payment-option:hover .checkout-payment-label {
  color: inherit;
}
.checkout-payment-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.checkout-payment-label {
  font-size: 0.85rem;
  font-weight: 600;
}
.checkout-submit-btn {
  border-radius: 12px;
  background: var(--checkout-primary);
  border-color: var(--checkout-primary);
  color: #fff;
  padding-inline: 1.6rem;
}
.checkout-submit-btn:hover {
  background: var(--checkout-primary-hover);
  border-color: var(--checkout-primary-hover);
  color: #fff;
}
.checkout-feedback {
  min-height: 1.2em;
}

/* Modal “conta criada” (checkout.php) */
.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.45);
}
.checkout-modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid #e5e7eb;
}
.checkout-modal-icon.success {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(48, 64, 78, 0.12);
  color: var(--checkout-primary);
}
.checkout-modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}
.checkout-modal-text {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkout-card-fields {
  margin-top: 0.3rem;
}
.checkout-card-note {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.checkout-card-preview {
  display: none;
  margin-top: 0.9rem;
  margin-bottom: 0.2rem;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: all 0.25s ease-out;
}
.checkout-card-preview.visible {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.checkout-card-preview-inner {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 200px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.checkout-card-preview.flipped .checkout-card-preview-inner {
  transform: rotateY(180deg);
}
.checkout-card-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
}
.checkout-card-front {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-hover));
  color: #f9fafb;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.checkout-card-back {
  background: #111827;
  transform: rotateY(180deg);
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.35);
}
.checkout-card-chip {
  width: 40px;
  height: 28px;
  border-radius: 8px;
  background: rgba(249,250,251,0.85);
  margin-bottom: 0.5rem;
}
.checkout-card-brand {
  font-size: 0.8rem;
  text-align: right;
  opacity: 0.85;
}
.checkout-card-number {
  font-family: 'Poppins', monospace;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin-top: 0.6rem;
}
.checkout-card-label span.small {
  font-size: 0.7rem;
  opacity: 0.85;
}
.checkout-card-name,
.checkout-card-expiry {
  font-size: 0.9rem;
  font-weight: 600;
}
.checkout-card-strip {
  height: 40px;
  background: #030712;
  margin-bottom: 1.2rem;
}
.checkout-card-cvv-box {
  margin-left: auto;
  max-width: 120px;
  text-align: right;
  color: #e5e7eb;
}
.checkout-card-cvv {
  margin-top: 0.2rem;
  background: #e5e7eb;
  color: #111827;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  min-width: 48px;
  text-align: center;
}

/* ===== Slider - Primeira dobra (imagens) ===== */
/* Desktop: 1920×550px | Mobile: 1080×800px - cantos retos como no exemplo */
.fds-slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.fds-slider .carousel {
  overflow: hidden;
  border-radius: 0;
}
/* Desktop: proporção 1920/550 ≈ 3.49 */
.fds-slider .carousel-inner,
.fds-slider .carousel-item {
  aspect-ratio: 1920 / 550;
  min-height: 460px;
  max-height: 85vh;
  border-radius: 0;
}
.fds-slide {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}

/* Em telas menores, não limitar altura nem cortar o conteúdo do slide */
@media (max-width: 991px) {
  .fds-slider,
  .fds-slider .carousel,
  .fds-slide {
    overflow: visible;
  }
  .fds-slider .carousel-inner,
  .fds-slider .carousel-item {
    aspect-ratio: auto;
    min-height: 520px;
    max-height: none;
    height: auto;
  }
}

/* Novo modelo: slide com conteúdo + imagem à direita */
.fds-slide-hero {
  background: var(--fds-slide-bg, #ffffff);
}

/* Hero split: fundo vermelho+branco estático; carrossel só troca texto + imagem */
.fds-hero-wrap.has-slider {
  overflow: visible;
}
.fds-slider.fds-slider--split-hero {
  overflow: visible;
  margin-top: calc(-1 * var(--fds-top-fixed));
}
.fds-hero-split-frame {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  /* Altura mínima fixa evita “salto” quando o slide seguinte tem mais/menos conteúdo */
  min-height: clamp(480px, 74vh, 800px);
  display: flex;
  flex-direction: column;
  /* Um só valor: canto superior direito = inferior direito (sempre iguais) */
  --fds-hero-panel-r: clamp(2rem, 5.5vw, 3.25rem);
}
.fds-home-split-hero .fds-hero-split-frame::before {
  display: none;
}
.fds-home-split-hero .fds-hero-split-frame::after {
  display: none;
}
@keyframes fds-tech-grid-shift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, center top; }
  to { background-position: 52px 0, 0 52px, 120px 0, -90px 0, center top; }
}
@keyframes fds-tech-scan {
  0% { transform: translate3d(-110%, 0, 0); opacity: 0; }
  12% { opacity: .45; }
  50% { opacity: .26; }
  88% { opacity: .45; }
  100% { transform: translate3d(110%, 0, 0); opacity: 0; }
}
@media (max-width: 991px) {
  .fds-home-split-hero .fds-hero-split-frame::before {
    display: none;
  }
  .fds-home-split-hero .fds-hero-split-frame::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .fds-hero-split-frame {
    --fds-hero-panel-r: clamp(2.25rem, 6vw, 3.75rem);
  }
}
@media (max-width: 991px) {
  .fds-hero-split-frame {
    --fds-hero-panel-r: 1.125rem;
  }
}
.fds-hero-split-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Só cor: evita shorthand `background` com !important (repõe background-image em initial) */
  background-color: var(--accent, #2e93ee);
  isolation: isolate;
}
/* Home: mesma cor do header + rede plexus (canvas) por cima */
.fds-home-split-hero .fds-hero-split-bg {
  background:
    radial-gradient(58% 46% at 50% 38%, rgba(46, 147, 238, 0.18), transparent 68%),
    radial-gradient(35% 32% at 92% 92%, rgba(46, 147, 238, 0.16), transparent 74%),
    linear-gradient(180deg, #020b2f 0%, #06164a 100%) !important;
}
.fds-home-split-hero .fds-hero-login-ovals {
  position: absolute;
  inset: -8%;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.fds-home-split-hero .fds-hero-login-ovals svg {
  width: min(1600px, 118vw);
  height: auto;
  max-height: 112vh;
  overflow: visible;
}
.fds-home-split-hero .fds-hero-login-oval {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.fds-home-split-hero .fds-hero-login-oval--outer {
  stroke: rgba(46, 147, 238, 0.38);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(46, 147, 238, 0.18));
  animation: fdsHeroOvalDrawOuter 8.6s steps(180, end) infinite;
}
.fds-home-split-hero .fds-hero-login-oval--inner {
  stroke: rgba(46, 147, 238, 0.68);
  stroke-width: 1.7;
  filter: drop-shadow(0 0 12px rgba(46, 147, 238, 0.28));
  animation: fdsHeroOvalDrawInner 8.6s steps(140, end) infinite 1.15s;
}
.fds-home-split-hero .fds-hero-login-oval-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgba(140, 216, 255, 0.92);
  opacity: 0.9;
  pointer-events: none;
}
.fds-home-split-hero .fds-hero-login-oval-glow--outer {
  stroke-width: 3.1;
  stroke-dasharray: 96 904;
  filter: drop-shadow(0 0 16px rgba(120, 210, 255, 0.72));
  animation: fdsHeroGlowRunOuter 9.5s linear infinite;
}
.fds-home-split-hero .fds-hero-login-oval-glow--inner {
  stroke-width: 3.3;
  stroke-dasharray: 88 912;
  filter: drop-shadow(0 0 18px rgba(158, 225, 255, 0.84));
  animation: fdsHeroGlowRunInner 8.6s linear infinite 0.8s;
}
@keyframes fdsHeroOvalDrawOuter {
  0% { stroke-dashoffset: 1000; opacity: 0; }
  12% { opacity: 1; }
  58% { stroke-dashoffset: 0; opacity: 1; }
  82% { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: -1000; opacity: 0; }
}
@keyframes fdsHeroOvalDrawInner {
  0% { stroke-dashoffset: 1000; opacity: 0; }
  16% { opacity: 1; }
  62% { stroke-dashoffset: 0; opacity: 1; }
  84% { stroke-dashoffset: 0; opacity: 0.92; }
  100% { stroke-dashoffset: -1000; opacity: 0; }
}
@keyframes fdsHeroGlowRunOuter {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
@keyframes fdsHeroGlowRunInner {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
.fds-home-split-hero .fds-hero-plexus {
  display: none !important;
}
.fds-home-split-hero .fds-hero-split-bg::before {
  display: none !important;
}
.fds-home-split-hero .fds-hero-split-bg::after {
  display: none;
}
.fds-hero-split-bg::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: 0;
  right: -2%;
  height: clamp(190px, 42%, 360px);
  background: linear-gradient(
    150deg,
    color-mix(in srgb, var(--accent, #e10743) 78%, #000 22%) 0%,
    color-mix(in srgb, var(--accent, #e10743) 62%, #000 38%) 100%
  );
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}
.fds-hero-split-bg::after {
  display: none;
}
.fds-hero-split-bg .fds-hero-slide-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 100%;
}
.fds-hero-split-bg .fds-hero-split-row {
  position: relative;
  z-index: 3;
  min-height: 100%;
}
/* Painel branco só na camada fixa — curvas dir. iguais via --fds-hero-panel-r */
.fds-hero-split-bg .fds-hero-split-col--copy {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
/* Coluna visual fixa removida do HTML — evita camada por cima das imagens do carrossel */
.fds-hero-split-bg-row {
  min-height: 100%;
}
.fds-hero-split-carousel {
  position: relative;
  z-index: 5;
  overflow: visible;
  flex: 1 1 auto;
  min-height: clamp(480px, 74vh, 800px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.fds-slider--split-hero .carousel {
  overflow: visible;
}
/* Fade: troca por opacidade — sem um slide a deslizar por baixo do outro */
.fds-slider--split-hero.carousel-fade .carousel-item {
  transition: opacity 0.45s ease-in-out;
}
/* Sem flex no inner: flex fazia vários .carousel-item empilharem (imagem repetida por baixo) */
.fds-slider--split-hero .carousel-inner {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 74vh, 800px);
  z-index: 1;
}
/*
 * Não usar z-index/transform nos .carousel-item nem nas colunas: o Bootstrap controla
 * a pilha no fade/slide; valores fixos deixavam um slide “fixo” e o outro a passar por trás.
 */
.fds-slider--split-hero .carousel-item:not(.active) {
  background: transparent;
}
.fds-slider--split-hero .carousel-item.active {
  aspect-ratio: auto;
  min-height: clamp(480px, 74vh, 800px);
  max-height: none;
  display: flex !important;
  flex-direction: column;
  background: transparent;
  position: relative;
}
/* Home: hero mais alto (fora do teto 800px / 74vh do split genérico) */
.fds-home-split-hero {
  --fds-home-hero-h: 100vh;
}
@supports (height: 100dvh) {
  .fds-home-split-hero {
    --fds-home-hero-h: 100dvh;
  }
}
.fds-hero-wrap.has-slider:has(.fds-home-split-hero),
.fds-home-split-hero.fds-slider--split-hero {
  min-height: var(--fds-home-hero-h);
}
.fds-home-split-hero .fds-hero-split-frame,
.fds-home-split-hero .fds-hero-split-carousel,
.fds-home-split-hero .fds-slider--split-hero .carousel-inner,
.fds-home-split-hero .fds-slider--split-hero .carousel-item.active {
  min-height: var(--fds-home-hero-h);
}
.fds-slider--split-hero .fds-slide.fds-slide-hero--split-pan {
  align-items: stretch;
  align-self: stretch;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fds-hero-slide-wrap {
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  /* Sem padding no wrap: o fundo branco da coluna vai até ao topo do slide (referência Aluggen) */
  padding: 0;
  height: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
/* Miolo: branco encostado à esquerda; altura = slide (grid evita falhas do flex Bootstrap) */
.fds-hero-split-row {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  flex: 1 1 auto;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
}
@media (min-width: 992px) {
  .fds-hero-split-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: calc(100% - 0px);
  }
  /* Sobrescreve larguras % do Bootstrap para a grelha ocupar as duas faixas */
  .fds-hero-split-row > [class*="col-"] {
    width: 100% !important;
    max-width: none;
  }
}
/* Camada do carrossel: sem repintar o fundo (usa .fds-hero-split-bg) */
.fds-slide-hero--split-pan {
  background: transparent !important;
  position: relative;
  overflow: visible;
}
.fds-slide-hero--home-static .fds-home-hero-title {
  text-wrap: balance;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
}
.fds-slide-hero--home-static .fds-home-hero-title-accent {
  color: #ffffff;
  font-weight: 600;
}
.fds-slide-hero--home-static .fds-home-hero-title-light {
  color: #ffffff;
  font-weight: 500;
}
.fds-slide-hero--home-static .fds-home-hero-desc {
  max-width: 38rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.62;
  margin: 0;
}
.fds-slide-hero--home-static .fds-slide-kicker {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.fds-slide-hero--home-static .fds-hero-split-row {
  min-height: var(--fds-home-hero-h);
  align-items: center !important;
}
.fds-slide-hero--home-static .fds-hero-split-col--copy {
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  align-self: center;
  padding: clamp(1rem, 2.4vw, 1.85rem) clamp(1rem, 4vw, 2.75rem) !important;
  min-height: var(--fds-home-hero-h);
  transform: none;
  gap: clamp(1rem, 2.5vw, 1.4rem);
}
.fds-slide-hero--home-static .fds-hero-split-col--copy > * {
  margin-left: auto;
  margin-right: auto;
}
.fds-slide-hero--home-static .fds-hero-split-col--copy > .fds-slide-btn--hero-primary {
  margin-top: 0;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary {
  --fds-slide-btn: transparent;
  --fds-slide-btn-text: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  height: auto;
  min-height: 0;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary:hover {
  background: transparent !important;
  color: #ffffff;
  opacity: 0.9;
  transform: none;
  box-shadow: none !important;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary .fds-slide-btn__chev {
  font-size: 1.12em;
  line-height: 1;
  color: var(--accent, #2e93ee);
  opacity: 1;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary.shiny-cta {
  position: relative;
  overflow: visible;
  isolation: auto;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary.shiny-cta .shiny-cta__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary.shiny-cta:hover,
.fds-slide-hero--home-static .fds-slide-btn--hero-primary.shiny-cta:focus-visible {
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
  transform: none;
}
.fds-slide-hero--home-static .fds-slide-btn--hero-primary:focus-visible {
  outline: 2px solid var(--accent, #2e93ee);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .fds-slide-hero--home-static .fds-slide-btn--hero-primary.shiny-cta {
    transition: color 0.15s ease, opacity 0.15s ease;
  }
}
.fds-home-hero-footline {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  max-width: 34rem;
  margin: 0;
  padding: 0.25rem 1rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  text-align: center;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
  z-index: 2;
}
.fds-hero-split-bg .fds-hero-split-col--copy,
.fds-hero-split-col--copy {
  border-radius: 0;
  padding: calc(var(--fds-top-fixed) + 1.75rem) 1.75rem 2.75rem var(--fds-hero-align-pl);
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  min-height: 100%;
}
.fds-hero-split-col--copy.fds-hero-split-col--pan {
  background: transparent !important;
  position: relative;
}
.fds-slide-hero--home-static .fds-hero-split-col--copy {
  padding-left: clamp(1rem, 4vw, 2.75rem);
  padding-right: clamp(1rem, 4vw, 2.75rem);
}
@media (max-width: 575.98px) {
  .fds-slide-hero--home-static .fds-home-hero-title {
    font-size: clamp(1.95rem, 10.5vw, 3rem);
    line-height: 1.1;
  }
  .fds-slide-hero--home-static .fds-home-hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .fds-slide-hero--home-static .fds-slide-btn--hero-primary {
    width: auto;
    max-width: none;
    justify-content: center;
  }
  .fds-home-hero-footline {
    font-size: 0.75rem;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
}
@media (min-width: 992px) {
  .fds-hero-split-bg .fds-hero-split-col--copy,
  .fds-hero-split-col--copy {
    padding: calc(var(--fds-top-fixed) + 1.5rem) clamp(1.5rem, 3vw, 2.75rem) 3rem var(--fds-hero-align-pl);
  }
  .fds-hero-split-col--visual {
    padding: calc(var(--fds-top-fixed) + 1rem) 0 0 0 !important;
  }
}
.fds-hero-split-col--visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: calc(var(--fds-top-fixed) + 1rem) 0 0 0;
  padding-bottom: 0;
}
.fds-hero-notify-stack {
  position: absolute;
  left: clamp(2.1rem, 6.2vw, 5.4rem);
  bottom: clamp(7.4rem, 17vw, 12.4rem);
  z-index: 7;
  display: grid;
  gap: 0.58rem;
  width: min(340px, 48%);
  pointer-events: none;
}
.fds-hero-notify-card {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.68rem 0.88rem;
  border-radius: 13px;
  border: none;
  background:
    radial-gradient(130% 180% at 12% 0%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, rgba(8, 10, 18, 0.74), rgba(8, 10, 18, 0.52));
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  animation: fds-hero-notify-bubble 0.72s cubic-bezier(0.21, 0.88, 0.25, 1) both;
}
.fds-hero-notify-card--budget {
  margin-left: 0;
}
.fds-hero-notify-card--sale {
  margin-left: 22px;
  animation-delay: 0.14s;
}
.fds-hero-notify-card--wa {
  margin-left: 44px;
  animation-delay: 0.28s;
}
.fds-hero-notify-ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.fds-hero-notify-txt {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}
.fds-hero-notify-txt strong {
  color: #ffffff;
  font-size: 0.83rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fds-hero-notify-txt span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes fds-hero-notify-bubble {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(16px) scale(0.72);
    filter: blur(1px);
  }
  62% {
    opacity: 1;
    transform: translateX(2px) translateY(-2px) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}
.fds-slide-hero--split-pan .fds-hero-split-col--visual {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
  min-height: 0;
}
@media (min-width: 992px) {
  .fds-slide-hero--split-pan .fds-hero-split-col--visual {
    padding-top: calc(var(--fds-top-fixed) + 0.35rem) !important;
    padding-right: 0 !important;
  }
}
.fds-slide-hero--split-pan .fds-slide-media {
  width: auto;
  max-width: min(100%, 720px);
  margin: 0;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 0;
  flex-shrink: 0;
  align-self: flex-end;
}
/* Imagem encostada à base da secção, alinhada à direita da coluna */
.fds-slide-hero--split-pan .fds-slide-media-img {
  border-radius: 0;
  display: block;
  object-fit: contain;
  object-position: bottom right;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(580px, 74vh);
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
  image-rendering: auto;
}
@media (min-width: 992px) {
  .fds-slide-hero--split-pan .fds-slide-media {
    max-width: min(100%, 700px);
  }
  .fds-slide-hero--split-pan .fds-slide-media-img {
    max-height: min(780px, 92vh);
    align-self: flex-end;
  }
}
@media (max-width: 991px) {
  .fds-home-split-hero {
    --fds-home-hero-h: clamp(440px, 76svh, 600px);
  }
  @supports (height: 100dvh) {
    .fds-home-split-hero {
      --fds-home-hero-h: clamp(440px, 76dvh, 600px);
    }
  }
  .fds-home-split-hero .fds-hero-login-ovals {
    inset: 0;
    display: block;
  }
  .fds-home-split-hero .fds-hero-login-ovals svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1900px, 178vw);
    height: auto;
    max-height: none;
    margin: 0;
  }
  .fds-home-split-hero .fds-hero-login-oval--outer {
    stroke-width: 1.9;
  }
  .fds-home-split-hero .fds-hero-login-oval--inner {
    stroke-width: 2.1;
  }
  .fds-home-split-hero .fds-hero-login-oval-glow--outer {
    stroke-width: 3.6;
  }
  .fds-home-split-hero .fds-hero-login-oval-glow--inner {
    stroke-width: 3.8;
  }
  .fds-hero-split-frame {
    min-height: min(92vh, 800px);
  }
  .fds-hero-split-carousel {
    min-height: min(92vh, 800px);
  }
  .fds-slider--split-hero .carousel-inner {
    min-height: min(92vh, 800px);
  }
  .fds-slider--split-hero .carousel-item.active {
    min-height: min(92vh, 800px);
  }
  .fds-home-split-hero .fds-hero-split-frame,
  .fds-home-split-hero .fds-hero-split-carousel,
  .fds-home-split-hero .fds-slider--split-hero .carousel-inner,
  .fds-home-split-hero .fds-slider--split-hero .carousel-item.active {
    min-height: var(--fds-home-hero-h);
  }
  .fds-hero-split-row {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .fds-hero-split-bg .fds-hero-split-col--copy,
  .fds-hero-split-col--copy {
    border-radius: 0 !important;
    padding-top: calc(var(--fds-top-fixed) + 1.5rem) !important;
    padding-right: 1.25rem !important;
    padding-bottom: 2.25rem !important;
    padding-left: max(1rem, var(--fds-hero-align-pl)) !important;
  }
  .fds-slide-hero--split-pan .fds-hero-split-col--copy {
    padding-bottom: 1.35rem !important;
  }
  .fds-slide-hero--home-static .fds-hero-split-row {
    min-height: var(--fds-home-hero-h);
    justify-content: center;
    align-items: stretch;
  }
  .fds-slide-hero--home-static.fds-slide-hero--split-pan .col-lg-6:first-child {
    justify-content: center !important;
  }
  .fds-slide-hero--home-static .fds-hero-split-col--copy {
    padding-top: calc(var(--fds-top-fixed) + 0.85rem) !important;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)) !important;
    padding-left: max(1rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1rem, env(safe-area-inset-right, 0px)) !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    transform: translateY(0);
  }
  .fds-slide-hero--home-static .fds-home-hero-desc {
    max-width: min(24rem, 90vw);
    margin-left: auto;
    margin-right: auto;
  }
  /* Texto + painel branco: 15px nas laterais (respeita safe-area em iPhone) */
  .fds-slider--split-hero .fds-hero-split-bg .fds-hero-split-col--copy,
  .fds-slide-hero--split-pan .fds-hero-split-col--copy.fds-hero-split-col--pan {
    padding-left: max(15px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(15px, env(safe-area-inset-right, 0px)) !important;
  }
  .fds-slide-hero--home-static.fds-slide-hero--split-pan .fds-hero-split-col--copy.fds-hero-split-col--pan {
    padding-left: max(1.05rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.05rem, env(safe-area-inset-right, 0px)) !important;
  }
  /* Coluna visual: cartões com 15px; imagem encostada à direita e à base (sem alterar) */
  .fds-slide-hero--split-pan .fds-hero-split-col--visual {
    padding: 0.65rem 0 0 0 !important;
  }
  /* Mobile/tablet: texto no topo; área visual ocupa o restante e imagem encosta em baixo */
  .fds-slide-hero--split-pan .col-lg-6:first-child {
    justify-content: flex-start;
    flex-shrink: 0;
  }
  .fds-slide-hero--split-pan .col-lg-6:last-child {
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
  }
  .fds-slide-hero--split-pan .fds-slide-media {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: stretch;
    box-sizing: border-box;
  }
  .fds-slide-hero--split-pan .fds-slide-media-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    margin-left: auto;
    margin-right: 0;
    object-fit: contain;
    object-position: bottom right;
    max-height: min(50vh, 440px);
  }
  .fds-hero-notify-stack {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 0 0.75rem;
  }
  /* Home: cartões sobre a base da imagem (como desktop), menores, alinhados à esquerda */
  .fds-slide-hero--split-pan .fds-hero-notify-stack {
    position: absolute;
    left: max(10px, env(safe-area-inset-left, 0px));
    bottom: clamp(1rem, 4.5vw, 1.95rem);
    width: min(246px, calc(100% - 1.25rem));
    max-width: none;
    margin: 0;
    padding: 0;
    z-index: 7;
    gap: 0.35rem;
    text-align: left;
    box-sizing: border-box;
    pointer-events: none;
  }
  .fds-hero-notify-card--budget,
  .fds-hero-notify-card--sale,
  .fds-hero-notify-card--wa {
    margin-left: 0;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card--sale {
    margin-left: 14px;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card--wa {
    margin-left: 28px;
  }
  .fds-hero-notify-card {
    border: none;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card {
    justify-content: flex-start;
    padding: 0.48rem 0.58rem;
    gap: 0.4rem;
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
  }
  .fds-hero-notify-ico {
    background: rgba(225, 7, 67, 0.12);
    color: var(--accent, #e10743);
  }
  .fds-slide-hero--split-pan .fds-hero-notify-ico {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 0.72rem;
  }
  .fds-hero-notify-txt strong {
    color: #0f172a;
  }
  .fds-hero-notify-txt span {
    color: #475569;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-txt {
    text-align: left;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-txt strong {
    font-size: 0.7rem;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-txt span {
    font-size: 0.635rem;
  }
  .fds-hero-split-bg::after {
    width: 100%;
    height: 38%;
    opacity: 0.9;
  }
}
.fds-slide-hero--split-pan .fds-hero-slide-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.fds-slide-hero--split-pan .fds-hero-split-row {
  flex: 1 1 auto;
  min-height: 0;
}

.fds-slide-hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.fds-slide-hero .row {
  height: 100%;
}
/* Split hero: colunas tratadas em .fds-slide-hero--split-pan (imagem fundo + direita) */
.fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6:first-child {
  align-items: flex-start; /* evita o botão esticar no desktop */
}
.fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6:last-child {
  justify-content: center;
}
.fds-slide-hero--split-pan .col-lg-6 {
  display: flex;
  flex-direction: column;
}
.fds-slide-hero--split-pan .col-lg-6:first-child {
  align-items: flex-start;
  justify-content: center;
}
.fds-slide-hero--split-pan .col-lg-6:last-child {
  justify-content: flex-end;
  align-items: flex-end;
}
.fds-slide-kicker {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fds-slide-kicker, rgba(31, 32, 68, 0.78));
  font-size: 0.82rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fds-slide-sub2 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--fds-slide-sub, var(--accent, #c41e3a));
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.fds-slide-title2 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--fds-slide-title, #1f2044);
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
}
.fds-slide-desc {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fds-slide-desc, rgba(31, 32, 68, 0.84));
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.fds-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 1.25rem;
  border-radius: 10px;
  background: var(--fds-slide-btn, #001074);
  color: var(--fds-slide-btn-text, #fff);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.fds-slide-btn:hover {
  color: var(--fds-slide-btn-text, #fff);
  opacity: 0.95;
  transform: translateY(-3px);
  box-shadow: none;
}
.fds-slide-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.fds-slide-media-link { display: block; }
.fds-slide-media {
  display: block;
  width: 100%;
  height: 100%;
}
.fds-slide-media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 991px) {
  .fds-included-plans {
    padding: 0.85rem 0 1.15rem;
  }
  .fds-included-wrap {
    grid-template-columns: 1fr;
    padding-block: 0;
    gap: 0.35rem;
  }
  .fds-included-title {
    padding: 1.2rem 1rem 0.85rem;
    justify-content: center;
    text-align: center;
  }
  .fds-included-title::after {
    display: none;
  }
  .fds-included-title h3 {
    font-size: clamp(1.85rem, 7.2vw, 2.25rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }
  .fds-included-items {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0 0.4rem 0.5rem;
  }
  .fds-included-item {
    min-height: auto;
    padding: 1.15rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.22);
    background: linear-gradient(180deg, rgba(18, 37, 56, 0.72), rgba(13, 30, 47, 0.72));
    box-shadow: 0 12px 28px rgba(3, 10, 22, 0.24);
  }
  .fds-included-item + .fds-included-item {
    border-left: 0;
    border-top: 0;
    padding-left: 1rem;
  }
  .fds-included-item + .fds-included-item::before {
    display: none;
  }
  .fds-included-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin: 0 auto 0.45rem;
    font-size: 1.7rem;
    background: rgba(8, 201, 255, 0.12);
    border: 1px solid rgba(8, 201, 255, 0.5);
  }
  .fds-included-item h4 {
    font-size: 1.08rem;
    margin-bottom: 0.28rem;
  }
  .fds-included-item p {
    font-size: 0.9rem;
    line-height: 1.35;
    max-width: 29ch;
  }
  /* No mobile, imagem do banner ocupa toda a largura e ajusta a altura sem distorcer */
  .fds-slide-media {
    height: auto;
  }
  .fds-slide-media-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: transparent;
  }
  .fds-slide-title2 { font-size: 1.85rem; }
  .fds-slide-sub2 { font-size: 1.85rem; }
  .fds-slide-media-img { border-radius: 0; }
  .fds-slide-btn { padding: 0.8rem 1.1rem; }
}

/* Ajuste fino do banner em telas até tablet */
@media (max-width: 991px) {
  .fds-slide-hero .container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .fds-slide-sub2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .fds-slide-title2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .fds-slide-desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .fds-slide-hero .col-lg-6:first-child {
    align-items: flex-start;
  }
  .fds-slide-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.fds-slide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
  color: inherit;
}
.fds-slide-link:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.7);
  outline-offset: -3px;
}
.fds-slide-img picture,
.fds-slide-img .fds-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.fds-slide-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.fds-slide-content {
  max-width: 560px;
}
.fds-slide-title {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}
.fds-slide-subtitle {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
.fds-slider .carousel-control-prev,
.fds-slider .carousel-control-next {
  z-index: 5;
  width: 118px;
  height: 118px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  opacity: 0;
  box-shadow: none;
  transition: opacity 0.25s ease, color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
/* Esquerda: cor primária | direita: branco */
.fds-slider .carousel-control-prev {
  border-radius: 0;
  color: var(--accent);
}
.fds-slider .carousel-control-next {
  border-radius: 0;
  color: #ffffff;
}
.fds-slider:hover .carousel-control-prev,
.fds-slider:hover .carousel-control-next {
  opacity: 1;
}
/* Em dispositivos touch, controles sempre visíveis */
@media (hover: none) {
  .fds-slider .carousel-control-prev,
  .fds-slider .carousel-control-next { opacity: 1; }
}
.fds-slider .carousel-control-prev { left: 0; }
.fds-slider .carousel-control-next { right: 0; }
.fds-slider .carousel-control-prev:hover {
  filter: brightness(1.14);
  transform: translateY(-50%);
}
.fds-slider .carousel-control-next:hover {
  filter: brightness(1.2);
  transform: translateY(-50%);
}
.fds-slider .carousel-control-prev i,
.fds-slider .carousel-control-next i {
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
  text-shadow: none;
}

/* Dots do banner (canto esquerdo) */
.fds-hero-dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px; /* mais pra cima */
  z-index: 5;
  pointer-events: none; /* só os botões clicam */
}
.fds-hero-dots-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--fds-hero-align-pl);
  padding-right: var(--fds-hero-align-pr);
  box-sizing: border-box;
}
.fds-hero-dots {
  justify-content: flex-start;
  position: static;
  margin: 0;
  gap: 10px;
  pointer-events: auto;
}
.fds-hero-dots [data-bs-target] {
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  border: none;
  /* Cinza: visível em fundos claros (branco sumia com o trilho) */
  background: #cbd5e1;
  opacity: 1;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.fds-hero-dots [data-bs-target]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent);
  border-radius: inherit;
}
.fds-hero-dots [data-bs-target]:hover {
  background: #94a3b8;
}
.fds-hero-dots .active {
  background: #cbd5e1;
  box-shadow: none;
}
.fds-hero-dots [data-bs-target].is-progress::before {
  animation: fds-hero-dot-progress var(--hero-progress-duration, 5000ms) linear forwards;
}
@keyframes fds-hero-dot-progress {
  from { width: 0%; }
  to { width: 100%; }
}
@media (max-width: 767px) {
  .fds-hero-dots-wrap { bottom: 22px; }
  .fds-hero-dots { gap: 8px; }
  .fds-hero-dots [data-bs-target] { width: 44px; height: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .fds-hero-dots .active.is-progress::before {
    animation: none;
    width: 100%;
  }
}

/* Faixa fina abaixo do hero — estatística + foguete + pontos */
.fds-home-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.48rem 0;
  background: rgba(46, 147, 238, 0.07);
  background: color-mix(in srgb, var(--accent) 10%, #ffffff);
  border-bottom: 1px solid rgba(46, 147, 238, 0.12);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, #ffffff);
}
.fds-home-trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.fds-home-trust-strip__text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  width: 100%;
  max-width: 100%;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.35;
}
.fds-home-trust-strip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.18rem;
  line-height: 1;
  color: var(--accent);
}
.fds-home-trust-strip__ico i {
  display: block;
}
.fds-home-trust-strip__label {
  color: #111827;
}
.fds-home-trust-strip__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  margin-left: 0.05rem;
  color: var(--accent);
}
.fds-home-trust-strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.88;
  animation: fds-home-trust-dot-bounce 0.95s ease-in-out infinite;
}
.fds-home-trust-strip__dot:nth-child(2) {
  animation-delay: 0.14s;
}
.fds-home-trust-strip__dot:nth-child(3) {
  animation-delay: 0.28s;
}
@keyframes fds-home-trust-dot-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fds-home-trust-strip__dot {
    animation: none;
    opacity: 0.85;
  }
}
@media (max-width: 575px) {
  .fds-home-trust-strip {
    min-height: 2.25rem;
    padding: 0.42rem 0;
  }
  .fds-home-trust-strip__text {
    font-size: 0.85rem;
    gap: 0.35rem 0.45rem;
  }
  .fds-home-trust-strip__ico {
    font-size: 1.06rem;
  }
}

/* Split pitch — meio a meio como o hero; alinhamento horizontal = hero (--fds-hero-align-*) */
.fds-pitch-split {
  position: relative;
  background: #fafafa;
  overflow: visible;
  /* Mesmo token de raio do painel branco do hero (.fds-hero-split-frame) */
  --fds-pitch-panel-r: clamp(2rem, 5.5vw, 3.25rem);
}
@media (min-width: 992px) {
  .fds-pitch-split {
    --fds-pitch-panel-r: clamp(2.25rem, 6vw, 3.75rem);
  }
}
@media (max-width: 991px) {
  .fds-pitch-split {
    /* Raio um pouco maior no mobile para a curva ler bem sobre o vermelho */
    --fds-pitch-panel-r: clamp(1.2rem, 3.8vw, 1.45rem);
  }
}
.fds-pitch-split__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(420px, 52vw, 560px);
  padding: 0;
}
.fds-pitch-split__left {
  position: relative;
  z-index: 1;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Espelha o ritmo do hero: margem esquerda = alinhamento do site */
  padding-top: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 4vw, 3rem);
  padding-left: var(--fds-hero-align-pl);
  padding-right: 1rem;
  min-width: 0;
}
.fds-pitch-split__visual-wrap {
  width: 100%;
  max-width: min(720px, 100%);
  margin: 0;
  margin-right: auto;
}
.fds-pitch-split__visual-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
}
.fds-pitch-split__visual-crop {
  border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
  overflow: hidden;
}
.fds-pitch-split__visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}
.fds-pitch-split__glass {
  position: absolute;
  left: auto;
  right: clamp(0.25rem, 1.2vw, 0.65rem);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
  max-width: min(92%, 320px);
  padding: 0.75rem 1.05rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.96);
  pointer-events: none;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fds-pitch-split__glass-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.88;
}
.fds-pitch-split__glass-title {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .fds-pitch-split__glass {
    right: clamp(0.15rem, 1vw, 0.5rem);
    max-width: min(94%, 280px);
    padding: 0.65rem 0.9rem;
    gap: 0.4rem;
  }
  .fds-pitch-split__glass-ico {
    font-size: 0.95rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fds-pitch-split__glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.62);
  }
}
.fds-pitch-split__right {
  --fds-pitch-pad-l: clamp(1.35rem, 3vw, 2rem);
  --fds-pitch-overlap: clamp(1.75rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
  background: #fafafa;
  border-top-left-radius: var(--fds-pitch-panel-r);
  border-bottom-left-radius: var(--fds-pitch-panel-r);
  box-shadow: none;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-left: var(--fds-pitch-pad-l);
  padding-right: 0;
}
@media (min-width: 992px) {
  .fds-pitch-split__right {
    /* Painel branco entra por cima do vermelho para a curva ficar visível */
    margin-left: calc(-1 * var(--fds-pitch-overlap));
    padding-left: calc(var(--fds-pitch-overlap) + var(--fds-pitch-pad-l));
    padding-right: 0;
  }
}
.fds-pitch-split__text {
  max-width: none;
  width: 100%;
}
/* Mesmo ritmo visual do título do hero (.fds-slide-title2) */
.fds-pitch-split__title {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 1.1rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--fds-slide-title, #1f2044);
  letter-spacing: -0.03em;
}
.fds-pitch-split__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}
.fds-pitch-split__lead:last-of-type {
  margin-bottom: 1.15rem;
}
/* Estilo alinhado ao CTA “Loja de Templates” do hero: plano, rosa/vermelho, 12px */
.fds-pitch-split__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #ffffff !important;
  background: #e91e4c;
  border: none;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, opacity 0.2s ease;
  margin-bottom: 1.75rem;
  margin-left: 0;
  align-self: flex-start;
}
.fds-pitch-split__btn i {
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.98;
}
.fds-pitch-split__btn:hover {
  background: #d81b45;
  color: #ffffff !important;
  opacity: 1;
}
.fds-pitch-split__btn:focus-visible {
  outline: 2px solid rgba(233, 30, 76, 0.45);
  outline-offset: 2px;
}
@media (max-width: 991px) {
  .fds-pitch-split__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }
  .fds-pitch-split__left {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: clamp(3rem, 11vw, 4.75rem);
    padding-bottom: clamp(2.85rem, 10vw, 4.25rem);
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
  }
  .fds-pitch-split__visual-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(520px, 100%);
  }
  .fds-pitch-split__right {
    --fds-pitch-pad-l: max(15px, env(safe-area-inset-left, 0px));
    --fds-pitch-overlap: 0px;
    margin-left: 0;
    /* Sobrepõe ligeiramente o vermelho: senão o fundo da secção (#fafafa) “apaga” o raio no topo */
    margin-top: clamp(-1rem, -3vw, -0.55rem);
    padding-top: clamp(1.85rem, 4vw, 2.35rem);
    padding-bottom: clamp(2.25rem, 5vw, 2.85rem);
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top-left-radius: var(--fds-pitch-panel-r);
    border-top-right-radius: var(--fds-pitch-panel-r);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
  }
  .fds-pitch-split__text {
    max-width: none;
  }
}

/* Wrapper slider + buscador sobreposto */
.fds-hero-wrap {
  position: relative;
}
.fds-hero-wrap.has-hero-bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: calc(-1 * var(--fds-top-fixed));
  padding-top: var(--fds-top-fixed);
}
.fds-hero-wrap.has-hero-bg:has(.fds-home-split-hero) {
  background-image: none;
  background-color: var(--fds-header-bg, #121829);
}
.fds-hero-wrap.has-slider .fds-domain-bar {
  margin-top: -42px;
  position: relative;
  z-index: 10;
  padding-bottom: 1.5rem;
}
.fds-hero-wrap:not(.has-slider) .fds-domain-bar {
  padding-top: 1.5rem;
}

/* Círculo com favicon sobreposto ao banner (home) */
.fds-hero-wrap.has-slider .fds-hero-favicon-bar {
  margin-top: -36px; /* desce um pouco no desktop */
  position: relative;
  z-index: 10;
  padding-bottom: 1.25rem;
}
.fds-hero-wrap:not(.has-slider) .fds-hero-favicon-bar {
  padding-top: 1.25rem;
}
.fds-hero-favicon-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  will-change: transform;
}
.fds-hero-favicon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}
.fds-hero-favicon-badge.is-rotating {
  animation: fds-spin 1.4s linear infinite;
}
.fds-hero-favicon-badge.is-ccw {
  animation-direction: reverse;
}
@keyframes fds-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .fds-hero-favicon-badge {
    width: 64px;
    height: 64px;
  }
  .fds-hero-favicon-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
}

/* No mobile, esconder o círculo sobreposto para não tampar o banner */
@media (max-width: 767px) {
  .fds-hero-wrap.has-hero-bg {
    background-position: center center;
  }
  .fds-hero-favicon-bar {
    display: none;
  }
}

/* Barra de busca - metade sobre o banner, formato pill */
.fds-domain-bar {
  background: transparent;
}
.domain-search-registro {
  margin: 0;
}
.domain-search-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 0.75rem 1.25rem 0.75rem 1.75rem;
  min-height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  gap: 0.75rem;
  flex-wrap: wrap;
}
.domain-search-label {
  color: #6c757d;
  font-size: 0.95rem;
  white-space: nowrap;
}
.domain-search-label strong { color: #495057; }
.domain-search-www {
  color: #adb5bd;
  font-size: 0.9rem;
  font-weight: 500;
}
.domain-search-input {
  flex: 1;
  min-width: 180px;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  background: #f5f6f8;
  border-radius: 100px;
}
.domain-search-input::placeholder {
  color: #adb5bd;
}
.domain-search-btn {
  width: auto;
  min-width: 36px;
  height: 36px;
  align-self: center;
  padding: 0 0.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #0030b9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}
.domain-search-btn:hover {
  color: #3366e0;
  background: transparent;
}
.domain-search-result {
  margin-top: 0.75rem;
  margin-left: 1rem;
  font-size: 0.95rem;
  min-height: 1.5em;
  color: #1f2044;
}
.domain-search-result .disponivel { color: #198754; font-weight: 600; }
.domain-search-result .indisponivel { color: #dc3545; font-weight: 500; }
.domain-search-result .text-muted { color: #6c757d !important; }
.domain-search-result .text-warning { color: #856404 !important; }
.domain-search-result .text-danger { color: #dc3545 !important; }

.domain-search-tlds {
  margin-top: 0.5rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6c757d;
}
.domain-search-tlds-label {
  font-weight: 500;
}
.domain-search-tld-pill {
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

/* Busca de domínio – mobile estilo app */
@media (max-width: 767px) {
  .domain-search-registro {
    width: 100%;
  }
  .domain-search-inner {
    flex-wrap: nowrap;
    min-height: 52px;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    border-radius: 999px;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
  }
  .domain-search-input {
    min-width: 0;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
    border-radius: 999px;
  }
  .domain-search-btn {
    min-width: 44px;
    height: 44px;
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: 50%;
    color: #0030b9;
  }
  .domain-search-btn:active {
    opacity: 0.85;
  }
  .domain-search-result {
    margin-top: 0.6rem;
    margin-left: 0.25rem;
    font-size: 0.9rem;
  }
}

/* Busca de domínio (legado/outras seções) */
.fds-domain-search {
  background: #fff;
  border: 1px solid #e0e0e0;
}
.fds-domain-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.fds-domain-search .input-group-text {
  background: #f5f5f5;
  border-color: #dee2e6;
}
.fds-domain-search .btn-primary {
  background: var(--btn-bg, var(--accent-secondary));
  border-color: var(--btn-bg, var(--accent-secondary));
  color: #1f2044;
}
.fds-domain-search .btn-primary:hover {
  background: var(--btn-hover, var(--accent-hover));
  border-color: var(--btn-hover, var(--accent-hover));
}

/* ===== Busca de domínio - Página de resultados ===== */
.busca-dominio-header {
  background: #0030b9;
  padding: 1.5rem 0 2rem;
}
.busca-dominio-dica {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
}
.busca-dominio-form {
  width: 100%;
  max-width: 100%;
}
.busca-dominio-search-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 100%;
}
.busca-dominio-www {
  padding: 0 1rem 0 1.25rem;
  color: #6c757d;
  font-size: 0.9rem;
}
.busca-dominio-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
}
.busca-dominio-input::placeholder { color: #adb5bd; }
.busca-dominio-btn {
  background: transparent;
  border: none;
  padding: 0 1.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.busca-dominio-btn i {
  font-size: 1.1rem;
  color: #0032ba;
}
.busca-dominio-btn:hover i {
  color: var(--accent-hover);
}

/* Colunas dos resultados: permitem o card encolher e quebrar domínios longos */
#domainResultsCards > [class*="col-"],
#produtoDominioBuscaCards > [class*="col-"] {
  min-width: 0;
}

.busca-dominio-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.busca-dominio-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(30, 147, 238, 0.12);
}
.busca-dominio-card-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.busca-dominio-card-domain {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.busca-dominio-card-desc {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.busca-dominio-card-preco {
  margin-bottom: 1rem;
}
.busca-dominio-card-preco .preco-valor {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.busca-dominio-card-preco .preco-periodo { color: #6c757d; font-size: 0.9rem; }
.busca-dominio-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.busca-dominio-card-footer span {
  font-size: 0.85rem;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.busca-dominio-opcoes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.busca-dominio-btn-add {
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}
/* Lista compacta — um resultado (correspondência exata) */
.produto-ps-busca-dominio-lista {
  margin-top: 0.5rem;
}
.produto-ps-busca-linha {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.produto-ps-busca-linha__main { flex: 1 1 200px; min-width: 0; }
.produto-ps-busca-linha__dominio { font-weight: 600; color: #0f172a; word-break: break-word; margin: 0 0 0.25rem 0; font-size: 1rem; }
.produto-ps-busca-linha__status { font-size: 0.85rem; margin: 0; line-height: 1.35; }
.produto-ps-busca-linha__preco { font-weight: 700; white-space: nowrap; }
.produto-ps-busca-linha .busca-dominio-btn-add { flex: 0 0 auto; min-width: 140px; }

.busca-dominio-btn-add:hover,
.busca-dominio-btn-add:focus,
.busca-dominio-btn-add:active,
.busca-dominio-btn-add:focus-visible {
  background: var(--accent-hover) !important;
  background-color: var(--accent-hover) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.busca-dominio-btn-add:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--accent) !important;
  background-color: var(--accent) !important;
}

/* ===== Carrinho de domínios ===== */
.carrinho-dominios-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.carrinho-dominios-progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.carrinho-dominios-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #adb5bd;
  font-size: 0.9rem;
}
.carrinho-dominios-step.active {
  color: var(--accent);
  font-weight: 600;
}
.carrinho-dominios-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.carrinho-dominios-step.active .step-num {
  background: var(--accent);
  color: #fff;
}
.carrinho-dominios-step-line {
  width: 40px;
  height: 2px;
  background: #e9ecef;
  margin: 0 0.25rem;
}
.carrinho-dominios-seguro {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #198754;
}
.carrinho-dominios-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
}
.carrinho-dominios-card .dominio-nome {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0030b9;
}
.carrinho-dominios-doc-row {
  align-items: stretch;
}
.carrinho-dominios-doc-input {
  min-height: 44px;
  border-radius: 100px !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  flex: 1;
}
.carrinho-dominios-doc-btn {
  min-height: 44px;
  border-radius: 100px !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff !important;
}
.carrinho-dominios-doc-btn:hover {
  color: #fff !important;
}
.carrinho-dominios-resumo {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}
.carrinho-dominios-resumo-item {
  padding: 0.75rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.carrinho-dominios-resumo-nome {
  font-weight: 600;
  color: #0030b9;
  font-size: 0.95rem;
}
.carrinho-dominios-resumo-periodo {
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.carrinho-dominios-resumo-preco {
  color: var(--text);
  font-size: 1rem;
}
.carrinho-dominios-resumo-excluir {
  opacity: 0.7;
}
.carrinho-dominios-resumo-excluir:hover {
  opacity: 1;
}

/* Order bumps - hospedagem */
.orderbump-card {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.orderbump-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}
.orderbump-card-icon {
  font-size: 1.75rem;
  color: var(--accent);
}
.orderbump-card-nome {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.orderbump-card-desc {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  min-height: 2.5em;
}
.orderbump-card-preco {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.orderbump-card-periodo {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.orderbump-btn-add {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.orderbump-btn-add:hover,
.orderbump-btn-add:focus,
.orderbump-btn-add:active {
  background: var(--accent-hover) !important;
  color: #fff !important;
}
.orderbump-btn-added {
  background: #e9ecef !important;
  color: #6c757d !important;
  border: none;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.carrinho-dominios-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carrinho-dominios-btn-continuar {
  border-radius: 12px !important;
  color: #fff !important;
}
.carrinho-dominios-btn-continuar:hover {
  color: #fff !important;
}

/* Cupom - carrinho domínios */
.carrinho-dominios-cupom-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.carrinho-dominios-cupom-row {
  align-items: stretch;
}
.carrinho-dominios-cupom-input {
  min-height: 44px;
  border-radius: 100px !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  flex: 1;
  text-transform: uppercase;
}
.carrinho-dominios-cupom-input::placeholder {
  text-transform: none;
}
.carrinho-dominios-cupom-btn {
  min-height: 44px;
  border-radius: 100px !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff !important;
}
.carrinho-dominios-cupom-btn:hover {
  color: #fff !important;
}
.carrinho-dominios-cupom-feedback.text-success { color: #198754 !important; }
.carrinho-dominios-cupom-feedback.text-danger { color: #dc3545 !important; }

/* ===== Seção Serviços ===== */
.fds-services {
  background: #ffffff;
}
.fds-services-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  max-width: 560px;
}
.fds-services-nav {
  flex-shrink: 0;
}
.fds-services-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: transparent;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.fds-services-btn:disabled {
  cursor: not-allowed;
  background: transparent;
  color: #e2e8f0;
  border-color: #e2e8f0;
}
.fds-services-btn:not(:disabled) {
  background: #0030b9;
  color: #fff;
  border-color: #0030b9;
}
.fds-services-btn:not(:disabled):hover {
  background: #0044dd;
  color: #fff;
  border-color: #0044dd;
}
.fds-services-track-wrap {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2rem 0;
}
.fds-services-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  box-sizing: border-box;
  padding: 0.25rem 2.5rem;
}
.fds-services-track::-webkit-scrollbar {
  display: none;
}

/* Seção Suporte humanizado */
.support-promo {
  background: #ffffff;
}
.support-promo-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.08em;
}
.support-promo-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}
.support-promo-desc {
  color: #4b5563;
  line-height: 1.6;
}
.support-promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-promo-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.support-promo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.support-promo-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #d1d5db;
  color: var(--accent);
}
.support-promo-box-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  transition: background 0.2s, color 0.2s;
}
.support-promo-box:hover .support-promo-box-icon {
  background: #dbeafe;
  color: var(--accent);
}
.support-promo-col-img {
  align-self: stretch;
  display: flex;
}
.support-promo-visual {
  position: relative;
  width: 100%;
  display: flex;
  flex: 1;
  min-height: 420px;
}
.support-promo-img-single {
  width: 100%;
  flex: 1;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.support-promo-img-single img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 991px) {
  .support-promo-col-img { display: block; }
  .support-promo-visual { min-height: 360px; }
  .support-promo-img-single { min-height: 360px; }
  .support-promo-img-single img { min-height: 360px; }
}

/* Portfólio - mockup Safari clean */
.fds-portfolio-safari {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.fds-portfolio-safari::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 300px;
  background: #ffffff;
  clip-path: polygon(0 8%, 100% 98%, 100% 100%, 0 100%);
  z-index: 1;
}
/* Largura total do viewport com o mesmo recuo horizontal do hero / pitch split */
.fds-portfolio-wide,
.fds-features-clean__wide,
.fds-testimonials__wide {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: var(--fds-hero-align-pl);
  padding-right: var(--fds-hero-align-pr);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.fds-portfolio-head {
  text-align: center;
  margin-bottom: 1.2rem;
}
.fds-portfolio-kicker {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: #334155;
}
.fds-portfolio-kicker span {
  font-weight: 700;
  background: linear-gradient(90deg, #31414F, #EA1947);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fds-portfolio-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 600;
  color: #111827;
}
.fds-portfolio-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}
.fds-portfolio-tab {
  border: 1px solid #d8d8d8;
  background: #f3f3f3;
  border-radius: 14px;
  min-height: 56px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  padding: 0.65rem 0.85rem;
  transition: all 0.2s ease;
}
.fds-portfolio-tab:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, #d8d8d8);
  background: #ffffff;
}
.fds-portfolio-tab.is-active {
  border-color: color-mix(in srgb, var(--accent) 45%, #d8d8d8);
  color: var(--accent);
  background: #ffffff;
}
.fds-portfolio-image-wrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 14px;
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: none;
  display: block;
  position: relative;
}
.fds-portfolio-image-wrap::after {
  content: "\f470";
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
  line-height: 1;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.fds-portfolio-image-wrap:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.fds-portfolio-image-wrap:not(.fds-portfolio-image-wrap--browser) img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  display: block;
}
/* Home / Criação de sites: Safari com largura/altura da captura (até o máx. do layout), URL Poppins */
.fds-portfolio-image-wrap--browser {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.fds-home-portfolio-browser--home-tabs {
  flex: 0 1 auto;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.04),
    0 14px 44px -10px rgba(15, 23, 42, 0.2),
    0 6px 18px -6px rgba(15, 23, 42, 0.1);
}
.fds-home-portfolio-browser--home-tabs .fds-home-portfolio-browser-top {
  height: 36px;
  min-height: 36px;
  padding: 0 0.65rem;
  gap: 0.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #e8edf4 100%);
  border-bottom: 1px solid #c5d0e0;
  width: 100%;
  box-sizing: border-box;
}
.fds-home-portfolio-browser-url--poppins {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: #334155;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.fds-home-portfolio-browser--home-tabs .fds-home-portfolio-browser-url {
  border-color: #cbd5e1;
  background: #ffffff;
  padding: 0.2rem 0.55rem;
}
/* Área da captura: largura/altura intrínsecas; reduz se a captura for mais larga que o mockup */
.fds-home-portfolio-browser--home-tabs .fds-home-portfolio-media--home-intrinsic {
  aspect-ratio: unset;
  display: block;
  line-height: 0;
  background: #e8ecf1;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.fds-home-portfolio-browser--home-tabs .fds-home-portfolio-media--home-intrinsic img {
  width: auto;
  height: auto;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  display: block;
  vertical-align: top;
}
.fds-portfolio-note {
  margin: 0.75rem auto 0;
  max-width: 780px;
  text-align: center;
  font-size: 0.76rem;
  color: #6b7280;
}
.fds-portfolio-note-logo {
  height: 16px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  margin-left: 0.35rem;
  vertical-align: -2px;
}
.fds-portfolio-note-tip {
  border: none;
  background: transparent;
  color: var(--accent);
  padding: 0;
  margin-left: 0.3rem;
  line-height: 1;
  vertical-align: middle;
}
.fds-portfolio-note-tip i {
  font-size: 0.86rem;
}

/* Home: cases (baseado na referência Oxigen) */
.fds-cases-showcase { background: #f5f5f5; }
/* Mesmo miolo das páginas internas (.fds-main .container) */
.fds-cases-showcase__intro-shell {
  width: 100%;
  max-width: min(1420px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fds-hero-align-pl);
  padding-right: var(--fds-hero-align-pr);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .fds-cases-showcase__intro-shell {
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
  }
}
.fds-cases-showcase__intro { padding: 3.2rem 0 2.2rem; }
.fds-cases-showcase__headline {
  margin: 0;
  color: #101827;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.28;
  font-weight: 500;
}
.fds-cases-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  text-decoration: none;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.fds-cases-showcase__cta-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fds-cases-slider {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}
.fds-cases-track {
  --cases-gap: 3px;
  display: flex;
  gap: var(--cases-gap);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: none;
  background: #ffffff;
}
.fds-cases-track::-webkit-scrollbar { display: none; }
.fds-case-slide {
  text-decoration: none;
  color: #fff;
  scroll-snap-align: none;
  flex: 0 0 calc((100vw - (var(--cases-gap) * 3)) / 3);
  width: calc((100vw - (var(--cases-gap) * 3)) / 3);
  max-width: calc((100vw - (var(--cases-gap) * 3)) / 3);
}
.fds-card-case {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 586 / 350;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 992px) {
  .fds-card-case {
    height: clamp(265px, 23vw, 338px);
    aspect-ratio: auto;
  }
}
.fds-card-case__thumb,
.fds-card-case__thumb img,
.fds-card-case__fallback {
  width: 100%;
  height: 100%;
}
.fds-card-case__thumb { position: relative; overflow: hidden; background: #ffffff; }
.fds-card-case__thumb img {
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.fds-card-case__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,.82) 76%, rgba(2,6,23,.95) 100%);
}
.fds-card-case__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .9rem .95rem 1rem;
  z-index: 2;
}
.fds-card-case__content h3 {
  margin: 0 0 .35rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e5e7eb;
  font-weight: 500;
}
.fds-card-case__content h2 {
  margin: 0;
  font-size: clamp(1.1rem, 1.75vw, 1.7rem);
  line-height: 1.18;
  font-weight: 600;
  color: #fff;
}
.fds-card-case__fallback {
  display: grid;
  place-items: center;
  background: #f1f5f9;
  font-size: 2rem;
}
.fds-case-slide:hover .fds-card-case__thumb img { transform: scale(1.045); }
.fds-cases-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.fds-cases-nav:hover,
.fds-cases-nav:focus-visible {
  background: var(--accent-hover, #1a7bd4);
  color: #ffffff;
}
.fds-cases-nav:disabled { opacity: .4; }
.fds-cases-nav--prev {
  left: 12px;
  transform: translate(52%, -50%);
}
.fds-cases-nav--next {
  right: 12px;
  transform: translate(-52%, -50%);
}
@media (min-width: 992px) {
  .fds-cases-nav--prev { left: calc((100vw - 960px) / 2 + 12px); }
  .fds-cases-nav--next { right: calc((100vw - 960px) / 2 + 12px); }
}
@media (min-width: 1200px) {
  .fds-cases-nav--prev { left: calc((100vw - 1140px) / 2 + 12px); }
  .fds-cases-nav--next { right: calc((100vw - 1140px) / 2 + 12px); }
}
@media (min-width: 1400px) {
  .fds-cases-nav--prev { left: calc((100vw - 1320px) / 2 + 12px); }
  .fds-cases-nav--next { right: calc((100vw - 1320px) / 2 + 12px); }
}
@media (min-width: 1400px) {
  .page-home .fds-cases-nav--prev { left: calc((100vw - 1420px) / 2 + 12px); }
  .page-home .fds-cases-nav--next { right: calc((100vw - 1420px) / 2 + 12px); }
}
@media (max-width: 991px) {
  .fds-cases-showcase__intro { padding: 2.2rem 0 1.6rem; }
  .fds-cases-slider {
    --cases-slide-mobile-w: min(360px, calc(100vw - 4.25rem));
    width: 100%;
    max-width: none;
    padding-bottom: 0.25rem;
  }
  .fds-cases-track {
    gap: 0.65rem;
    /* Centraliza um card por vez; laterais mostram “peek” do anterior/próximo */
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px), calc(50% - var(--cases-slide-mobile-w) / 2));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px), calc(50% - var(--cases-slide-mobile-w) / 2));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fds-case-slide {
    flex: 0 0 var(--cases-slide-mobile-w);
    width: var(--cases-slide-mobile-w);
    max-width: var(--cases-slide-mobile-w);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .fds-cases-nav {
    display: inline-flex;
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  }
  .fds-cases-nav--prev {
    /* Leva o botão um pouco mais para fora no mobile */
    left: max(-46px, calc(50% - (var(--cases-slide-mobile-w) / 2) - 54px));
  }
  .fds-cases-nav--next {
    /* Leva o botão um pouco mais para fora no mobile */
    right: max(-46px, calc(50% - (var(--cases-slide-mobile-w) / 2) - 54px));
  }
  .fds-cases-nav.fds-cases-nav--hidden {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}

.page-home {
  overflow-x: clip;
}

/* Home (exceto hero): evita conteúdo a “passar” da viewport — trilho cases full-bleed, grelhas, etc. */
.page-home .fds-cases-showcase {
  overflow-x: clip;
}
.page-home .fds-partners-clients,
.page-home .fds-creation-services,
.page-home .fds-home-blog,
.page-home .sitefy-home-section {
  max-width: 100%;
  overflow-x: clip;
}
.page-home .fds-partners-clients__inner,
.page-home .fds-creation-services__inner,
.page-home .fds-home-blog .container-xl,
.page-home .sitefy-home-section > .container,
.page-home .fds-cases-showcase__intro-shell {
  width: 100%;
  max-width: min(1420px, 100%);
  min-width: 0;
  box-sizing: border-box;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
}
@media (max-width: 991px) {
  .page-home .fds-partners-clients__inner,
  .page-home .fds-creation-services__inner,
  .page-home .fds-home-blog .container-xl,
  .page-home .sitefy-home-section > .container,
  .page-home .fds-cases-showcase__intro-shell {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}
.page-home .fds-partners-clients__grid,
.page-home .fds-home-blog__grid {
  min-width: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .fds-partners-clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fds-partners-grid {
  background: #f5f5f5;
  padding: 2.8rem 0 3.2rem;
}
.fds-partners-grid__container {
  width: min(1140px, 100%);
  max-width: 1140px;
}
.fds-partners-grid__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3.2rem 2.2rem;
  align-items: center;
  justify-items: center;
}
.fds-partners-grid__item {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fds-partners-grid__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fds-partners-grid__link img {
  max-width: 165px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.96);
  opacity: 0.95;
}
@media (max-width: 991px) {
  .fds-partners-grid {
    padding: 2rem 0 2.3rem;
  }
  .fds-partners-grid__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem 1.1rem;
  }
  .fds-partners-grid__item {
    min-height: 56px;
  }
}
@media (max-width: 575px) {
  .fds-partners-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Cards de projetos na home */
.fds-home-portfolio-cards {
  background: #ffffff;
  margin-top: 0;
  padding-top: 1.8rem;
  padding-bottom: 3rem;
}
.fds-home-portfolio-cards--cta-only {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
.fds-home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.fds-home-portfolio-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 14px;
  padding: 0.55rem 0.55rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.fds-home-portfolio-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.3);
  box-shadow: none;
}
.fds-home-portfolio-card.is-disabled {
  pointer-events: none;
}
.fds-home-portfolio-browser {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  box-shadow: none;
}
.fds-home-portfolio-browser-top {
  height: 30px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid #dbe3ee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.55rem;
}
.fds-home-portfolio-browser-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.fds-home-portfolio-browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.fds-home-portfolio-browser-dots i:nth-child(1) { background: #ff5f57; }
.fds-home-portfolio-browser-dots i:nth-child(2) { background: var(--accent, #2E93EE); }
.fds-home-portfolio-browser-dots i:nth-child(3) { background: #28c840; }
.fds-home-portfolio-browser-url {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  color: #475569;
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fds-home-portfolio-media {
  border-radius: 0;
  background: #f8fafc;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fds-home-portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fds-home-portfolio-fallback {
  font-size: 0.95rem;
  color: #475569;
  padding: 0 0.8rem;
  text-align: center;
}
.fds-home-portfolio-title {
  margin-top: 0.65rem;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: left;
}
.fds-home-portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.fds-home-portfolio-more:hover {
  color: #ffffff;
  background: var(--accent-secondary);
  filter: none;
}
.fds-home-portfolio-cards .text-center.mt-4 {
  margin-top: 3rem !important;
}

/* Página Portfólio — hero: Safari compacto; coluna visual centralizada (sobrescreve flex-end da home) */
.page-portfolio .fds-slide-hero--portfolio-page .fds-home-hero-title {
  margin: 0;
}
.page-portfolio .fds-slide-hero--portfolio-page .fds-hero-split-col--portfolio-visual {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding-top: 1.25rem !important;
  padding-bottom: 2rem !important;
  padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
  padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
}
@media (min-width: 992px) {
  .page-portfolio .fds-slide-hero--portfolio-page .fds-hero-split-col--portfolio-visual {
    padding-top: calc(var(--fds-top-fixed) + 1.25rem) !important;
    padding-bottom: 2.5rem !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
@media (max-width: 991px) {
  .page-portfolio .fds-slide-hero--split-pan .fds-hero-split-col--portfolio-visual {
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding-top: 0.75rem !important;
    padding-bottom: 1.75rem !important;
    padding-left: max(15px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(15px, env(safe-area-inset-right, 0px)) !important;
  }
  /* Safari à mesma largura do texto (sem “card” estreito centrado) */
  .page-portfolio .fds-portfolio-hero-safari {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-browser {
    width: 100%;
  }
  .page-portfolio .fds-slide-hero--portfolio-page .fds-slide-desc,
  .page-portfolio .fds-slide-hero--portfolio-page .fds-home-hero-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    text-align: left !important;
  }
  .page-portfolio .fds-slide-hero--portfolio-page .fds-slide-btn.fds-slide-btn--hero-primary {
    max-width: none !important;
    width: 100% !important;
  }
}
.fds-portfolio-hero-safari {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-browser {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
}
.page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-browser-top {
  height: 32px;
  min-height: 32px;
  padding: 0 0.55rem;
  gap: 0.45rem;
}
.page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-browser-url {
  font-size: 0.72rem;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.page-portfolio .fds-portfolio-hero-safari .fds-home-portfolio-media .fds-portfolio-hero-safari__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Escalagem com melhor qualidade (navegadores recentes) + anti-serrilhado em transforms */
.page-portfolio .fds-portfolio-img-sharp {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@supports (image-rendering: high-quality) {
  .page-portfolio .fds-portfolio-img-sharp {
    image-rendering: high-quality;
  }
}
.fds-slide-hero--split-pan .fds-portfolio-hero-safari {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .fds-portfolio-hero-safari {
    max-width: 600px;
  }
}
/* Portfólio hero mobile: texto + CTA + Safari alinhados à esquerda e à mesma largura (corrige CTA centrado e mockup estreito) */
@media (max-width: 767px) {
  .page-portfolio .fds-slide-hero--portfolio-page .fds-slide-desc,
  .page-portfolio .fds-slide-hero--portfolio-page .fds-home-hero-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    text-align: left !important;
  }
  .page-portfolio .fds-slide-hero--portfolio-page .fds-slide-btn.fds-slide-btn--hero-primary {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }
  .page-portfolio .fds-slide-hero--split-pan .col-lg-6:last-child.fds-hero-split-col--portfolio-visual {
    justify-content: flex-start !important;
    align-items: stretch !important;
  }
}
.page-portfolio .fds-portfolio-page--listing.section-padding {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.75rem);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 28%, #ffffff 100%);
}
.page-portfolio .fds-portfolio-pagination {
  margin-top: 0.75rem;
}
/* Página portfólio: mesmas abas visuais da home (.fds-portfolio-tab) */
.page-portfolio .fds-portfolio-tabs--page-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.page-portfolio a.fds-portfolio-tab {
  text-decoration: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 991px) {
  .page-portfolio .fds-portfolio-tabs--page-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-portfolio .fds-portfolio-page-count {
  font-size: 0.88rem;
  color: #64748b;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  background: rgba(241, 245, 249, 0.85);
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.fds-portfolio-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #ffffff;
}
.fds-portfolio-list-grid .fds-case-slide {
  width: 100%;
  max-width: 100%;
  flex: initial;
}
.fds-portfolio-list-grid .fds-case-slide.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
.fds-portfolio-list-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}
.fds-portfolio-list-card__body {
  padding: 0.9rem 1.1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fds-portfolio-list-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.fds-portfolio-list-card__link-hint {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.fds-portfolio-list-card:hover:not(.is-disabled) .fds-portfolio-list-card__link-hint {
  text-decoration: underline;
}
.fds-portfolio-page-empty {
  text-align: center;
  padding: 3rem 1.25rem;
  max-width: 26rem;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 252, 0.9);
}
.fds-portfolio-page-empty-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 10%, #ffffff);
  color: var(--accent);
  font-size: 1.65rem;
}
.fds-portfolio-page-empty-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.fds-portfolio-page-empty-hint {
  margin: 0;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.45;
}
@media (max-width: 991px) {
  .fds-portfolio-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
  }
}
@media (max-width: 575px) {
  .fds-portfolio-list-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    background: transparent;
  }
}
.fds-portfolio-pagination .page-link {
  border-radius: 10px;
  margin: 0 0.15rem;
  color: #334155;
  border-color: #e2e8f0;
  min-width: 2.5rem;
  text-align: center;
}
.fds-portfolio-pagination .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.fds-portfolio-pagination .page-item:not(.disabled) .page-link:hover {
  background: #f8fafc;
  color: var(--accent);
  border-color: var(--accent);
}
.page-portfolio .fds-portfolio-pagination .page-link.rounded-pill {
  border-radius: 999px;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 767px) {
  .fds-home-portfolio-cards {
    margin-top: 0;
    padding-top: 1.4rem;
    padding-bottom: 2.2rem;
  }
  .fds-home-portfolio-cards--cta-only {
    padding-top: 0.35rem;
    padding-bottom: 1.6rem;
  }
  .fds-home-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .fds-home-portfolio-title {
    font-size: 0.9rem;
  }
  .fds-home-portfolio-browser-top {
    height: 28px;
  }
  .fds-home-portfolio-browser-url {
    font-size: 0.64rem;
  }
  .fds-home-portfolio-more {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
  .fds-home-portfolio-cards .text-center.mt-4 {
    margin-top: 2.1rem !important;
  }
}

/* Features - sessão clean (alinhada ao .container do site) */
.fds-features-clean {
  background: #ffffff;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}
.fds-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .fds-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem 1.2rem;
  }
  .fds-features-clean .fds-feature-title {
    font-size: 0.98rem;
  }
  .fds-features-clean .fds-feature-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

.fds-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.fds-feature-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.fds-feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  background: color-mix(in srgb, var(--accent) 14%, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.fds-feature-ico i {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.fds-feature-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.fds-feature-desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 100%;
}

@media (max-width: 767px) {
  .fds-features-clean {
    padding-top: 2.9rem;
    padding-bottom: 2.9rem;
    background: #ffffff;
  }
  .fds-features-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  .fds-feature-card {
    padding: 1.05rem 1rem 1.1rem;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
  }
  .fds-feature-top {
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }
  .fds-feature-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex: 0 0 42px;
  }
  .fds-feature-ico i {
    font-size: 1.2rem;
  }
  .fds-feature-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
  .fds-feature-desc {
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 100%;
  }
}

/* Plataforma - abas com imagem lateral */
.fds-platform-tabs {
  background: #ffffff;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}
.fds-platform-menu {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  padding: 0 0.35rem;
}
.fds-platform-tab {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  text-align: left;
  padding: 0.95rem 0;
  font-size: 1rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.fds-platform-tab:last-child {
  border-bottom: 0;
}
.fds-platform-tab:hover {
  background: transparent;
}
.fds-platform-tab.is-active {
  background: transparent;
  color: var(--accent);
  font-weight: 800;
}
.fds-platform-content {
  padding-top: 0.2rem;
}
.fds-platform-title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #111827;
  text-transform: none;
}
.fds-platform-desc {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}
.fds-platform-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  background: transparent;
}
.fds-platform-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: contain;
}

.fds-platform-tab-ico {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent);
}

.fds-platform-icons-grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 0.9rem;
}
.fds-platform-icon-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.2rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
}
.fds-platform-icon-box i {
  color: var(--accent);
  font-size: 1.7rem;
}

/* Depoimentos - histórias de clientes */
.fds-testimonials {
  background: linear-gradient(180deg, #eef4ff 0%, #e9f1ff 100%);
  color: #0f172a;
  position: relative;
  overflow: hidden;
}
.fds-testimonials.section-padding {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.fds-testimonials-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.fds-testimonials-track-wrap {
  overflow: hidden;
  /* estende o carrossel até a borda direita do viewport,
     mantendo o título dentro da largura padrão do container */
  margin-right: calc((100vw - 100%) / -2);
}
.fds-testimonials .col-lg-8 {
  padding-right: 0;
}
.fds-testimonials-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* deixa a coluna de texto um pouco mais larga
     para os cards não ficarem tão compridos */
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.fds-testimonials-headline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fds-testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
}
.fds-testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.fds-testimonials-rating-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.fds-testimonials-rating-stars {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.fds-testimonials-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: #0f172a;
}
.fds-testimonials-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.fds-testimonials-arrow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.fds-testimonials-arrow i {
  line-height: 1;
}
.fds-testimonials-arrow:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}
.fds-testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding-right: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  z-index: 2;
}
.fds-testimonial-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  border: 1px solid #dbe7ff;
  /* mais alto e um pouco mais compacto na largura */
  padding: 2.5rem 2.4rem 2.25rem;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
  box-shadow: none;
  display: flex;
  /* largura pensada para 3 cards visíveis (2 inteiros + 1 cortado) */
  flex: 0 0 46%;
  max-width: 46%;
  transform: none;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fds-testimonial-card.is-active {
  opacity: 1;
}
.fds-testimonial-card.is-next,
.fds-testimonial-card.is-next2 {
  opacity: 1;
  box-shadow: none;
}
.fds-testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.fds-testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
.fds-testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fds-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #e0f2fe;
  font-size: 1.1rem;
}
.fds-testimonial-meta {
  display: flex;
  flex-direction: column;
}
.fds-testimonial-name {
  font-weight: 600;
  margin: 0;
}
.fds-testimonial-brand {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* Ajustes mobile para depoimentos */
@media (max-width: 767px) {
  .fds-testimonials.section-padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .fds-testimonials-track-wrap {
    margin-right: 0;
  }
  .fds-testimonials-title {
    font-size: 1.6rem;
  }
  .fds-testimonials-track {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
  }
  .fds-testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 1.1rem 1rem;
  }
  .fds-testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .fds-testimonial-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* ===== Showcase / Portfólio (estilo Nuvemshop simplificado) ===== */
.fds-showcase {
  position: relative;
  background: var(--fds-showcase-bg, #020617);
  color: #e5e7eb;
  overflow: hidden;
}
.fds-showcase.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.fds-showcase-bg {
  position: absolute;
  inset: 0;
  background: var(--fds-showcase-bg, #020617);
  clip-path: ellipse(80% 100% at 50% 100%);
  transform: translateY(100vh);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fds-showcase-bg.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fds-showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  z-index: 0;
}
.fds-showcase.is-visible .fds-showcase-bg {
  transform: translateY(0);
}
.fds-showcase-title {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1f2044;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de cards (mostra todos) */
.fds-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.fds-showcase-item {
  min-width: 0;
}

/* Layout “Nuvemshop” (previews grandes, limpo) */
.fds-showcase-ns-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}
.fds-showcase-ns-item { min-width: 0; }

/* Portfólio - carrossel (mesmo modelo dos depoimentos) */
.fds-showcase-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.fds-showcase-head .fds-showcase-title { margin-bottom: 0; }
.fds-showcase-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fds-showcase-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(31, 32, 68, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #1f2044;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.fds-showcase-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}
.fds-showcase-arrow:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}
.fds-showcase-arrow:disabled {
  opacity: 0.45;
}
.fds-showcase-arrow:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}
.fds-showcase-track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fds-showcase-track {
  display: flex;
  gap: 1.5rem;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fds-showcase-item {
  /* 2 cards visíveis (cálculo exato) */
  flex: 0 0 calc((100% - 1.5rem) / 2);
  max-width: calc((100% - 1.5rem) / 2);
  opacity: 0.45;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fds-showcase-item.is-active {
  opacity: 1;
}
.fds-showcase-item.is-next,
.fds-showcase-item.is-next2 {
  opacity: 1;
}

/* Toggles (pílulas -> círculo no ativo) */
.fds-showcase-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -52px;
  flex-wrap: wrap;
  align-items: center; /* mantém tudo na mesma linha/altura */
}
.fds-showcase-dot {
  width: 28px;
  height: 14px; /* mesma altura do ativo */
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, 0.35);
  background: #e2e8f0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease, border-radius 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.fds-showcase-dot:hover {
  border-color: rgba(100, 116, 139, 0.5);
  background: #cbd5e1;
  transform: translateY(-1px);
}
.fds-showcase-dot.is-active {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: rgba(37, 99, 235, 0.85);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}
.fds-showcase-dot:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}
.fds-showcase-ns-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 0;
  box-shadow: none;
  transform: translateZ(0);
  transition: none;
}
.fds-showcase-ns-card:hover {
  transform: none;
}
.fds-showcase-ns-media {
  position: relative;
  overflow: hidden;
}
.fds-showcase-ns-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.fds-showcase-ns-img {
  width: 100%;
  height: clamp(220px, 28vw, 440px);
  object-fit: cover;
  display: block;
  border-radius: 0;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.fds-showcase-ns-card:hover .fds-showcase-ns-img {
  transform: scale(1.05);
}

/* Ícone de link no hover (fundo azul) */
.fds-showcase-ns-linkicon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  margin-left: -27px;
  margin-top: -27px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  pointer-events: none;
}
.fds-showcase-ns-linkicon i {
  font-size: 1.35rem;
  line-height: 1;
}
.fds-showcase-ns-card:hover .fds-showcase-ns-linkicon {
  opacity: 1;
  transform: scale(1);
}
.fds-showcase-ns-gradient {
  display: none;
}
.fds-showcase-ns-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  margin-top: -26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
  transform: none;
  transition: none;
}
.fds-showcase-ns-card:hover .fds-showcase-ns-arrow {
  transform: none;
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.22);
}
.fds-showcase-ns-arrow i { font-size: 1.1rem; }

.fds-showcase-ns-body {
  /* leve deslocamento para a direita */
  padding: 14px 6px 0 18px;
  display: block;
  flex: 0 0 auto;
  min-height: 230px; /* mantém altura estável entre cards */
}
.fds-showcase-ns-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fds-showcase-ns-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.fds-showcase-ns-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1f2044;
  max-width: 100%;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ajustes mobile para portfólio / showcase */
@media (max-width: 767px) {
  .fds-showcase.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .fds-showcase-track {
    gap: 1rem;
  }
  .fds-showcase-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .fds-showcase-dots {
    margin-top: 1.5rem;
  }
}
.fds-showcase-ns-techimg-wrap {
  display: flex;
  align-items: center;
  min-height: 52px; /* reserva espaço mesmo sem tecnologia */
}
.fds-showcase-ns-techimg {
  width: auto;
  height: auto;
  max-height: 46px;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.fds-showcase-ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.08);
  color: #1f2044;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  align-self: flex-start;
}

@media (max-width: 767px) {
  /* Mobile: botão abaixo do logo de tecnologias, ocupando a largura do conteúdo */
  .fds-showcase-ns-row {
    flex-direction: column;
    align-items: stretch;
  }
  .fds-showcase-ns-left {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .fds-showcase-ns-title {
    max-width: 100%;
  }
  .fds-showcase-ns-techimg-wrap {
    width: 100%;
    justify-content: center;
  }
  .fds-showcase-ns-btn {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }
}
.fds-showcase-ns-btn:hover {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}
.fds-showcase-ns-btn:active {
  transform: translateY(0);
}


/* Card (estilo da referência) */
.fds-showcase-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.fds-showcase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.28);
  background: rgba(255, 255, 255, 0.055);
}
.fds-showcase-card-media {
  position: relative;
  background: transparent;
  padding: 14px 14px 0;
}
.fds-showcase-card-media::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 85px;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0));
  pointer-events: none;
}
.fds-showcase-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transform: translateZ(0);
}
.fds-showcase-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.fds-showcase-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f9fafb;
}
.fds-showcase-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.74);
  min-height: 3.1em; /* consistência */
}
.fds-showcase-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.fds-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.85rem;
  font-weight: 500;
}
.fds-showcase-tag-icon {
  display: none;
}
.fds-showcase-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.fds-showcase-card-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.40);
}
@media (max-width: 767px) {
  .fds-showcase.section-padding {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .fds-showcase-title {
    font-size: 1.7rem;
  }
  .fds-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .fds-showcase-head {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .fds-showcase-arrow {
    width: 44px;
    height: 44px;
  }
  .fds-showcase-track {
    gap: 1rem;
  }
  .fds-showcase-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .fds-showcase-ns-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .fds-showcase-dots {
    gap: 8px;
    margin-top: 12px; /* espaço menor entre botão e bolinhas no mobile */
  }
  .fds-showcase-dot { width: 24px; height: 13px; }
  .fds-showcase-dot.is-active { width: 13px; height: 13px; }
  .fds-showcase-ns-linkicon {
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
  }
  .fds-showcase-ns-body {
    min-height: 210px;
  }
  .fds-showcase-ns-row {
    align-items: flex-start;
    gap: 12px;
  }
  .fds-showcase-ns-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .fds-showcase-ns-title {
    font-size: 1.05rem;
    margin-top: 0;
  }
  .fds-showcase-ns-techimg {
    max-height: 42px;
    max-width: 240px;
  }
  .fds-showcase-ns-btn {
    margin-top: 10px;
    padding: 11px 16px;
  }
  .fds-showcase-card {
    border-radius: 18px;
  }
  .fds-showcase-card-media {
    padding: 12px 12px 0;
  }
  .fds-showcase-card-img {
    border-radius: 14px;
  }
  .fds-showcase-card-body {
    padding: 14px;
    gap: 8px;
  }
  .fds-showcase-card-title {
    font-size: 1.05rem;
  }
  .fds-showcase-card-desc {
    font-size: 0.92rem;
    min-height: 2.8em;
  }
}

@media (max-width: 991px) {
  .fds-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fds-showcase-ns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  /* Mesma regra lateral da hero home (15px + safe-area) */
  .fds-portfolio-safari .fds-portfolio-wide,
  .fds-home-portfolio-cards .fds-portfolio-wide,
  .fds-features-clean .fds-features-clean__wide,
  .fds-testimonials .fds-testimonials__wide {
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
  }
  .fds-platform-tabs {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .fds-platform-icons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fds-platform-title {
    font-size: 1.55rem;
  }
  .fds-platform-desc {
    font-size: 0.98rem;
  }
  .fds-portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fds-portfolio-image-wrap:not(.fds-portfolio-image-wrap--browser) img {
    min-height: 190px;
  }
  .fds-testimonials.section-padding {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  .fds-testimonials-track {
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .fds-platform-tab {
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }
  .fds-platform-icons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .fds-platform-icon-box {
    min-height: auto;
    padding: 0.25rem 0.1rem;
  }
  .fds-platform-title {
    font-size: 1.25rem;
  }
  .fds-platform-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .fds-portfolio-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fds-portfolio-tab {
    min-height: 48px;
    font-size: 0.85rem;
  }
  .fds-testimonials-title {
    font-size: 1.7rem;
    margin-bottom: 1.75rem;
  }
  .fds-testimonials-track {
    flex-direction: column;
  }
  .fds-testimonial-card {
    padding: 1.9rem 1.75rem 1.75rem;
  }
  .fds-testimonial-card.is-next {
    opacity: 1;
  }
}

/* Depoimentos mobile premium (override final) */
@media (max-width: 767px) {
  .fds-testimonials {
    background: linear-gradient(180deg, #f3f7ff 0%, #edf3ff 100%);
  }
  .fds-testimonials.section-padding {
    padding-top: 2.7rem;
    padding-bottom: 1.5rem;
  }
  .fds-testimonials .row {
    row-gap: 1rem;
  }
  .fds-testimonials-left {
    max-width: 100%;
  }
  .fds-testimonials-headline {
    gap: 0.5rem;
  }
  .fds-testimonials-rating-score,
  .fds-testimonials-rating-stars {
    font-size: 1.05rem;
  }
  .fds-testimonials-title {
    font-size: clamp(1.95rem, 8.3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
  }
  .fds-testimonials-nav {
    margin-top: 1.15rem;
    gap: 0.6rem;
  }
  .fds-testimonials-arrow {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    box-shadow: 0 10px 22px rgba(225, 7, 67, 0.22);
  }
  .fds-testimonials-track-wrap {
    margin-right: 0;
    overflow: hidden;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .fds-testimonials-track {
    flex-direction: row !important; /* mantém carrossel horizontal no mobile */
    align-items: stretch;
    gap: 0.9rem;
    will-change: transform;
  }
  .fds-testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    min-height: 210px;
    border-radius: 18px;
    border: 1px solid #dbe7ff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 1.35rem 1.15rem 1.1rem;
  }
  .fds-testimonial-quote {
    font-size: 2.2rem;
    margin-bottom: 0.35rem;
    color: #0f172a;
  }
  .fds-testimonial-text {
    font-size: 1.03rem;
    line-height: 1.52;
    color: #1e293b;
    margin-bottom: 1.15rem;
  }
  .fds-testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  .fds-testimonial-name {
    font-size: 1.05rem;
    color: #0f172a;
  }
  .fds-testimonial-brand {
    font-size: 0.9rem;
  }
}

/* FAQ - Perguntas frequentes (clean) */
.fds-faq {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #0f172a;
  min-height: 420px;
}
.fds-faq::before {
  content: "";
  position: absolute;
  top: -84px;
  left: 0;
  width: 100%;
  height: 84px;
  background: linear-gradient(174deg, #f5f3f2 49%, #ffffff 50%);
  z-index: 1;
}
.fds-faq.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.fds-faq .container.fds-faq-container {
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  /* Mesma largura útil / recuo horizontal que o portfólio (.fds-portfolio-wide) */
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fds-hero-align-pl);
  padding-right: var(--fds-hero-align-pr);
  box-sizing: border-box;
}
.fds-faq-col-title {
  padding-top: 0.25rem;
  margin-bottom: 1rem;
}
.fds-faq .col-lg-7.offset-lg-1 {
  padding-top: 0.5rem;
}
.fds-faq-heading {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: #0f172a;
  line-height: 1.2;
}
.fds-faq-title-line {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  font-family: inherit;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.fds-faq-subtitle-line {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #475569;
  line-height: 1.35;
}
.fds-faq-login-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.3rem;
}
.fds-faq-login-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8f8f8;
  color: #0f172a;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.fds-faq-login-card:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, #e5e7eb);
  background: #ffffff;
  transform: translateY(-1px);
  color: #0f172a;
}
.fds-faq-login-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #ffffff);
  flex: 0 0 30px;
}
.fds-faq-login-ico i {
  font-size: 0.9rem;
  line-height: 1;
}
.fds-faq-login-txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.fds-faq-login-title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.15;
  color: #111827;
}
.fds-faq-login-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.18rem;
  line-height: 1.25;
}
.fds-faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #0f172a;
  --bs-accordion-btn-color: #0f172a;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-border-width: 0;
  display: grid;
  gap: 1.15rem;
}
.fds-faq-item {
  background: #f8f8f8;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
}
.fds-faq .faq-title.h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.fds-faq-accordion .accordion-header {
  margin: 0;
}
.fds-faq-accordion .accordion-button {
  color: #0f172a;
  font-weight: 500;
  padding: 1.45rem 1.5rem;
  background: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 1rem;
}
.fds-faq-accordion .accordion-button::after {
  display: none;
}
.fds-faq-accordion .accordion-button .section-title.strong {
  flex: 1;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
}
.fds-faq-accordion .accordion-button .d-flex {
  flex-shrink: 0;
}
.fds-faq .faq-title-icon.icon-circle {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.2s ease;
  color: #334155;
}
.fds-faq-accordion .accordion-button:not(.collapsed) .faq-title-icon.icon-circle {
  transform: rotate(180deg);
  background: transparent;
  color: var(--accent);
}
.fds-faq .faq-title-icon.icon-circle svg {
  display: block;
  width: 24px;
  height: 24px;
}
.fds-faq-accordion .accordion-button:not(.collapsed) {
  background: #fcfcfc;
  box-shadow: none;
}
.fds-faq-accordion .accordion-button:not(.collapsed) .section-title.strong {
  color: var(--accent);
}
.fds-faq .section-body.faq-body.accordion-body {
  color: #334155;
  padding: 22px;
  line-height: 1.65;
  font-size: 1rem;
  border-top: 0;
  background: #ffffff;
  text-align: left;
}
.fds-faq .faq-body.accordion-body p {
  margin-bottom: 1rem;
}
.fds-faq .faq-body.accordion-body p:last-child {
  margin-bottom: 0;
}
.fds-faq .faq-body.accordion-body ul,
.fds-faq .faq-body.accordion-body ol {
  margin: 1rem 0 1rem 1.25rem;
  padding-left: 1.25rem;
}
.fds-faq .faq-body.accordion-body li {
  margin-bottom: 0.6rem;
}
.fds-faq .faq-body.accordion-body li:last-child {
  margin-bottom: 0;
}
.fds-faq .faq-body.accordion-body a {
  color: var(--accent);
  text-decoration: underline;
}
.fds-faq .faq-body.accordion-body a:hover {
  color: var(--accent-hover);
}
@media (max-width: 991px) {
  /* Mesma regra lateral da hero; selector igual ao base (.container.fds-faq-container) para vencer especificidade */
  .fds-faq .container.fds-faq-container {
    padding-left: max(15px, env(safe-area-inset-left, 0px));
    padding-right: max(15px, env(safe-area-inset-right, 0px));
  }
  .fds-faq-item {
    margin: 0;
  }
  .fds-faq-accordion .accordion-button {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .fds-faq-accordion .accordion-button .section-title.strong {
    font-size: 1.05rem;
  }
  .fds-faq-login-cards {
    grid-template-columns: 1fr;
  }
  .fds-faq .section-body.faq-body.accordion-body {
    font-size: 0.95rem;
    padding: 0 1.1rem 1.1rem;
  }
  .fds-faq .section-body.faq-body.accordion-body,
  .fds-faq .faq-body.accordion-body.pe-0.pe-sm-5 {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}
@media (max-width: 575px) {
  .fds-faq .col-lg-7.offset-lg-1 {
    margin-left: 0;
  }
  .fds-faq-accordion .accordion-button {
    padding-left: 1rem;
    padding-right: 3rem;
  }
  .fds-faq-accordion .accordion-button .section-title.strong {
    font-size: 1rem;
  }
  .fds-faq .section-body.faq-body.accordion-body,
  .fds-faq .faq-body.accordion-body.pe-0.pe-sm-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Ajustes mobile para FAQ (evita cortes e travamentos) */
@media (max-width: 991px) {
  .fds-faq.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .fds-faq::before {
    top: -56px;
    height: 56px;
  }
}

/* CTA simples acima da FAQ */
.pre-faq-cta {
  position: relative;
  overflow: hidden;
  background: #fdfdfd;
}
.pre-faq-cta.section-padding {
  padding-top: 9rem;
  padding-bottom: 8.5rem;
}
.pre-faq-cta-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--accent, #e10743);
}
.pre-faq-cta-tech {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  color: var(--accent, #e10743);
  overflow: visible;
}
.pre-faq-cta-tech-bleed {
  opacity: 0;
  animation: pre-faq-cta-tech-bleed-in 26s ease-out infinite;
  transform-box: fill-box;
  transform-origin: 50% 45%;
}
.pre-faq-cta-tech-stage {
  transform-box: fill-box;
  transform-origin: 50% 45%;
  animation:
    pre-faq-cta-tech-grow 26s cubic-bezier(0.34, 0.02, 0.15, 1) infinite,
    pre-faq-cta-tech-peek 26s ease-in-out infinite;
}
.pre-faq-cta-tech-stroke {
  opacity: 0.9;
}
.pre-faq-cta-tech--uplink {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: pre-faq-cta-tech-draw-uplink 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--brackets {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: pre-faq-cta-tech-draw-brackets 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--frame {
  stroke-dasharray: 1320;
  stroke-dashoffset: 1320;
  animation: pre-faq-cta-tech-draw-frame 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--chrome {
  stroke-dasharray: 405;
  stroke-dashoffset: 405;
  animation: pre-faq-cta-tech-draw-chrome 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--address {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: pre-faq-cta-tech-draw-address 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--hero {
  stroke-dasharray: 880;
  stroke-dashoffset: 880;
  animation: pre-faq-cta-tech-draw-hero 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--split {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  animation: pre-faq-cta-tech-draw-split 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--nav {
  stroke-dasharray: 175;
  stroke-dashoffset: 175;
  animation: pre-faq-cta-tech-draw-nav 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--main {
  stroke-dasharray: 1260;
  stroke-dashoffset: 1260;
  animation: pre-faq-cta-tech-draw-main 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--cards {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: pre-faq-cta-tech-draw-cards 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--node {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}
.pre-faq-cta-tech--node-a {
  animation: pre-faq-cta-tech-draw-node-a 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--node-b {
  animation: pre-faq-cta-tech-draw-node-b 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
.pre-faq-cta-tech--node-c {
  animation: pre-faq-cta-tech-draw-node-c 26s cubic-bezier(0.28, 0.52, 0.2, 1) infinite;
}
@keyframes pre-faq-cta-tech-bleed-in {
  0%,
  22% {
    opacity: 0;
    transform: scale(0.92);
  }
  40% {
    opacity: 0.11;
    transform: scale(1);
  }
  72% {
    opacity: 0.2;
    transform: scale(1.08);
  }
  94% {
    opacity: 0.16;
    transform: scale(1.05);
  }
  97% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
}
@keyframes pre-faq-cta-tech-grow {
  0% {
    transform: scale(0.38) rotate(-1.4deg);
  }
  14% {
    transform: scale(0.92) rotate(0deg);
  }
  36% {
    transform: scale(1.55) rotate(0.6deg);
  }
  58% {
    transform: scale(2.1) rotate(0deg);
  }
  78% {
    transform: scale(2.55) rotate(-0.5deg);
  }
  94% {
    transform: scale(2.78) rotate(0deg);
  }
  100% {
    transform: scale(0.38) rotate(-1.4deg);
  }
}
@keyframes pre-faq-cta-tech-peek {
  0%,
  1% {
    opacity: 0;
  }
  2.5% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pre-faq-cta-tech-draw-uplink {
  0%,
  2% {
    stroke-dashoffset: 40;
  }
  11% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 40;
  }
  100% {
    stroke-dashoffset: 40;
  }
}
@keyframes pre-faq-cta-tech-draw-brackets {
  0%,
  4% {
    stroke-dashoffset: 130;
  }
  16% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 130;
  }
  100% {
    stroke-dashoffset: 130;
  }
}
@keyframes pre-faq-cta-tech-draw-frame {
  0%,
  3% {
    stroke-dashoffset: 1320;
  }
  19% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 1320;
  }
  100% {
    stroke-dashoffset: 1320;
  }
}
@keyframes pre-faq-cta-tech-draw-chrome {
  0%,
  7% {
    stroke-dashoffset: 405;
  }
  18% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 405;
  }
  100% {
    stroke-dashoffset: 405;
  }
}
@keyframes pre-faq-cta-tech-draw-address {
  0%,
  9% {
    stroke-dashoffset: 300;
  }
  20% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 300;
  }
  100% {
    stroke-dashoffset: 300;
  }
}
@keyframes pre-faq-cta-tech-draw-hero {
  0%,
  11% {
    stroke-dashoffset: 880;
  }
  24% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 880;
  }
  100% {
    stroke-dashoffset: 880;
  }
}
@keyframes pre-faq-cta-tech-draw-split {
  0%,
  14% {
    stroke-dashoffset: 110;
  }
  25% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 110;
  }
  100% {
    stroke-dashoffset: 110;
  }
}
@keyframes pre-faq-cta-tech-draw-nav {
  0%,
  17% {
    stroke-dashoffset: 175;
  }
  28% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 175;
  }
  100% {
    stroke-dashoffset: 175;
  }
}
@keyframes pre-faq-cta-tech-draw-main {
  0%,
  20% {
    stroke-dashoffset: 1260;
  }
  33% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 1260;
  }
  100% {
    stroke-dashoffset: 1260;
  }
}
@keyframes pre-faq-cta-tech-draw-cards {
  0%,
  24% {
    stroke-dashoffset: 480;
  }
  38% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 480;
  }
  100% {
    stroke-dashoffset: 480;
  }
}
@keyframes pre-faq-cta-tech-draw-node-a {
  0%,
  30% {
    stroke-dashoffset: 24;
  }
  37% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 24;
  }
}
@keyframes pre-faq-cta-tech-draw-node-b {
  0%,
  33% {
    stroke-dashoffset: 24;
  }
  40% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 24;
  }
}
@keyframes pre-faq-cta-tech-draw-node-c {
  0%,
  36% {
    stroke-dashoffset: 24;
  }
  43% {
    stroke-dashoffset: 0;
  }
  93% {
    stroke-dashoffset: 0;
  }
  96% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 24;
  }
}
.pre-faq-cta .container {
  position: relative;
  z-index: 1;
}
.pre-faq-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pre-faq-cta-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0;
}
.pre-faq-cta-subtitle {
  display: block;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 3.7rem;
  font-weight: 300;
  color: #111827;
  letter-spacing: 0;
  margin-top: -0.6rem;
  margin-bottom: 1.75rem;
}
.pre-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 1.25rem;
  border-radius: 10px;
  background-color: var(--accent, #001074);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.pre-faq-cta-btn:hover {
  background-color: var(--accent-hover, #001b57);
  color: #ffffff;
  opacity: 0.95;
  transform: translateY(-3px);
}
@media (max-width: 575px) {
  .pre-faq-cta.section-padding {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .pre-faq-cta-title {
    font-size: 1.9rem;
  }
  .pre-faq-cta-subtitle {
    font-size: 2.2rem;
  }
  .pre-faq-cta-btn {
    padding: 0 1rem;
    font-size: 0.98rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pre-faq-cta-tech-bleed,
  .pre-faq-cta-tech-stage,
  .pre-faq-cta-tech--uplink,
  .pre-faq-cta-tech--brackets,
  .pre-faq-cta-tech--frame,
  .pre-faq-cta-tech--chrome,
  .pre-faq-cta-tech--address,
  .pre-faq-cta-tech--hero,
  .pre-faq-cta-tech--split,
  .pre-faq-cta-tech--nav,
  .pre-faq-cta-tech--main,
  .pre-faq-cta-tech--cards,
  .pre-faq-cta-tech--node-a,
  .pre-faq-cta-tech--node-b,
  .pre-faq-cta-tech--node-c {
    animation: none !important;
  }
  .pre-faq-cta-tech-bleed {
    opacity: 0.12;
    transform: scale(1);
  }
  .pre-faq-cta-tech-stage {
    transform: scale(1.35);
    opacity: 0.45;
  }
  .pre-faq-cta-tech-stroke {
    stroke-dashoffset: 0 !important;
  }
}
.cta-banner-card {
  background: #0032ba;
  border-radius: 24px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.cta-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(57, 202, 242, 0.15), transparent);
  pointer-events: none;
}
.cta-banner-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #39caf2, transparent);
  border-radius: 0 0 3px 3px;
}
.cta-banner-content {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39caf2;
  margin-bottom: 0.75rem;
}
.cta-banner-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-banner-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-banner-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cta-banner-btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.cta-banner-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.cta-banner-link:hover {
  color: #39caf2;
}
@media (max-width: 767px) {
  .cta-banner-card { padding: 2.5rem 1.5rem; }
  .cta-banner-actions { justify-content: center; }
}
@media (max-width: 575px) {
  .cta-banner-title { font-size: 1.5rem; }
}

/* ===== Páginas legais / mapa do site (simples) ===== */
.legal-page {
  background: #f8fafc;
  padding-top: 0;
  margin-top: -2.5rem;
}
.legal-title-wrap {
  background: #0030b9;
  color: #fff;
  padding: 2.5rem 1.5rem 1.75rem;
  border-radius: 0 0 33px 33px;
  margin: 0 0 1.5rem 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.legal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.legal-intro {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 720px;
}
.legal-block {
  margin-bottom: 1.75rem;
}
.legal-block h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.legal-block p,
.legal-block ul li {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}
.legal-block ul {
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-size: 0.85rem;
}

.sitemap-modern {
  background: transparent;
}
.sitemap-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.sitemap-card:hover {
  box-shadow: 0 8px 24px rgba(0, 48, 185, 0.08);
  border-color: rgba(0, 48, 185, 0.15);
}
.sitemap-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0030b9;
  margin: 0 0 1rem 0;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #f1f5f9;
  letter-spacing: 0.01em;
}
.sitemap-card-list li {
  margin-bottom: 0.5rem;
}
.sitemap-card-list li:last-child {
  margin-bottom: 0;
}
.sitemap-card-link {
  display: inline-block;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.sitemap-card-link:hover {
  color: #0030b9;
  padding-left: 4px;
}

/* Mapa do site — visual neutro, sem cor primária */
.page-mapa-do-site .templates-hero {
  background: #ffffff;
}
.page-mapa-do-site .templates-hero .templates-hero-title,
.page-legal-institucional .templates-hero .templates-hero-title {
  text-align: left;
  color: #0f172a;
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 575px) {
  .page-mapa-do-site .templates-hero .templates-hero-title,
  .page-legal-institucional .templates-hero .templates-hero-title {
    font-size: 1.4rem;
  }
}

/* Hero + secção: menos espaço entre o título da página e o texto abaixo */
.page-mapa-do-site .templates-hero,
.page-legal-institucional .templates-hero {
  padding-bottom: 28px;
}
.page-mapa-do-site .wp-care-section.py-5.bg-white,
.page-legal-institucional .wp-care-section.py-5.bg-white {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.page-mapa-do-site .sitemap-card {
  border-color: #e5e7eb;
}
.page-mapa-do-site .sitemap-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border-color: #d1d5db;
}
.page-mapa-do-site .sitemap-card-title {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  padding-bottom: 0.45rem;
}
.page-mapa-do-site .sitemap-card-link {
  color: #4b5563;
}
.page-mapa-do-site .sitemap-card-link:hover {
  color: #1f2937;
}

/* Páginas legais (Termos, Privacidade, Cookies) — mesmo modelo do mapa do site */
.page-legal-institucional .templates-hero {
  background: #ffffff;
}
.page-legal-institucional .legal-intro {
  color: #64748b;
  margin-bottom: 1rem !important;
}
.page-legal-institucional .legal-block {
  margin-bottom: 1.25rem;
}
.page-legal-institucional .legal-block h2 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  margin-top: 0;
}
.page-legal-institucional .legal-block h2 + p,
.page-legal-institucional .legal-block h2 + ul {
  margin-top: 0;
}
.page-legal-institucional .legal-block p + p {
  margin-top: 0.65rem;
}
.page-legal-institucional .legal-block p,
.page-legal-institucional .legal-block ul li {
  color: #4b5563;
}
.page-legal-institucional .legal-block a {
  color: #374151;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-legal-institucional .legal-block a:hover {
  color: #111827;
}

/* Carrossel de Clientes e Parceiros */
.brand-strip {
  --brand-strip-edge: #ffffff;
  background: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 991px) {
  .brand-strip {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .brand-strip-track-wrap {
    padding-top: 0.35rem;
    padding-bottom: 0.5rem;
  }
}
/* Home: faixa só-logos (ex.: criacao-de-sites) — menos respiro após o hero */
.brand-strip.brand-strip--after-hero:not(.brand-strip--split) {
  padding-top: 0.35rem;
  padding-bottom: 1.35rem;
}
.brand-strip.brand-strip--after-hero:not(.brand-strip--split) .brand-strip-track-wrap {
  padding-top: 0.4rem;
  padding-bottom: 0.65rem;
}
@media (max-width: 991px) {
  .brand-strip.brand-strip--after-hero:not(.brand-strip--split) {
    padding-top: 0.1rem;
    padding-bottom: 0.7rem;
  }
  .brand-strip.brand-strip--after-hero:not(.brand-strip--split) .brand-strip-track-wrap {
    padding-top: 0.05rem;
    padding-bottom: 0.3rem;
  }
}
/* Bloco texto + marquees — largura útil = miolo do hero (.fds-hero-slide-wrap) */
.brand-strip.brand-strip--split {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.brand-strip.brand-strip--split.brand-strip--after-hero {
  padding-top: 2.85rem;
  padding-bottom: 2.85rem;
}
@media (min-width: 768px) {
  .brand-strip.brand-strip--split.brand-strip--after-hero {
    padding-top: 3.65rem;
    padding-bottom: 3.65rem;
  }
}
@media (min-width: 992px) {
  .brand-strip.brand-strip--split.brand-strip--after-hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (max-width: 991px) {
  .brand-strip.brand-strip--split:not(.brand-strip--after-hero) {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
}
@media (max-width: 767px) {
  .brand-strip.brand-strip--split.brand-strip--after-hero {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }
}
/* Home split: a secção não pinta 100vw — só o .container (igual ao header) */
.brand-strip.brand-strip--split.brand-strip--after-hero {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.brand-strip.brand-strip--split.brand-strip--after-hero > .container.fds-brand-strip-shell {
  --brand-strip-edge: #ffffff;
  background-color: #ffffff;
}
.brand-strip.brand-strip--split.brand-strip--contained {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.brand-strip.brand-strip--split.brand-strip--contained > .container.fds-brand-strip-shell {
  --brand-strip-edge: #ffffff;
  background-color: #ffffff;
}
/*
 * Mesmo padding horizontal do header (.container + .fds-navbar).
 * Grelha: coluna dos logos com minmax(0,1fr) para não inflar o .container além do max-width do Bootstrap
 * (faixa longa + min-width:auto dos itens de grid estourava a largura toda a viewport).
 */
.container.fds-brand-strip-shell {
  padding-left: calc((var(--bs-gutter-x, 1.5rem) * 0.5) + var(--fds-nav-padding-x, 1rem));
  padding-right: calc((var(--bs-gutter-x, 1.5rem) * 0.5) + var(--fds-nav-padding-x, 1rem));
  display: grid;
  grid-template-columns: minmax(0, max-content) 1px minmax(0, 1fr);
  gap: clamp(0.85rem, 2.8vw, 1.75rem);
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.brand-strip.fds-brand-strip--after-cases {
  padding-top: 2.1rem;
  padding-bottom: 2.4rem;
}
.container.fds-brand-strip-shell.fds-brand-strip-shell--cases {
  width: 100%;
  max-width: min(1420px, 100%);
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
}
@media (max-width: 991px) {
  .container.fds-brand-strip-shell.fds-brand-strip-shell--cases {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}
.container.fds-brand-strip-shell.fds-brand-strip-shell--logos-only {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.fds-partners-clients {
  background: #ffffff;
  padding: 4rem 0 4.6rem;
}
.fds-partners-clients__inner {
  width: 100%;
  max-width: min(1420px, 100%);
  margin: 0 auto;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
  box-sizing: border-box;
  position: relative;
}
.fds-partners-clients__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.4rem 2rem;
  align-items: center;
}
/* Wrapper de 2 logos: no desktop/tablet os filhos entram na grelha como antes */
.fds-partners-clients__pair {
  display: contents;
}
.fds-partners-clients__item {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fds-partners-clients__logo {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.fds-partners-clients__logo img {
  width: auto;
  max-width: 320px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0);
  opacity: 1;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.fds-partners-clients__item:hover .fds-partners-clients__logo img,
.fds-partners-clients__logo:focus-visible img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}
.fds-partners-clients__cta-wrap {
  margin-top: 3rem;
  text-align: center;
}
.fds-partners-clients__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 2.2rem;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--accent, #2E93EE);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.fds-partners-clients__cta:hover {
  background: var(--accent-hover, #1a7bd4);
  border-color: var(--accent-hover, #1a7bd4);
  color: #ffffff;
}

.fds-partners-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fds-header-bg, #020b2f);
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0;
}
.fds-partners-nav i {
  font-size: 1.35rem;
  line-height: 1;
}
.fds-partners-nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.fds-partners-nav--prev {
  left: 0;
}
.fds-partners-nav--next {
  right: 0;
}

.fds-whatwedo-strip {
  background-color: var(--fds-header-bg, #020b2f) !important;
  background-image: none !important;
  padding: 2.3rem 0;
  overflow: hidden;
  /* Só layout: `paint` costuma gerar uma “costura” de 1px clara entre esta secção e a seguinte no mobile */
  contain: layout;
  border: 0;
  margin: 0;
}
.fds-whatwedo-strip__row {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  background: transparent;
}
.fds-whatwedo-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  min-width: max-content;
  will-change: transform;
}
.fds-whatwedo-strip__track span {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent, #2E93EE);
}
.fds-whatwedo-strip__track span:nth-child(odd) {
  color: transparent;
  -webkit-text-stroke: 1.4px color-mix(in srgb, var(--accent, #2E93EE) 68%, #ffffff 32%);
  text-stroke: 1.4px color-mix(in srgb, var(--accent, #2E93EE) 68%, #ffffff 32%);
}
.fds-whatwedo-strip__track span:nth-child(even) {
  color: var(--accent, #2E93EE);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.fds-whatwedo-strip__row--ltr .fds-whatwedo-strip__track {
  animation: fds-whatwedo-left 36s linear infinite;
}
.fds-whatwedo-strip__row--rtl .fds-whatwedo-strip__track {
  animation: fds-whatwedo-right 36s linear infinite;
}
.fds-whatwedo-strip--paused .fds-whatwedo-strip__track {
  animation-play-state: paused;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .fds-whatwedo-strip__row--ltr .fds-whatwedo-strip__track,
  .fds-whatwedo-strip__row--rtl .fds-whatwedo-strip__track {
    animation: none !important;
  }
}
@media (max-width: 767.98px) {
  .page-home .fds-whatwedo-strip {
    padding: 1rem 0 1.05rem;
  }
  .page-home .fds-whatwedo-strip__row + .fds-whatwedo-strip__row {
    margin-top: 0.42rem;
  }
  .page-home .fds-whatwedo-strip__track {
    gap: 1.28rem;
  }
  .page-home .fds-whatwedo-strip__track span {
    font-size: clamp(1.18rem, 4.2vw, 1.52rem);
    letter-spacing: 0.04em;
  }
}
@keyframes fds-whatwedo-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fds-whatwedo-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
/* Página Criação de sites — mesmo estilo da faixa da home, texto mais longo */
.fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__track span {
  font-size: clamp(1.15rem, 1.95vw, 1.85rem);
}
.fds-whatwedo-strip--criacao-page {
  border-top: 1px solid color-mix(in srgb, var(--accent, #2E93EE) 24%, #000000 76%);
}
.fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__row + .fds-whatwedo-strip__row {
  margin-top: 0.8rem;
}
.fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__row--ltr .fds-whatwedo-strip__track {
  animation-duration: 52s;
}
.fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__row--rtl .fds-whatwedo-strip__track {
  animation-duration: 52s;
}
@media (max-width: 767px) {
  .fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__track {
    gap: 1.35rem;
  }
  .fds-whatwedo-strip--criacao-page .fds-whatwedo-strip__row + .fds-whatwedo-strip__row {
    margin-top: 0.6rem;
  }
  .fds-partners-clients {
    padding: 2.2rem 0 2.8rem;
  }
  .fds-partners-clients__inner {
    padding: 0 1rem;
  }
  /* Carrossel: 2 logos por “slide”, logos maiores */
  .fds-partners-clients__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(0px, env(safe-area-inset-left, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
  }
  .fds-partners-clients__grid::-webkit-scrollbar {
    display: none;
  }
  .fds-partners-clients__pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.85rem;
    align-items: center;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .fds-partners-clients__pair--single {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .fds-partners-clients__pair--single .fds-partners-clients__item {
    max-width: min(280px, 88vw);
  }
  .fds-partners-clients__item {
    min-height: 96px;
  }
  .fds-partners-clients__logo img {
    max-width: min(240px, 42vw);
    max-height: 76px;
  }
  .fds-partners-clients__cta-wrap {
    margin-top: 2.1rem;
  }
  .fds-partners-clients__cta {
    min-height: 58px;
    width: 100%;
    max-width: 340px;
    padding: 0 1.2rem;
  }
  .fds-partners-nav {
    display: inline-flex;
  }
  .fds-partners-nav--prev {
    left: 18px;
  }
  .fds-partners-nav--next {
    right: 18px;
  }

  .fds-whatwedo-strip {
    padding: 1.5rem 0;
  }
  .fds-whatwedo-strip__track {
    gap: 1.1rem;
  }
}

/* Home: bloco “CRIAÇÃO DE SITES” (referência) — logo após a faixa animada */
.fds-creation-services {
  background: var(--fds-header-bg, #020b2f);
  color: #ffffff;
  padding: clamp(2.4rem, 4vw, 3.6rem) 0 clamp(2rem, 3.6vw, 3rem);
  position: relative;
  overflow: hidden;
  border: 0;
  margin: 0;
}
/* Junção com .fds-whatwedo-strip: tapa falha de subpixel / composição que mostrava linha clara */
.fds-whatwedo-strip + .fds-creation-services {
  margin-top: -1px;
}
.fds-creation-services__inner {
  width: 100%;
  max-width: min(1420px, 100%);
  margin: 0 auto;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
}
.fds-creation-services__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  position: relative;
  min-height: clamp(270px, 25vw, 360px);
  padding-bottom: 0;
  overflow: hidden;
}
.fds-creation-services__title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: clamp(1.3rem, 2.25vw, 2.65rem);
  line-height: 1.05;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.fds-creation-services__title-line1 {
  display: block;
  text-align: left;
}
.fds-creation-services__title-line2 {
  display: block;
  text-align: left;
  margin-top: 0.16em;
}
.fds-creation-services__brand-mark {
  position: absolute;
  right: clamp(0.3rem, 1.1vw, 0.9rem);
  bottom: clamp(0.3rem, 1.1vw, 0.9rem);
  width: clamp(132px, 11.5vw, 188px);
  height: clamp(132px, 11.5vw, 188px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.fds-creation-services__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fds-creation-services__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(203, 213, 225, 0.24);
  padding-left: clamp(1.6rem, 2.8vw, 2.6rem);
}
.fds-creation-services__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.95rem 0;
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.fds-creation-services__link:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}
.fds-creation-services__link:hover,
.fds-creation-services__link:focus-visible {
  color: var(--accent, #2E93EE);
}
.fds-creation-services__arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.fds-creation-services__link:hover .fds-creation-services__arrow,
.fds-creation-services__link:focus-visible .fds-creation-services__arrow {
  background: var(--accent-hover, #1a7bd4);
  color: #ffffff;
}
.fds-creation-services__shapes {
  display: none !important;
  position: absolute;
  right: 0;
  bottom: 0;
  align-items: flex-end;
  gap: clamp(0.5rem, 1vw, 0.85rem);
  pointer-events: none;
  z-index: 1;
  max-width: calc(100% - 10px);
}
.fds-creation-services__shape {
  display: block;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  animation: fdsCreationShapeDraw .72s cubic-bezier(.22, .61, .36, 1) forwards;
}
.fds-creation-services__shape--ring {
  width: clamp(120px, 12.5vw, 180px);
  aspect-ratio: 1 / 1;
  border: clamp(14px, 1.35vw, 20px) solid var(--accent, #2E93EE);
  border-radius: 50%;
  box-shadow: none;
  animation: fdsCreationShapeDraw .72s cubic-bezier(.22, .61, .36, 1) forwards;
}
.fds-creation-services__shape--disc {
  width: clamp(120px, 12.5vw, 180px);
  aspect-ratio: 1 / 1;
  background: var(--accent, #2E93EE);
  border-radius: 50%;
  margin-right: calc(clamp(120px, 12.5vw, 180px) * -0.5);
  animation: fdsCreationShapeDraw .72s cubic-bezier(.22, .61, .36, 1) .2s forwards;
  border: none;
  box-shadow: none;
}
@keyframes fdsCreationShapeDraw {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  .fds-creation-services {
    padding: clamp(1.2rem, 3.2vw, 1.75rem) 0 clamp(1.15rem, 3vw, 1.65rem);
  }
  .fds-creation-services__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 max(1rem, env(safe-area-inset-left, 0px)) 0 max(1rem, env(safe-area-inset-right, 0px));
  }
  /* Cabeçalho compacto: título + selo na mesma linha — sem min-height “vazio” */
  .fds-creation-services__left {
    display: grid;
    grid-template-columns: 1fr min(40vw, 148px);
    align-items: center;
    gap: 0.45rem 0.65rem;
    min-height: 0;
    margin-bottom: 0.35rem;
    padding-bottom: 0;
    overflow: visible;
  }
  .fds-creation-services__left:not(:has(.fds-creation-services__brand-mark)) {
    grid-template-columns: 1fr;
  }
  .fds-creation-services__title {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: clamp(1.82rem, 5.85vw, 2.65rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .fds-creation-services__title-line2 {
    margin-top: 0.1em;
  }
  .fds-creation-services__brand-mark {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    width: min(40vw, 148px);
    height: min(40vw, 148px);
    justify-self: end;
    align-self: center;
  }
  .fds-creation-services__nav {
    border-left: 0;
    padding-left: 0;
    margin-top: 0.2rem;
  }
  .fds-creation-services__link {
    -webkit-tap-highlight-color: transparent;
    padding: 1.15rem 0;
    gap: 0.88rem;
    font-size: clamp(1.01rem, 2.75vw, 1.14rem);
    font-weight: 500;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    transition: color 0.2s ease;
  }
  .fds-creation-services__link:first-child {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
  }
  .fds-creation-services__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.02rem;
    box-shadow: 0 6px 20px rgba(46, 147, 238, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease;
  }
  .fds-creation-services__link:hover .fds-creation-services__arrow,
  .fds-creation-services__link:focus-visible .fds-creation-services__arrow {
    transform: translateX(3px);
    box-shadow: 0 8px 24px rgba(46, 147, 238, 0.34);
  }
}
@media (max-width: 575.98px) {
  .fds-creation-services__title {
    font-size: clamp(1.88rem, 7.1vw, 2.35rem);
  }
  .fds-creation-services__left {
    grid-template-columns: 1fr min(42vw, 140px);
    gap: 0.4rem 0.55rem;
  }
  .fds-creation-services__brand-mark {
    width: min(42vw, 140px);
    height: min(42vw, 140px);
  }
}

.fds-home-blog {
  background: #e8e8e8;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.2rem, 4.5vw, 3.4rem);
  contain: layout paint;
}
.fds-home-blog .container-xl {
  width: 100%;
  max-width: min(1420px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .fds-home-blog .container-xl {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}
.fds-home-blog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.34);
}
.fds-home-blog__headline {
  margin: 0;
  max-width: 640px;
  color: #121829;
  font-size: clamp(1.3rem, 2.25vw, 2.65rem);
  line-height: 1.22;
  font-weight: 500;
}
.fds-home-blog__cta,
.fds-home-blog__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}
.fds-home-blog__cta-icon,
.fds-home-blog__readmore-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}
.fds-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(148, 163, 184, 0.25);
  gap: 0;
}
.fds-home-blog__card {
  padding: 1.45rem 1.25rem 0.35rem;
  border-right: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  cursor: pointer;
}
.fds-home-blog__card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.fds-home-blog__thumb {
  display: block;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background-color: #cbd5e1;
}
.fds-home-blog__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .fds-home-blog__card:hover .fds-home-blog__thumb img {
    transform: scale(1.04);
  }
}
.fds-home-blog__meta {
  color: #334155;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.fds-home-blog__card-title {
  margin: 0 0 0.55rem;
  color: #111827;
  font-size: clamp(1rem, 1.28vw, 1.42rem);
  line-height: 1.2;
  font-weight: 500;
}
.fds-home-blog__excerpt {
  margin: 0 0 1rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fds-home-blog__readmore {
  margin-bottom: 0.5rem;
}
.fds-home-blog__meta,
.fds-home-blog__card-title,
.fds-home-blog__excerpt,
.fds-home-blog__readmore,
.fds-home-blog__thumb {
  position: relative;
  z-index: 2;
}
.fds-blog-post-hero {
  background: var(--fds-header-bg, #020b2f);
  padding: 3.2rem 0 2.8rem;
}
.fds-blog-post-breadcrumb {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}
.fds-blog-post-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.fds-blog-post {
  background: #efefef;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
@media (min-width: 992px) {
  .fds-blog-post-hero .container-xl,
  .fds-blog-post .container-xl {
    max-width: 1320px;
  }
}
.fds-blog-post__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 2rem;
  background: #efefef;
}
.fds-blog-post__content {
  min-width: 0;
}
.fds-blog-post__title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  color: #111827;
  font-weight: 500;
}
.fds-blog-post__cover {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 0.9rem;
}
.fds-blog-post__meta {
  color: #475569;
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.fds-blog-post__summary {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #1f2937;
}
.fds-blog-post__toc {
  margin: 1.2rem 0 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  background: #e5ebf2;
}
.fds-blog-post__toc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.fds-blog-post__toc-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111827;
}
.fds-blog-post__toc-toggle {
  flex: 0 0 auto;
  border: 1px solid #9ca3af;
  background: rgba(255, 255, 255, 0.45);
  color: #6b7280;
  width: 36px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fds-blog-post__toc-toggle:hover {
  color: #374151;
  background: rgba(255, 255, 255, 0.7);
}
.fds-blog-post__toc-list {
  margin: 0;
  padding-left: 1.3rem;
}
.fds-blog-post__toc.is-collapsed .fds-blog-post__toc-list {
  display: none;
}
.fds-blog-post__toc-item {
  margin: 0 0 0.28rem;
  color: #1f2937;
}
.fds-blog-post__toc-item.is-sub {
  margin-left: 0.8rem;
}
.fds-blog-post__toc-item a {
  color: #1f2937;
  text-decoration: none;
}
.fds-blog-post__toc-item a:hover {
  color: #0f172a;
  text-decoration: underline;
}
.fds-blog-post__html {
  color: #111827;
  line-height: 1.75;
}
.fds-blog-post__html h2,
.fds-blog-post__html h3,
.fds-blog-post__html h4 {
  scroll-margin-top: calc(var(--fds-top-fixed, 88px) + 1rem);
}
.fds-blog-post__html h2,
.fds-blog-post__html h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.7rem;
}
.fds-blog-post__gallery {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.fds-blog-post__gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.fds-blog-post__sidebar {
  border-left: 1px solid rgba(148, 163, 184, 0.35);
  padding-left: 1.8rem;
  position: sticky;
  top: calc(var(--fds-top-fixed, 88px) + 1rem);
  align-self: start;
}
.fds-blog-post__form-card h2 {
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #111827;
}
.fds-blog-post__form-card form {
  display: grid;
  gap: 0.45rem;
}
.fds-blog-post__form-card input,
.fds-blog-post__form-card textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  padding: 0.75rem 0.8rem;
  color: #111827;
}
.fds-blog-post__whatsapp-row {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 0.45rem;
  align-items: stretch;
}
.fds-blog-post__country-wrap {
  position: relative;
}
.fds-blog-post__country-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.fds-blog-post__whatsapp-country {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: left;
  cursor: pointer;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #111827;
  padding: 0.75rem 1.4rem 0.75rem 0.65rem;
  width: 100%;
  height: 48px;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 13px) calc(50% - 3px), calc(100% - 8px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.fds-blog-post__country-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 25;
  background: #fff;
  border: 1px solid #cbd5e1;
  max-height: 240px;
  overflow: auto;
}
.fds-blog-post__country-item {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #0f172a;
  text-align: left;
}
.fds-blog-post__country-item + .fds-blog-post__country-item {
  border-top: 1px solid #eef2f7;
}
.fds-blog-post__country-item:hover {
  background: #fff;
}
.fds-blog-post__country-item img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.fds-blog-post__whatsapp-row input {
  height: 48px;
}
@media (max-width: 520px) {
  .fds-blog-post__whatsapp-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}
.fds-blog-post__form-card button[type="submit"] {
  border: 0;
  padding: 0.85rem 1rem;
  background: #c7c7d1;
  color: #4b5563;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.fds-blog-post__form-card button[type="submit"].is-enabled {
  background: var(--accent, #2E93EE);
  color: #ffffff;
  opacity: 1;
}
.fds-blog-post__form-card button[type="submit"]:disabled {
  opacity: 0.9;
  cursor: not-allowed;
}
.fds-blog-post__confirm {
  margin-top: 0.35rem;
}
.fds-blog-post__confirm a {
  color: #08a8f4;
}
.fds-form-error {
  display: none;
  margin-top: -0.15rem;
  color: #dc2626;
  font-size: 0.86rem;
}
.fds-form-error:not(:empty) {
  display: block;
}
.fds-blog-comments {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid #c5c9cf;
}
.fds-blog-comments h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  color: #111827;
}
.fds-blog-comments__form {
  display: grid;
  gap: 0.9rem;
}
.fds-blog-comments__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.fds-blog-comments__form input,
.fds-blog-comments__form textarea {
  width: 100%;
  border: 1px solid #9ca3af;
  background: #fff;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  color: #111827;
}
.fds-blog-comments__confirm {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
  font-size: 0.95rem;
}
.fds-blog-comments__confirm input {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 2px solid #08a8f4;
  border-radius: 8px;
  background: #ffffff;
  display: inline-grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-blog-comments__confirm input::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 14px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translate(-50%, -58%) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-blog-comments__confirm input:hover {
  border-color: #08a8f4;
  box-shadow: 0 0 0 4px rgba(8, 168, 244, 0.2);
}
.fds-blog-comments__confirm input:checked {
  border-color: #08a8f4;
  background: #08a8f4;
  box-shadow: 0 0 0 5px rgba(8, 168, 244, 0.25), 0 6px 14px rgba(8, 168, 244, 0.28);
  animation: fdsCommentCheckPop 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fds-blog-comments__confirm input:checked::before {
  transform: translate(-50%, -58%) rotate(45deg) scale(1);
}
.fds-blog-comments__confirm input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(8, 168, 244, 0.34);
}
@keyframes fdsCommentCheckPop {
  0% { transform: scale(0.88); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.fds-blog-comments__form button {
  justify-self: start;
  min-width: 240px;
  border: 0;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.95rem 1.4rem;
}
.fds-blog-comments__list {
  margin-top: 1.7rem;
}
.fds-blog-comments__list h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}
.fds-blog-comments__item {
  border: 1px solid #c5c9cf;
  background: #f8fafc;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}
.fds-blog-comments__item header {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.fds-blog-comments__item time {
  color: #64748b;
  font-size: 0.85rem;
}
.fds-blog-comments__item p {
  margin: 0;
  color: #1f2937;
}
@media (max-width: 991px) {
  .fds-blog-post__layout {
    grid-template-columns: 1fr;
  }
  .fds-blog-post__sidebar {
    border-left: 0;
    padding-left: 0;
    position: static;
  }
  .fds-blog-post__gallery {
    grid-template-columns: 1fr;
  }
  .fds-blog-comments__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .fds-home-blog__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .fds-home-blog__grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .fds-home-blog__card {
    padding: 1.35rem 0 0.6rem;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }
}

@media (max-width: 767px) {
  .container.fds-brand-strip-shell {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
.fds-brand-strip-copy {
  min-width: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.fds-brand-strip-title {
  margin: 0 0 0.55rem;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #0f172a;
}
.fds-brand-strip-desc {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 400;
  color: #64748b;
  max-width: 24rem;
}
@media (max-width: 767px) {
  .fds-brand-strip-desc {
    max-width: none;
  }
}
.fds-brand-strip-divider {
  width: 1px;
  align-self: stretch;
  min-height: 6.75rem;
  background: linear-gradient(
    180deg,
    rgba(226, 232, 240, 0) 0%,
    rgba(203, 213, 225, 0.95) 18%,
    rgba(203, 213, 225, 0.95) 82%,
    rgba(226, 232, 240, 0) 100%
  );
}
@media (max-width: 767px) {
  .fds-brand-strip-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: rgba(226, 232, 240, 1);
  }
}
.fds-brand-strip-marquees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.fds-brand-strip-shell--logos-only .fds-brand-strip-marquees {
  gap: 0;
}
.brand-strip--split .brand-strip-row {
  min-width: 0;
}
.brand-strip--split .brand-strip-track-wrap {
  padding: 0.45rem 0;
}
.brand-strip--split .brand-strip-track {
  gap: clamp(0.45rem, 1.1vw, 0.75rem);
}
.brand-strip--split .brand-strip-link img {
  max-height: 56px;
  max-width: 200px;
}
.brand-strip-header {
  margin-bottom: 2.5rem;
}
.brand-strip-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: #6b7280;
}
.brand-strip-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.brand-strip-track-wrap {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.75rem 0 1.25rem;
  background-color: var(--brand-strip-edge, #ffffff);
}
/* Esmaecer nas bordas: logos somem/surgem suavemente à esquerda e à direita */
.brand-strip-track-wrap::before,
.brand-strip-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 11vw, 7.5rem);
  z-index: 2;
  pointer-events: none;
}
.brand-strip-track-wrap::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--brand-strip-edge, #ffffff) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0) 100%
  );
}
.brand-strip-track-wrap::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--brand-strip-edge, #ffffff) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0) 100%
  );
}
.brand-strip--split .brand-strip-track-wrap::before,
.brand-strip--split .brand-strip-track-wrap::after {
  width: clamp(1.35rem, 4.5vw, 3.25rem);
}
.brand-strip-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  animation: none;
  will-change: transform;
}
.brand-strip-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-strip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-strip-link img {
  max-height: 32px;
  max-width: 112px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s ease-out, opacity 0.2s ease-out, transform 0.2s ease-out;
}
.brand-strip-link:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

/* Central do cliente — bloco abaixo de parceiros (home) */
.fds-central-cliente {
  background: transparent;
  border-top: none;
}
.fds-central-cliente.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.fds-central-cliente .container {
  position: relative;
  max-width: 1320px;
}
/* Sem “card”: fundo transparente, sem borda nem moldura na imagem */
.fds-central-cliente-visual {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  width: 100%;
}
.fds-central-cliente-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
}
/* Patamar tipográfico de título de secção (peso extra) */
.fds-central-cliente-title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.9vw, 2.7rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.fds-central-cliente-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: none;
}
.fds-central-cliente-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent, #2e93ee);
  background: none;
  border: none;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fds-central-cliente-cta:hover,
.fds-central-cliente-cta:focus-visible {
  color: #000000;
}
.fds-central-cliente-cta-ico {
  font-size: 1.05em;
  line-height: 1;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .fds-central-cliente.section-padding {
    padding-top: 2rem;
    padding-bottom: 3.25rem;
  }
  .fds-central-cliente-title {
    font-size: clamp(1.9rem, 8.2vw, 2.2rem);
    line-height: 1.06;
  }
}
@media (max-width: 991px) {
  .fds-central-cliente {
    text-align: left;
  }
  .fds-central-cliente-text {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Sitefy — vitrine site por aluguel (home) */
.sitefy-home-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
  border-top: 0;
}
.page-home .sitefy-home-section > .container {
  width: 100%;
  max-width: min(1420px, 100%);
  min-width: 0;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .page-home .sitefy-home-section > .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}
.sitefy-home-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.sitefy-home-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.sitefy-home-cat-title {
  color: #334155;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light, rgba(46, 147, 238, 0.2));
  display: inline-block;
}
.sitefy-home-card-inner {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.2s ease, transform 0.2s ease;
}
.sitefy-home-card-btn:hover .sitefy-home-card-inner,
.sitefy-home-card-btn:focus-visible .sitefy-home-card-inner,
.sitefy-home-card-open:hover .sitefy-home-card-inner,
.sitefy-home-card-open:focus-visible .sitefy-home-card-inner {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(46, 147, 238, 0.35);
  transform: translateY(-3px);
}
.sitefy-home-card-btn:focus-visible,
.sitefy-home-card-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.sitefy-home-card-footer {
  padding: 0.5rem 1rem 1rem;
  margin-top: auto;
}
.sitefy-home-card-suffix {
  font-weight: 600;
  color: #64748b;
  font-size: 0.8rem;
}
.sitefy-home-card-cta {
  font-weight: 600;
  border-radius: 12px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: none;
  /* cor principal do painel (config cor_principal → --accent no header) */
  background-color: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}
.sitefy-home-card-cta:hover,
.sitefy-home-card-cta:focus {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  filter: none;
}
.sitefy-home-card-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.sitefy-modelos-page .sitefy-home-head {
  text-align: left;
}
.sitefy-modelos-search .form-control {
  border-radius: 10px;
}
.sitefy-section-disclaimer {
  font-size: 0.68rem;
  line-height: 1.45;
  color: #94a3b8;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  margin-top: 0.25rem;
}
.sitefy-home-card-media {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}
.sitefy-home-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sitefy-home-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 2rem;
}
.sitefy-home-card-body {
  padding: 0.85rem 1rem 0.95rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sitefy-home-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sitefy-home-card-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  padding-top: 0.05rem;
}
.sitefy-home-card-rec {
  font-weight: 500;
  font-size: 0.8rem;
  color: #64748b;
}
.sitefy-modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.sitefy-modal-kicker:empty {
  display: none;
}
.sitefy-modal-facts {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
}
.sitefy-modal-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.sitefy-modal-fact-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.85rem;
  opacity: 0.55;
  color: #94a3b8;
}
.sitefy-modal-fact-label {
  font-weight: 500;
  color: #7c8a9a;
}
.sitefy-modal-cta {
  border-radius: 12px !important;
  background: var(--accent) !important;
  border: none !important;
  color: #fff !important;
}
.sitefy-modal-cta:hover,
.sitefy-modal-cta:focus-visible {
  background: var(--accent-hover) !important;
  color: #fff !important;
}
.sitefy-modal-media-side {
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.sitefy-modal-img-side {
  display: block;
  max-height: min(320px, 55vh);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 767.98px) {
  .sitefy-modal-img-side {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }
}
.sitefy-modal-demo {
  border-radius: 12px !important;
  border: 2px solid var(--accent) !important;
  background: transparent !important;
  color: var(--accent) !important;
}
.sitefy-modal-demo:hover,
.sitefy-modal-demo:focus-visible {
  background: #e9ecef !important;
  color: #495057 !important;
  border-color: #adb5bd !important;
}

.fds-service-card {
  flex: 0 0 var(--service-card-width, 300px);
  width: var(--service-card-width, 300px);
  min-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}
.fds-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(46,147,238,0.12);
  border-color: rgba(46,147,238,0.4);
}
.fds-service-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(46,147,238,0.12);
}
.fds-service-featured:hover {
  box-shadow: 0 10px 28px rgba(46,147,238,0.18);
}
.fds-service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}
.fds-service-badge-ai {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.fds-service-badge-new {
  background: var(--accent-secondary);
  color: #fff;
  border: none;
}
.fds-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46,147,238,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.fds-service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #202145;
  margin-bottom: 0.5rem;
}
.fds-service-subtitle {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin: -0.25rem 0 0.25rem 0;
}
.fds-service-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.fds-service-price {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 0.75rem;
}
.fds-service-price strong,
.fds-service-price .text-primary {
  color: #2e93ee !important;
}
.fds-service-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}
.fds-service-link:hover {
  color: var(--accent-hover);
  gap: 0.5rem;
}

/* ===== Seção Planos ===== */
.section-title-host {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.host-plan-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 12px;
}
.host-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}
.host-plan-featured {
  transform: scale(1.02);
}
.host-plan-featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.host-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.host-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.host-plan-price .currency {
  font-size: 1rem;
  font-weight: 600;
}
.host-plan-price .period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.host-plan-features li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.host-plan-features li i {
  margin-right: 0.5rem;
}

/* ===== Benefícios ===== */
.host-benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.host-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.host-benefit-desc {
  font-size: 0.9rem;
}

/* ===== Avaliações Google Meu Negócio ===== */
.google-reviews-section {
  background: #fff;
}
.google-reviews-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.google-reviews-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2044;
  max-width: 640px;
}
.google-reviews-track-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}
.google-reviews-track-wrap::-webkit-scrollbar {
  display: none;
}
.google-reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  box-sizing: border-box;
}
.google-review-card {
  flex: 0 0 380px;
  min-width: 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  box-sizing: border-box;
}
.google-review-card .review-quote {
  color: var(--accent);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.google-review-card .review-text {
  font-size: 0.95rem;
  color: #1f2044;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.google-review-card .review-stars {
  color: #f0b429;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.google-review-card .review-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.google-review-card .review-link:hover {
  color: var(--accent-hover);
}
.google-review-card.google-review-empty {
  min-width: 320px;
  max-width: 480px;
}

/* ===== CTA Section ===== */
.fds-cta {
  background: var(--btn-bg, var(--accent-secondary));
}

/* ===== Footer ===== */
.fds-footer {
  background: #eaf4fd;
  color: #1f2044;
  border-radius: 44px 44px 0 0;
  padding-top: 30px;
}
.fds-footer-logo-img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
}
.fds-footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2044;
}
.fds-footer-social {
  display: flex;
  gap: 0.75rem;
}
.fds-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,16,116,0.08);
  color: #001074;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.fds-footer-social a:hover {
  background: rgba(0,16,116,0.15);
  color: #001074;
}
.fds-footer-pag-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}
.fds-footer-pag-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fds-footer-logo-pag {
  height: 28px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
}
.fds-footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 0;
  color: #1f2044;
}
.fds-footer-row {
  display: flex;
  flex-wrap: wrap;
}
.fds-footer-col {
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 992px) {
  .fds-footer-col {
    flex: 1 1 0;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .fds-footer-col {
    flex: 0 0 100%;
  }
}
.fds-footer .fds-footer-menu,
.fds-footer .fds-footer-contato {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.fds-footer h4.fds-footer-title {
  line-height: 1.3;
}
.fds-footer-logo-col {
  padding-top: 0;
  min-width: 0;
  overflow: hidden;
  flex: 0 1 auto;
}
@media (min-width: 992px) {
  .fds-footer-logo-col {
    flex: 0 0 auto;
    max-width: 280px;
  }
}
.fds-footer-menu li {
  margin-bottom: 0.4rem;
}
.fds-footer-menu a {
  color: #4b5563;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.fds-footer-menu a:hover {
  color: var(--accent);
}
.fds-footer-contato a,
.fds-footer-contato .fds-footer-contato-placeholder {
  color: #4b5563;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.fds-footer-contato a:hover {
  color: var(--accent);
}
.fds-footer-contato li {
  margin-bottom: 0.4rem;
}
.fds-footer-copy {
  color: #64748b;
}
.fds-footer-dev {
  font-size: 0.85rem;
  opacity: 0.9;
}
.fds-footer-dev a {
  color: var(--accent);
  text-decoration: none;
}
.fds-footer-dev a:hover {
  text-decoration: underline;
}
.fds-footer-legal a {
  color: #4b5563;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.fds-footer-legal a:hover {
  color: var(--accent);
}
.fds-footer {
  position: relative;
}
.fds-footer-container {
  padding-top: 2.5rem !important;
}
.fds-scroll-top-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.fds-scroll-top {
  width: 48px;
  height: 48px;
  background: #3490ff;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.fds-scroll-top:hover {
  background: #2270e6;
  color: #fff;
  transform: translateY(-2px);
}
.fds-footer-after {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.fds-footer-links-row a {
  color: #4b5563;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.fds-footer-links-row a:hover {
  color: var(--accent);
}
.fds-footer-sep {
  color: #9ca3af;
  margin: 0 0.5rem;
  font-size: 0.85rem;
}
.fds-footer-endereco {
  color: #6b7280;
  font-size: 0.85rem;
}

/* ===== Footer v2 (estilo clean) ===== */
.fds-footer {
  background: #f5f3f2;
  color: #1f2937;
  border-radius: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  clip-path: none;
}
/* Faixa cor principal à esquerda do rodapé (espelho do header) */
.fds-footer-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  /* Mesmo intervalo que .fds-header-shell → faixa e conteúdo */
  gap: var(--fds-header-shell-gap, 0.65rem);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: max(12px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.fds-footer-main {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  /* Espaço após a faixa = padding da .fds-navbar (logo / conteúdo) */
  padding-left: var(--fds-nav-padding-x);
  box-sizing: border-box;
}
.fds-footer .fds-footer-accent--left {
  flex: 0 0 46px;
  width: 46px;
  align-self: stretch;
  min-height: 5rem;
  background: var(--accent, #2e93ee);
  border-radius: 0 14px 14px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}
@media (max-width: 575px) {
  .fds-footer .fds-footer-accent--left {
    flex-basis: 38px;
    width: 38px;
  }
}
.fds-footer::before {
  content: none;
}
.fds-scroll-top-wrap {
  display: none;
}
.fds-footer-container {
  padding-top: 1.8rem !important;
  padding-bottom: 1.4rem !important;
}
/* Largura útil alinhada ao portfólio / FAQ; recuo esquerdo na .fds-footer-main (= header). */
.fds-footer .container.fds-footer-container {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem);
  padding-right: calc(max(50px, env(safe-area-inset-right, 0px)) + 1rem);
}
@media (max-width: 991px) {
  .fds-footer .container.fds-footer-container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}
.fds-footer-logo-img {
  max-height: 28px;
}
.fds-footer-social {
  gap: 0.5rem;
}
.fds-footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #111827;
  font-size: 0.95rem;
}
.fds-footer-social a:hover {
  background: #e5e7eb;
  color: #111827;
}
.fds-footer-row {
  border-top: 0;
  margin-top: 1rem;
  padding-top: 1.25rem;
}
.fds-footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.7rem;
}
.fds-footer-menu li,
.fds-footer-contato li {
  margin-bottom: 0.35rem;
}
.fds-footer-menu a,
.fds-footer-contato a,
.fds-footer-contato .fds-footer-contato-placeholder {
  color: #4b5563;
  font-size: 0.9rem;
}
.fds-footer-menu a:hover,
.fds-footer-contato a:hover {
  color: #111827;
}
.fds-footer-after {
  border-top: 0;
  margin-top: 1.25rem !important;
  padding-top: 1.1rem !important;
}
.fds-footer-links-row {
  text-align: center !important;
  margin-bottom: 1rem !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.fds-footer-links-row a {
  color: #4b5563;
  font-size: 0.9rem;
}
.fds-footer-links-row a:hover {
  color: #111827;
}
.fds-footer-sep {
  color: #9ca3af;
}
.fds-footer-pag-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
}
.fds-footer-logo-pag {
  height: 30px;
  max-width: 56px;
}

.fds-footer-copy-row {
  text-align: left !important;
}
.fds-footer-copy {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.45;
}
.fds-footer-unicsites {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fds-footer-unicsites-label {
  font-size: 0.74rem;
  color: #6b7280;
  line-height: 1.2;
}
.fds-footer-unicsites-logo {
  max-height: 19px;
  width: auto;
  max-width: 98px;
  object-fit: contain;
}
.fds-footer-dev {
  font-size: 0.8rem;
}
.fds-footer-dev a {
  color: #374151;
}

/* ===== Footer dark (novo visual) ===== */
.fds-footer {
  background:
    radial-gradient(58% 46% at 50% 38%, rgba(46, 147, 238, 0.14), transparent 68%),
    radial-gradient(35% 32% at 92% 92%, rgba(46, 147, 238, 0.12), transparent 74%),
    linear-gradient(180deg, #020b2f 0%, #06164a 100%);
  color: #dbe5f5;
}
.fds-footer-shell {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.fds-footer-main {
  padding-left: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.fds-footer-container {
  max-width: none;
  padding: 3rem calc(max(50px, env(safe-area-inset-left, 0px)) + 1rem) 2rem !important;
}
@media (min-width: 992px) {
  .fds-footer-shell {
    max-width: 1420px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .fds-footer-container {
    padding: 3rem max(1rem, env(safe-area-inset-left, 0px)) 2rem !important;
  }
}
.fds-footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(120, 150, 190, 0.2);
}
.fds-footer-title {
  color: #ffffff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.fds-footer-menu li {
  margin-bottom: 0.46rem;
}
.fds-footer-menu a {
  color: #f3f8ff;
  font-size: 1.02rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.fds-footer-menu a::before {
  content: "›";
  color: #f8b318;
  font-weight: 700;
}
.fds-footer-menu a:hover {
  color: #ffffff;
}
.fds-footer-mid-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0 1.25rem;
}
.fds-footer-logo-img {
  max-height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.fds-footer-city {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #2db0ff;
  margin-bottom: 0.35rem;
}
.fds-footer-address p {
  margin: 0;
  color: #d8e2f4;
  font-size: 0.95rem;
  line-height: 1.55;
}
.fds-footer-address a {
  color: #f3f8ff;
  text-decoration: none;
}
.fds-footer-address a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.fds-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(120, 150, 190, 0.2);
}
.fds-footer-copy {
  color: #95a9c9;
  font-size: 0.86rem;
}
.fds-footer-social {
  display: inline-flex;
  gap: 0.55rem;
}
.fds-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #0a66c2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
}
.fds-footer-social a[aria-label="Facebook"] {
  background: #1877f2;
}
.fds-footer-social a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.fds-footer-social a[aria-label="YouTube"] {
  background: #ff0000;
}
.fds-footer-social a[aria-label="WhatsApp"] {
  background: #25d366;
}
.fds-footer-social a:hover {
  filter: brightness(1.08);
  color: #fff;
}
@media (max-width: 991px) {
  .fds-footer-top-grid {
    grid-template-columns: 1fr;
  }
  .fds-footer-mid-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .fds-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Página Blog (listagem) ===== */
.fds-blog-list-hero {
  background: var(--fds-header-bg, #020b2f);
  color: #fff;
  padding: 3rem 0 2.2rem;
}
.fds-blog-list-hero .container-xl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fds-blog-list-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}
.fds-blog-list-breadcrumb {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.9rem;
}
.fds-blog-list-breadcrumb a {
  color: #e6edf8;
  text-decoration: none;
}
.fds-blog-list-breadcrumb span {
  color: #c3d0e7;
}

/* Criação de Sites — grelha 2×2 (ícones SVG + texto; sem imagens pesadas) */
.fds-criacao-sites-services {
  background:
    radial-gradient(1200px 320px at 50% -180px, rgba(46, 147, 238, 0.16), transparent 70%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 58%);
  color: #0f172a;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (max-width: 575px) {
  .fds-criacao-sites-services {
    padding-left: 0;
    padding-right: 0;
  }
}
.fds-criacao-sites-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2rem);
}
.fds-criacao-sites-services__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fds-criacao-sites-services__icon {
  flex: 0 0 auto;
  width: clamp(62px, 7vw, 78px);
  padding: 0;
  border-radius: 0;
  color: var(--accent, #2e93ee);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fds-criacao-sites-services__icon svg {
  width: 100%;
  height: auto;
  display: block;
}
.fds-criacao-sites-services__icon i {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  line-height: 1;
}
.fds-criacao-sites-services__body {
  min-width: 0;
}
.fds-criacao-sites-services__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.12rem, 1.4vw, 1.34rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #0f172a;
  line-height: 1.2;
}
.fds-criacao-sites-services__lead {
  margin: 0 0 0.65rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 500;
  color: #1f2937;
  line-height: 1.35;
}
.fds-criacao-sites-services__text {
  margin: 0;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  color: #475569;
}
.wp-care-plans {
  background: var(--fds-header-bg, #020b2f);
  padding: 0;
}
.wp-care-plans .fds-criacao-sites-services__grid {
  gap: 2px;
}
.wp-care-plans .fds-criacao-sites-services__card {
  background: #0d2b52;
  border: 0;
  border-radius: 0;
  padding: clamp(2.6rem, 3.4vw, 3.2rem) clamp(1.4rem, 2.2vw, 2rem) clamp(2rem, 2.8vw, 2.6rem);
  min-height: clamp(390px, 36vw, 470px);
}
.wp-care-plans .fds-criacao-sites-services__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}
.wp-care-plans .fds-criacao-sites-services__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.7vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: min(100%, 430px);
}
.wp-care-plans .fds-criacao-sites-services__text {
  margin: 0;
  color: rgba(241, 245, 255, 0.95);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.58;
  width: min(100%, 430px);
}
.wp-care-plans .fds-criacao-diferenciais__btn {
  align-self: center;
  margin-top: auto;
  min-width: min(100%, 430px);
  width: min(100%, 430px);
  height: 58px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.fds-criacao-sites-services__footnote {
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
}
.fds-criacao-sites-services__footnote a {
  color: var(--accent, #2e93ee);
  font-weight: 600;
}
.fds-blog-post__content--criacao-sidebar-only {
  padding: 0.25rem 0 1.5rem;
}

/* Criação de sites — bloco intro (texto centrado, largura alinhada ao header) */
.fds-criacao-pro-intro {
  background: #ffffff;
  color: #111827;
  padding: clamp(2.75rem, 5vw, 4.25rem) 50px;
}
@media (max-width: 575px) {
  .fds-criacao-pro-intro {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.fds-criacao-pro-intro__copy {
  margin-inline: auto;
  max-width: min(52rem, 100%);
  text-align: center;
}
.fds-criacao-pro-intro__copy h2 {
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.fds-criacao-pro-intro__copy p {
  margin: 0 0 1.05rem;
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.68;
  color: #374151;
  text-wrap: pretty;
}
.fds-criacao-pro-intro__copy p:last-child {
  margin-bottom: 0;
}
.fds-criacao-pro-intro__copy strong {
  color: #111827;
  font-weight: 700;
}

/* Criação de sites — seção diferenciais (fundo escuro com grade) */
.fds-criacao-diferenciais {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: clamp(3rem, 5vw, 4.4rem) 50px clamp(2.5rem, 5vw, 3.6rem);
  background: var(--fds-header-bg, #020b2f);
}
.fds-criacao-diferenciais::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80, 113, 182, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 113, 182, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
}
.fds-criacao-diferenciais .container-xl {
  position: relative;
  z-index: 1;
}
.fds-criacao-diferenciais__intro {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}
.fds-criacao-diferenciais__intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.32;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}
.fds-criacao-diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fds-criacao-diferenciais__item {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  min-height: 182px;
}
.fds-criacao-diferenciais__item h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.25;
  font-weight: 600;
  color: #ffffff;
}
.fds-criacao-diferenciais__item p {
  margin: 0;
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.55;
  color: rgba(226, 235, 252, 0.9);
}
.fds-criacao-diferenciais__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.35rem, 2.4vw, 1.9rem);
}
.fds-criacao-diferenciais__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 52px;
  padding: 0 1.25rem;
  border: 0;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0;
  transition: background-color .2s ease, transform .2s ease;
}
.fds-criacao-diferenciais__btn:hover {
  background: var(--accent-hover, #1a7bd4);
  transform: translateY(-1px);
  color: #ffffff;
}
.page-wp-care .fds-criacao-diferenciais {
  background: #efefef;
  color: #111827;
  padding: clamp(2.5rem, 4.2vw, 3.3rem) 0 0;
}
.page-wp-care .fds-criacao-diferenciais::before {
  display: none;
}
.page-wp-care .fds-criacao-diferenciais__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2.2rem);
  align-items: start;
  text-align: left;
  margin-bottom: clamp(1.2rem, 2.2vw, 1.8rem);
}
.page-wp-care .fds-criacao-diferenciais__intro h2 {
  color: #111827;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.14;
  max-width: 18ch;
}
.page-wp-care .fds-criacao-diferenciais__intro p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.45;
  max-width: 42ch;
}
.page-wp-care .wp-care-why-carousel {
  position: relative;
}
.page-wp-care .wp-care-why-carousel__viewport {
  overflow: hidden;
}
.page-wp-care .wp-care-why-carousel__track {
  --wp-care-why-gap: 0px;
  display: flex;
  gap: var(--wp-care-why-gap);
  transition: transform .45s ease;
  will-change: transform;
}
.page-wp-care .wp-care-why-card {
  flex: 0 0 calc((100% - (var(--wp-care-why-gap) * 2)) / 3);
  min-width: 0;
  background: #efefef;
  border: 1px solid #d0d0d0;
  padding: clamp(1.5rem, 2vw, 1.9rem) clamp(1.2rem, 1.7vw, 1.5rem);
  min-height: 390px;
}
.page-wp-care .wp-care-why-card__icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #2e93ee);
  margin-bottom: 1rem;
}
.page-wp-care .wp-care-why-card__icon i {
  font-size: 3rem;
  line-height: 1;
}
.page-wp-care .wp-care-why-card h3 {
  margin: 0 0 0.8rem;
  color: #1f2937;
  font-size: clamp(1.25rem, 1.7vw, 1.9rem);
  font-weight: 500;
}
.page-wp-care .wp-care-why-card p {
  margin: 0;
  color: #374151;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  line-height: 1.55;
}
.page-wp-care .wp-care-why-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color .2s ease, opacity .2s ease;
}
.page-wp-care .wp-care-why-carousel__arrow:hover {
  background: var(--accent-hover, #1a7bd4);
}
.page-wp-care .wp-care-why-carousel__arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.page-wp-care .wp-care-why-carousel__arrow i {
  font-size: 1.45rem;
}
.page-wp-care .wp-care-why-carousel__arrow--prev {
  left: -27px;
}
.page-wp-care .wp-care-why-carousel__arrow--next {
  right: -27px;
}
.page-wp-care .fds-criacao-diferenciais__cta {
  margin-top: clamp(1.4rem, 2.2vw, 2rem);
  padding-bottom: clamp(2.2rem, 3.2vw, 2.8rem);
}
.page-wp-care .fds-criacao-lead-section {
  position: relative;
  overflow: hidden;
  background: var(--fds-header-bg, #020b2f);
  padding: clamp(3.4rem, 5.6vw, 5rem) 1rem clamp(3.8rem, 6vw, 5.4rem);
}
.page-wp-care .fds-criacao-lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(84, 119, 196, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 119, 196, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
}
.page-wp-care .fds-criacao-lead-section .container-xl {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.page-wp-care .fds-criacao-lead-section__grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.page-wp-care .fds-criacao-lead-section__copy {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.page-wp-care .fds-criacao-lead-section__copy h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 500;
}
.page-wp-care .fds-criacao-lead-section__copy > p,
.page-wp-care .fds-criacao-lead-section__copy ul {
  display: none;
}
.page-wp-care .fds-criacao-lead-section__form-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
  background: transparent;
  padding: 0;
}
.page-wp-care #wpCareBudgetForm {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.9rem;
}
.page-wp-care #wpCareBudgetForm > input[type="hidden"] {
  display: none;
}
.page-wp-care #wpCareBudgetForm input[name="budget_nome"] { grid-column: 1; }
.page-wp-care #wpCareBudgetForm input[name="budget_email"] { grid-column: 2; }
.page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_nome"] { grid-column: 1; }
.page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_email"] { grid-column: 2; }
.page-wp-care #wpCareBudgetForm .fds-blog-post__whatsapp-row { grid-column: 1; }
.page-wp-care #wpCareBudgetForm input[name="budget_assunto"] { grid-column: 2; }
.page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_whatsapp"] { grid-column: 1; }
.page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_assunto"] { grid-column: 2; }
.page-wp-care #wpCareBudgetForm textarea,
.page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_mensagem"],
.page-wp-care #wpCareBudgetForm .fds-blog-post__confirm {
  grid-column: 1 / -1;
}
.page-wp-care #wpCareBudgetForm button[type="submit"] {
  grid-column: 1 / span 1;
  max-width: 220px;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input:not([type="checkbox"]),
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea,
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__whatsapp-country {
  background: #103454;
  border: 1px solid rgba(119, 171, 214, 0.2);
  color: #e8f1ff;
  min-height: 52px;
  border-radius: 100px;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea {
  min-height: 108px;
  border-radius: 20px;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input::placeholder,
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea::placeholder {
  color: rgba(232, 241, 255, 0.8);
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm span {
  color: rgba(232, 241, 255, 0.9);
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm a {
  color: var(--accent, #2e93ee);
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"] {
  height: 52px;
  background: #6f7484;
  color: #0f172a;
  font-weight: 600;
  border-radius: 100px;
}
.page-wp-care .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"].is-enabled {
  background: var(--accent, #2E93EE);
}
.wp-care-form-theme {
  position: relative;
  overflow: hidden;
  background: var(--fds-header-bg, #020b2f);
  padding: clamp(3.4rem, 5.6vw, 5rem) 1rem clamp(3.8rem, 6vw, 5.4rem) !important;
}
.wp-care-form-theme::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(84, 119, 196, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 119, 196, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
}
.wp-care-form-theme .container-xl {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.wp-care-form-theme .fds-criacao-lead-section__grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.wp-care-form-theme .fds-criacao-lead-section__copy {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.wp-care-form-theme .fds-criacao-lead-section__copy h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 500;
}
.wp-care-form-theme .fds-criacao-lead-section__copy > p,
.wp-care-form-theme .fds-criacao-lead-section__copy ul {
  display: none !important;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
  background: transparent;
  padding: 0;
}
.wp-care-form-theme #lpBudgetForm {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.72rem 0.9rem !important;
}
.wp-care-form-theme #lpBudgetForm > input[type="hidden"] { display: none; }
.wp-care-form-theme #criacaoBudgetForm {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.72rem 0.9rem !important;
}
.wp-care-form-theme #criacaoBudgetForm > input[type="hidden"] { display: none; }
.wp-care-form-theme #swBudgetForm {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.72rem 0.9rem !important;
}
.wp-care-form-theme #swBudgetForm > input[type="hidden"] { display: none; }
.wp-care-form-theme #lpBudgetForm input[name="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #lpBudgetForm input[name="budget_email"] { grid-column: 2; }
.wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_email"] { grid-column: 2; }
.wp-care-form-theme #lpBudgetForm .fds-blog-post__whatsapp-row { grid-column: 1; }
.wp-care-form-theme #lpBudgetForm input[name="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_whatsapp"] { grid-column: 1; }
.wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #lpBudgetForm textarea,
.wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_mensagem"],
.wp-care-form-theme #lpBudgetForm .fds-blog-post__confirm { grid-column: 1 / -1; }
.wp-care-form-theme #lpBudgetForm button[type="submit"] {
  grid-column: 1 / span 1;
  justify-self: start;
  width: auto;
  max-width: 280px;
}
.wp-care-form-theme #criacaoBudgetForm input[name="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #criacaoBudgetForm input[name="budget_email"] { grid-column: 2; }
.wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_email"] { grid-column: 2; }
.wp-care-form-theme #criacaoBudgetForm .fds-blog-post__whatsapp-row { grid-column: 1; }
.wp-care-form-theme #criacaoBudgetForm input[name="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_whatsapp"] { grid-column: 1; }
.wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #criacaoBudgetForm textarea,
.wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_mensagem"],
.wp-care-form-theme #criacaoBudgetForm .fds-blog-post__confirm { grid-column: 1 / -1; }
.wp-care-form-theme #criacaoBudgetForm button[type="submit"] {
  grid-column: 1 / span 1;
  justify-self: start;
  width: auto;
  max-width: 280px;
}
.wp-care-form-theme #swBudgetForm input[name="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #swBudgetForm input[name="budget_email"] { grid-column: 2; }
.wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_nome"] { grid-column: 1; }
.wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_email"] { grid-column: 2; }
.wp-care-form-theme #swBudgetForm .fds-blog-post__whatsapp-row { grid-column: 1; }
.wp-care-form-theme #swBudgetForm input[name="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_whatsapp"] { grid-column: 1; }
.wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_assunto"] { grid-column: 2; }
.wp-care-form-theme #swBudgetForm textarea,
.wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_mensagem"],
.wp-care-form-theme #swBudgetForm .fds-blog-post__confirm { grid-column: 1 / -1; }
.wp-care-form-theme #swBudgetForm button[type="submit"] {
  grid-column: 1 / span 1;
  justify-self: start;
  width: auto;
  max-width: 280px;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input:not([type="checkbox"]),
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea,
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__whatsapp-country {
  background: #103454 !important;
  border: 1px solid rgba(119, 171, 214, 0.2) !important;
  color: #e8f1ff !important;
  min-height: 52px;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea { min-height: 108px; }
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input::placeholder,
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea::placeholder { color: rgba(232, 241, 255, 0.8); }
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm span { color: rgba(232, 241, 255, 0.9); }
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm a { color: var(--accent, #2e93ee); }
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"] {
  height: 52px;
  background: #6f7484 !important;
  color: #0f172a;
  font-weight: 600;
}
.wp-care-form-theme .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"].is-enabled {
  background: var(--accent, #2E93EE) !important;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section {
  position: relative;
  overflow: hidden;
  background: var(--fds-header-bg, #020b2f);
  padding: clamp(3.4rem, 5.6vw, 5rem) 1rem clamp(3.8rem, 6vw, 5.4rem);
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(84, 119, 196, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 119, 196, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section .container-xl {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__copy {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__copy h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 500;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__copy > p,
.page-landing-pages-e-hotsites .fds-criacao-lead-section__copy ul {
  display: none;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
  background: transparent;
  padding: 0;
}
.page-landing-pages-e-hotsites #lpBudgetForm {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.9rem;
}
.page-landing-pages-e-hotsites #lpBudgetForm > input[type="hidden"] {
  display: none;
}
.page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_nome"] { grid-column: 1; }
.page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_email"] { grid-column: 2; }
.page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_nome"] { grid-column: 1; }
.page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_email"] { grid-column: 2; }
.page-landing-pages-e-hotsites #lpBudgetForm .fds-blog-post__whatsapp-row { grid-column: 1; }
.page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_assunto"] { grid-column: 2; }
.page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_whatsapp"] { grid-column: 1; }
.page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_assunto"] { grid-column: 2; }
.page-landing-pages-e-hotsites #lpBudgetForm textarea,
.page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_mensagem"],
.page-landing-pages-e-hotsites #lpBudgetForm .fds-blog-post__confirm {
  grid-column: 1 / -1;
}
.page-landing-pages-e-hotsites #lpBudgetForm button[type="submit"] {
  grid-column: 1 / span 1;
  max-width: 220px;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input:not([type="checkbox"]),
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea,
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__whatsapp-country {
  background: #103454;
  border: 1px solid rgba(119, 171, 214, 0.2);
  color: #e8f1ff;
  min-height: 52px;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea {
  min-height: 108px;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input::placeholder,
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea::placeholder {
  color: rgba(232, 241, 255, 0.8);
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm span {
  color: rgba(232, 241, 255, 0.9);
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm a {
  color: var(--accent, #2e93ee);
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"] {
  height: 52px;
  background: #6f7484;
  color: #0f172a;
  font-weight: 600;
}
.page-landing-pages-e-hotsites .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"].is-enabled {
  background: var(--accent, #2E93EE);
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services {
  padding-top: clamp(4.2rem, 6.8vw, 5.8rem);
  padding-bottom: clamp(4.2rem, 6.8vw, 5.8rem);
}
.lp-services-section {
  padding-top: clamp(5.2rem, 8vw, 7rem) !important;
  padding-bottom: clamp(5.2rem, 8vw, 7rem) !important;
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services__grid {
  gap: clamp(2rem, 3vw, 3rem) clamp(2.2rem, 3vw, 3.2rem);
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services__card {
  gap: clamp(1rem, 1.8vw, 1.4rem);
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services__title {
  margin-bottom: 0.45rem;
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services__lead {
  margin-bottom: 0.65rem;
  line-height: 1.38;
}
.page-landing-pages-e-hotsites .fds-criacao-sites-services__text {
  line-height: 1.62;
}

/* Criação de sites — vitrine de cases */
.fds-criacao-portfolio {
  background: #f5f5f5;
  padding: clamp(2.7rem, 4.5vw, 3.5rem) 0 clamp(2.2rem, 4vw, 3rem);
}
.fds-criacao-portfolio__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding-bottom: 1.6rem;
}
.fds-criacao-portfolio__intro h2 {
  margin: 0;
  max-width: 44rem;
  color: #101827;
  font-size: clamp(1.55rem, 2.45vw, 2.2rem);
  line-height: 1.28;
  font-weight: 500;
}
.fds-criacao-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #ffffff;
}
.fds-criacao-portfolio__grid .fds-case-slide {
  width: 100%;
  max-width: 100%;
  flex: initial;
}
.fds-criacao-portfolio__cta-bottom {
  display: flex;
  justify-content: center;
  margin-top: 2.3rem;
}

/* Criação de sites — seção de captação com formulário */
.fds-criacao-lead-section {
  background: var(--fds-header-bg, #020b2f);
  padding: clamp(2.6rem, 4.5vw, 3.4rem) 50px;
}
.fds-criacao-lead-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(1.2rem, 2.8vw, 2.5rem);
  align-items: center;
}
.fds-criacao-lead-section__copy {
  color: rgba(255, 255, 255, 0.96);
}
.fds-criacao-lead-section__kicker {
  display: block;
  margin: 0 0 0.75rem;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}
.fds-criacao-lead-section__copy h2 {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.2;
  font-weight: 600;
}
.fds-criacao-lead-section__copy > p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
}
.fds-criacao-lead-section__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fds-criacao-lead-section__copy li {
  margin: 0 0 0.6rem;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}
.fds-criacao-lead-section__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.28);
}
.fds-criacao-lead-section__copy li::after {
  content: "";
  position: absolute;
  left: 0.43rem;
  top: 0.47rem;
  width: 0.35rem;
  height: 0.6rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
  background: #ffffff;
  border-radius: 0;
  padding: clamp(0.95rem, 1.7vw, 1.15rem);
}
.fds-criacao-lead-section__form-wrap .fds-blog-post__form-card input:not([type="checkbox"]),
.fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea,
.fds-criacao-lead-section__form-wrap .fds-blog-post__whatsapp-country {
  background: #f3f4f6;
  border-radius: 100px;
}
.fds-criacao-lead-section__form-wrap .fds-blog-post__form-card textarea {
  border-radius: 20px;
}
.fds-criacao-lead-section__form-wrap .fds-blog-post__confirm span {
  color: #334155;
}
.fds-criacao-lead-section__form-wrap .fds-blog-post__form-card button[type="submit"] {
  border-radius: 100px;
}

/* WP Care — seção logos clientes (colunas opostas) */
.wp-care-clients-strip {
  background: var(--fds-header-bg, #020b2f);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.wp-care-clients-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
  align-items: center;
}
.wp-care-clients-strip__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 4.2rem) 0;
}
.wp-care-clients-strip__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
}
.wp-care-clients-strip__copy p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
}
.wp-care-clients-strip__copy .fds-criacao-diferenciais__btn {
  align-self: flex-start;
  width: auto;
  max-width: none;
  border-radius: 100px;
}
.wp-care-clients-strip__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: clamp(500px, 52vw, 660px);
  max-height: 660px;
  overflow: hidden;
  align-self: center;
}
.wp-care-logos-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.wp-care-logos-col--down {
  padding-top: 0;
}
.wp-care-logos-track {
  display: grid;
  gap: 1rem;
}
.wp-care-logos-col--up .wp-care-logos-track {
  animation: wpCareLogosUp 24s linear infinite;
}
.wp-care-logos-col--down .wp-care-logos-track {
  animation: wpCareLogosDown 24s linear infinite;
}
.wp-care-logo-card {
  height: 122px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
}
.wp-care-logo-card img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes wpCareLogosUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes wpCareLogosDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

@media (max-width: 991px) {
  .fds-criacao-sites-services,
  .fds-criacao-diferenciais,
  .fds-criacao-lead-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .fds-criacao-portfolio {
    padding-left: 0;
    padding-right: 0;
  }
  .fds-criacao-sites-services__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .fds-criacao-sites-services__card {
    flex-direction: row;
    align-items: flex-start;
  }
  .fds-criacao-sites-services__icon {
    width: clamp(58px, 12vw, 76px);
  }
  .wp-care-plans .fds-criacao-sites-services__card {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .wp-care-plans .fds-criacao-diferenciais__btn {
    width: 100%;
    min-width: 0;
  }
  .fds-criacao-diferenciais__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-wp-care .fds-criacao-diferenciais__intro {
    grid-template-columns: 1fr;
  }
  .page-wp-care .fds-criacao-diferenciais__intro h2,
  .page-wp-care .fds-criacao-diferenciais__intro p {
    max-width: none;
  }
  .page-wp-care .wp-care-why-card {
    flex-basis: calc((100% - var(--wp-care-why-gap)) / 2);
    min-height: 355px;
  }
  .page-wp-care .wp-care-why-carousel__arrow--prev {
    left: -14px;
  }
  .page-wp-care .wp-care-why-carousel__arrow--next {
    right: -14px;
  }
  .fds-criacao-portfolio__intro {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.2rem;
  }
  .fds-criacao-portfolio__grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    background: transparent;
  }
  .fds-criacao-lead-section__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.65rem, 5.8vw, 2.25rem);
  }
  .fds-criacao-lead-section__copy > p {
    font-size: 1rem;
  }
  .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
    max-width: 560px;
    margin-inline: auto;
  }
  .wp-care-clients-strip__grid {
    grid-template-columns: 1fr;
  }
  .wp-care-clients-strip__logos {
    height: 430px;
    max-height: 430px;
  }
}
@media (max-width: 767px) {
  .fds-criacao-diferenciais__grid {
    grid-template-columns: 1fr;
  }
  .fds-criacao-diferenciais__intro h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }
  .fds-criacao-portfolio__intro h2 {
    font-size: clamp(1.3rem, 5.8vw, 1.9rem);
  }
  .fds-criacao-diferenciais__btn {
    width: 100%;
    max-width: 420px;
  }
  .page-sistemas-web .fds-criacao-diferenciais__btn.sw-intro-cta,
  .page-sistemas-web .fds-criacao-diferenciais__btn.sw-benefits-cta__btn {
    width: auto;
    max-width: none;
  }
  .page-wp-care .wp-care-why-card {
    flex-basis: 100%;
    min-height: 0;
  }
  .page-wp-care .wp-care-why-carousel__arrow {
    width: 46px;
    height: 46px;
  }
  .page-wp-care .wp-care-why-carousel__arrow i {
    font-size: 1.15rem;
  }
  .page-wp-care .wp-care-why-carousel__arrow--prev {
    left: -8px;
  }
  .page-wp-care .wp-care-why-carousel__arrow--next {
    right: -8px;
  }
  .page-landing-pages-e-hotsites #lpBudgetForm {
    grid-template-columns: 1fr;
  }
  .page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_nome"],
  .page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_email"],
  .page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_nome"],
  .page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_email"],
  .page-landing-pages-e-hotsites #lpBudgetForm .fds-blog-post__whatsapp-row,
  .page-landing-pages-e-hotsites #lpBudgetForm input[name="budget_assunto"],
  .page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_whatsapp"],
  .page-landing-pages-e-hotsites #lpBudgetForm .fds-form-error[data-for="budget_assunto"],
  .page-landing-pages-e-hotsites #lpBudgetForm button[type="submit"] {
    grid-column: 1 / -1;
  }
  .page-landing-pages-e-hotsites .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .wp-care-form-theme #lpBudgetForm {
    grid-template-columns: 1fr;
  }
  .wp-care-form-theme #lpBudgetForm input[name="budget_nome"],
  .wp-care-form-theme #lpBudgetForm input[name="budget_email"],
  .wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_nome"],
  .wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_email"],
  .wp-care-form-theme #lpBudgetForm .fds-blog-post__whatsapp-row,
  .wp-care-form-theme #lpBudgetForm input[name="budget_assunto"],
  .wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_whatsapp"],
  .wp-care-form-theme #lpBudgetForm .fds-form-error[data-for="budget_assunto"],
  .wp-care-form-theme #lpBudgetForm button[type="submit"] {
    grid-column: 1 / -1;
  }
  .wp-care-form-theme .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .wp-care-form-theme #criacaoBudgetForm {
    grid-template-columns: 1fr;
  }
  .wp-care-form-theme #criacaoBudgetForm input[name="budget_nome"],
  .wp-care-form-theme #criacaoBudgetForm input[name="budget_email"],
  .wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_nome"],
  .wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_email"],
  .wp-care-form-theme #criacaoBudgetForm .fds-blog-post__whatsapp-row,
  .wp-care-form-theme #criacaoBudgetForm input[name="budget_assunto"],
  .wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_whatsapp"],
  .wp-care-form-theme #criacaoBudgetForm .fds-form-error[data-for="budget_assunto"],
  .wp-care-form-theme #criacaoBudgetForm button[type="submit"] {
    grid-column: 1 / -1;
  }
  .wp-care-form-theme #swBudgetForm {
    grid-template-columns: 1fr;
  }
  .wp-care-form-theme #swBudgetForm input[name="budget_nome"],
  .wp-care-form-theme #swBudgetForm input[name="budget_email"],
  .wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_nome"],
  .wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_email"],
  .wp-care-form-theme #swBudgetForm .fds-blog-post__whatsapp-row,
  .wp-care-form-theme #swBudgetForm input[name="budget_assunto"],
  .wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_whatsapp"],
  .wp-care-form-theme #swBudgetForm .fds-form-error[data-for="budget_assunto"],
  .wp-care-form-theme #swBudgetForm button[type="submit"] {
    grid-column: 1 / -1;
  }
  .wp-care-form-theme #lpBudgetForm button[type="submit"],
  .wp-care-form-theme #criacaoBudgetForm button[type="submit"],
  .wp-care-form-theme #swBudgetForm button[type="submit"] {
    justify-self: start;
    width: auto;
  }
  .page-wp-care #wpCareBudgetForm {
    grid-template-columns: 1fr;
  }
  .page-wp-care #wpCareBudgetForm input[name="budget_nome"],
  .page-wp-care #wpCareBudgetForm input[name="budget_email"],
  .page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_nome"],
  .page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_email"],
  .page-wp-care #wpCareBudgetForm .fds-blog-post__whatsapp-row,
  .page-wp-care #wpCareBudgetForm input[name="budget_assunto"],
  .page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_whatsapp"],
  .page-wp-care #wpCareBudgetForm .fds-form-error[data-for="budget_assunto"],
  .page-wp-care #wpCareBudgetForm button[type="submit"] {
    grid-column: 1 / -1;
  }
  .page-wp-care .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .wp-care-clients-strip__logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: auto;
    max-height: none;
    overflow: hidden;
  }
  .wp-care-logos-col {
    height: auto;
    overflow: hidden;
  }
  .wp-care-logos-col--down {
    padding-top: 0;
  }
  .wp-care-logos-track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
  }
  .wp-care-logos-col--up .wp-care-logos-track {
    animation: wpCareLogosLeft 22s linear infinite;
  }
  .wp-care-logos-col--down .wp-care-logos-track {
    animation: wpCareLogosRight 22s linear infinite;
  }
  .wp-care-logo-card {
    flex: 0 0 168px;
    height: 92px;
    padding: 0.75rem;
  }
  .wp-care-logo-card img {
    max-height: 52px;
  }
}

@keyframes wpCareLogosLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes wpCareLogosRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 575px) {
  .fds-criacao-sites-services__card {
    flex-direction: column;
    align-items: stretch;
  }
  .fds-criacao-sites-services__icon {
    width: 62px;
  }
  .fds-criacao-sites-services__title {
    font-size: 1.12rem;
  }
  .fds-criacao-sites-services__lead {
    font-size: 0.98rem;
  }
  .wp-care-plans .fds-criacao-sites-services__card {
    padding: 1.45rem 1.2rem 1.3rem;
  }
  .wp-care-plans .fds-criacao-sites-services__title {
    font-size: 1.14rem;
  }
  .wp-care-plans .fds-criacao-diferenciais__btn {
    height: 52px;
    font-size: 0.84rem;
  }
  .fds-criacao-diferenciais__item {
    min-height: 0;
  }
  .fds-criacao-lead-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .fds-criacao-lead-section__copy h2 {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }
  .fds-criacao-lead-section__copy li {
    padding-left: 1.7rem;
    font-size: 0.94rem;
  }
  .fds-criacao-lead-section__copy li::before {
    width: 1.08rem;
    height: 1.08rem;
  }
  .fds-criacao-lead-section__copy li::after {
    left: 0.37rem;
    top: 0.43rem;
    width: 0.31rem;
    height: 0.54rem;
  }
  .fds-criacao-lead-section__form-wrap .fds-blog-post__form-card {
    padding: 0.85rem;
  }
}

.fds-blog-list {
  padding: 2.2rem 0 2.6rem;
  background: #fff;
}
.fds-blog-list-hero .container-xl,
.fds-blog-list .container-xl,
.fds-criacao-sites-services .container-xl,
.fds-criacao-pro-intro .container-xl,
.fds-criacao-diferenciais .container-xl,
.fds-criacao-portfolio .container-xl,
.page-portfolio .fds-portfolio-page--listing .container-xl,
.fds-criacao-lead-section .container-xl,
.sw-intro-section .container-xl,
.sw-benefits-section .container-xl,
.wp-care-clients-strip .container-xl,
.page-fale-conosco .contact-section .container-xl,
.page-legal-institucional .wp-care-section .container-xl {
  width: 100%;
}
@media (min-width: 992px) {
  .fds-blog-list-hero .container-xl,
  .fds-blog-list .container-xl,
  .fds-criacao-sites-services .container-xl,
  .fds-criacao-pro-intro .container-xl,
  .fds-criacao-diferenciais .container-xl,
  .fds-criacao-portfolio .container-xl,
  .page-portfolio .fds-portfolio-page--listing .container-xl,
  .fds-criacao-lead-section .container-xl,
  .sw-intro-section .container-xl,
  .sw-benefits-section .container-xl,
  .wp-care-clients-strip .container-xl,
  .page-fale-conosco .contact-section .container-xl,
  .page-legal-institucional .wp-care-section .container-xl {
    max-width: 1320px;
  }
}
.fds-blog-list__layout {
  background: #fff;
}
.fds-blog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.2rem;
}
.fds-blog-list__card {
  padding-right: 1rem;
  border-right: 1px solid #e5e7eb;
}
.fds-blog-list-empty {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fds-blog-list__sidebar {
  border-left: 1px solid #e5e7eb;
}
.fds-blog-list__search form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  border: 1px solid #cbd5e1;
  margin-bottom: 1.5rem;
}
.fds-blog-list__search input {
  border: 0;
  padding: 0.9rem 1rem;
  outline: none;
}
.fds-blog-list__search button {
  border: 0;
  background: var(--accent, #2E93EE);
  color: #ffffff;
  font-size: 1.35rem;
}
.fds-blog-list__popular h3 {
  font-size: 2rem;
  margin: 0 0 0.9rem;
  font-weight: 400;
}
.fds-blog-list__popular-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid #e5e7eb;
  text-decoration: none;
}
.fds-blog-list__popular-media {
  position: relative;
  display: inline-block;
  width: 106px;
  height: 64px;
  margin-left: 16px;
}
.fds-blog-list__popular-num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #08a8f4;
  color: #fff;
  font-weight: 600;
  position: absolute;
  left: -16px;
  top: -16px;
  z-index: 2;
}
.fds-blog-list__popular-item img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}
.fds-blog-list__popular-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fds-blog-list__popular-meta strong {
  color: #111827;
  font-size: 0.9rem;
}
.fds-blog-list__popular-meta span {
  color: #111827;
  font-size: 1.1rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fds-blog-pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.fds-blog-pagination__item {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid var(--accent, #2E93EE);
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #fff;
}
.fds-blog-pagination__item.is-active {
  background: var(--accent, #2E93EE);
  color: #ffffff;
}
.fds-blog-pagination__dots {
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 991px) {
  .fds-blog-list__layout {
    grid-template-columns: 1fr;
  }
  .fds-blog-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fds-blog-list__card {
    padding-right: 0;
    border-right: 0;
  }
  .fds-blog-list__sidebar {
    border-left: 0;
    padding-left: 0;
    position: static;
  }
}

/* ===== Banner de Cookies ===== */
.cookies-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1400;
  padding: 0.75rem 0 0.9rem;
  background: #ffffff;
  color: #0f172a;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.cookies-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookies-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cookies-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-light, rgba(46, 147, 238, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #2e93ee);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cookies-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
}
.cookies-banner-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}
.cookies-banner-text span {
  color: #4b5563;
}
.cookies-banner-text a {
  color: var(--accent, #2e93ee);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookies-banner-text a:hover {
  color: var(--accent-hover, #1a7bd4);
}
.cookies-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}
.cookies-btn-primary {
  border-radius: 12px;
  background: var(--btn-bg, var(--accent-secondary, #1a7bd4));
  border-color: var(--btn-bg, var(--accent-secondary, #1a7bd4));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.3rem;
  box-shadow: 0 8px 22px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.22);
}
.cookies-btn-primary:hover {
  background: var(--btn-hover, var(--accent-hover, #1576c4));
  border-color: var(--btn-hover, var(--accent-hover, #1576c4));
  color: #ffffff;
}
.cookies-btn-link {
  font-size: 0.8rem;
  color: #4b5563;
  padding-inline: 0;
}
.cookies-btn-link:hover {
  color: var(--accent, #2e93ee);
}
@media (max-width: 767px) {
  .cookies-banner {
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .cookies-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookies-banner-actions {
    justify-content: flex-start;
  }
}

/* ===== WhatsApp flutuante ===== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.whatsapp-float-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

/* ===== Botão flutuante WhatsApp (balão + foto + online; clique → wa.me) ===== */
.chat-float-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.chat-float-root.is-open {
  z-index: 1200;
}
.chat-float-root.is-open .chat-float-wrap {
  display: none !important;
}
.chat-float-root.is-open .chat-float-sheet {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  top: auto;
  transform: translateY(0);
}
.chat-float-root--teaser-done .chat-float-teaser {
  display: none !important;
}
.chat-float-root.chat-float-root--teaser-done:not(.is-open) .chat-float-wrap {
  gap: 0;
}
@keyframes chatFloatLauncherRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chat-float-wrap.chat-float-launcher-rise {
  animation: chatFloatLauncherRise 0.42s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.chat-float-sheet {
  position: absolute;
  right: 0;
  bottom: calc(100% + 11px);
  width: min(94vw, 400px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.22s;
  pointer-events: none;
}
.chat-float-sheet.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.chat-float-wrap.chat-float-wrap--has-panel {
  position: relative;
  z-index: 3;
}
.chat-float-sheet-stack {
  --chat-agent-stack-min-height: 456px;
  width: 100%;
  min-height: var(--chat-agent-stack-min-height);
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.07)) drop-shadow(0 14px 40px rgba(15, 23, 42, 0.12));
  transition: min-height 0.32s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.chat-float-sheet-stack--post-cta {
  --chat-agent-stack-min-height: 524px;
}
.chat-float-sheet-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.chat-float-agent-head {
  color: #fff;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat-float-agent-head__id {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.chat-float-agent-head__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.chat-float-agent-head__text {
  min-width: 0;
}
.chat-float-agent-head__title {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-float-agent-head__status {
  display: block;
  font-size: 0.765rem;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.chat-float-agent-close {
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.chat-float-agent-close:hover {
  background: rgba(255, 255, 255, 0.14);
}
.chat-float-agent-close .bi-x-lg {
  font-size: 1rem;
  line-height: 1;
}
.chat-float-agent-body {
  --chat-agent-body-min-height: 304px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: var(--chat-agent-body-min-height);
  padding: 17px 16px 18px;
  background: #fff;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Scrollbar do painel do chat (sem setas e com cor primária) */
.chat-float-agent-body {
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #2e93ee) transparent;
}
.chat-float-agent-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.chat-float-agent-body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-float-agent-body::-webkit-scrollbar-thumb {
  background-color: var(--accent, #2e93ee);
  border-radius: 999px;
}
.chat-float-agent-body::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-hover, #1976d2);
}
.chat-float-agent-body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.chat-float-agent-body::-webkit-scrollbar-corner {
  background: transparent;
}
.chat-float-agent-body--extended {
  --chat-agent-body-min-height: 358px;
  max-height: min(54vh, 432px);
}
.chat-float-agent-after-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.chat-float-agent-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 11px;
}
.chat-float-agent-msg:last-child {
  margin-bottom: 0;
}
.chat-float-agent-msg.agent-msg--hidden,
.chat-float-agent-form-block.agent-msg--hidden {
  visibility: hidden;
  opacity: 0;
  height: 0 !important;
  min-height: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  pointer-events: none;
  border: none;
}
.chat-float-agent-typing-pill {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  min-height: 42px;
  box-sizing: border-box;
  background: #f0f2f5;
  border-radius: 999px;
}
.chat-float-agent-msg.agent-msg--typing .chat-float-agent-typing-pill {
  display: inline-flex;
}
.chat-float-agent-typing-pill i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f9bb0;
  animation: chatFloatAgentTypingDots 0.92s ease-in-out infinite;
}
.chat-float-agent-typing-pill i:nth-child(2) { animation-delay: 0.14s; }
.chat-float-agent-typing-pill i:nth-child(3) { animation-delay: 0.28s; }
@keyframes chatFloatAgentTypingDots {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.42; }
  40% { transform: translateY(-4px); opacity: 1; }
}
.chat-float-agent-bubble.chat-float-agent-bubble--delayed {
  display: none !important;
}
.chat-float-agent-msg.agent-msg--shown .chat-float-agent-bubble.chat-float-agent-bubble--delayed {
  display: block !important;
}
.chat-float-agent-msg.agent-msg--shown .chat-float-agent-bubble.chat-float-agent-bubble--narrow.chat-float-agent-bubble--delayed {
  display: inline-block !important;
}
.chat-float-agent-msg.agent-msg--hidden .chat-float-agent-typing-pill {
  display: none !important;
}
.chat-float-agent-msg__avatar-slot {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-self: flex-end;
}
.chat-float-agent-msg__avatar-slot:empty {
  min-height: 1px;
}
.chat-float-agent-msg__mini {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-float-agent-msg__bubble-wrap {
  flex: 1;
  min-width: 0;
}
.chat-float-agent-msg--user {
  width: 100%;
  justify-content: flex-end;
  align-self: flex-end;
}
.chat-float-agent-msg__bubble-wrap--user {
  flex: 1 1 auto;
  flex-grow: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 88%;
}
.chat-float-agent-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.chat-float-agent-form-block {
  margin-bottom: 11px;
  width: 100%;
  box-sizing: border-box;
}
.chat-float-agent-form-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}
.chat-float-agent-field {
  flex: 1;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.chat-float-agent-field:focus {
  border-color: var(--accent, #2e93ee);
  box-shadow: 0 0 0 2px rgba(46, 147, 238, 0.15);
}
.chat-float-agent-field--textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 4.75rem;
  resize: vertical;
  line-height: 1.45;
}
.chat-float-agent-subject-other-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}
.chat-float-agent-chip--other {
  align-self: flex-end;
  width: auto;
  max-width: 100%;
  text-align: right;
}
.chat-float-agent-form-send--subject-other {
  width: 100%;
  flex: none;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.chat-float-agent-form-send {
  flex-shrink: 0;
  min-width: 84px;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.015em;
  padding: 0 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.chat-float-agent-form-send:hover {
  opacity: 0.93;
}
.chat-float-agent-form-send:disabled {
  opacity: 0.62;
  cursor: default;
  transform: none;
}
.chat-float-agent-chips-panel .chat-float-agent-chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.chat-float-agent-chip {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: #fff;
  background: var(--accent, #2e93ee);
  line-height: 1.38;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.07),
    0 6px 16px rgba(46, 147, 238, 0.26);
}
.chat-float-agent-chip:hover {
  opacity: 0.94;
}
.chat-float-agent-chip:disabled {
  opacity: 0.52;
  cursor: default;
  transform: none;
}
@keyframes chatFloatLeadShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  52% { transform: translateX(5px); }
}
.chat-float-agent-field--shake {
  animation: chatFloatLeadShake 0.62s ease;
}
.chat-float-agent-bubble--user {
  background: var(--accent, #2e93ee) !important;
  color: #fff !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.07),
    0 8px 20px rgba(15, 23, 42, 0.12);
}
.chat-float-agent-bubble--user strong {
  font-weight: 700;
  color: inherit;
}
.chat-float-agent-bubble {
  background: #f0f2f5;
  color: #1a2332;
  padding: 12px 16px 13px;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.46;
}
.chat-float-agent-bubble--narrow {
  display: inline-block;
}
.chat-float-agent-bubble__lead {
  margin: 0 0 14px;
  font-size: 0.94rem;
  line-height: 1.48;
}
.chat-float-agent-bubble--cta {
  width: 100%;
}
.chat-float-agent-cta {
  width: 100%;
  margin: 0 0 11px;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.91rem;
  padding: 12px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 5px 18px rgba(15, 23, 42, 0.12);
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}
.chat-float-agent-cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
.chat-float-agent-cta:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
  pointer-events: none;
  filter: grayscale(0.08);
}
.chat-float-agent-cta__arrow {
  font-weight: 600;
}
.chat-float-agent-legal {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1.46;
  color: #7a8496;
}
.chat-float-agent-legal a {
  color: var(--accent, #2196f3);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.chat-float-agent-legal a:hover {
  color: var(--accent-hover, #1976d2);
}
.chat-float-agent-foot {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-shrink: 0;
  margin: 0 0 0;
  padding: 0;
  background: transparent;
}
.chat-float-agent-foot__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 6px 32px 8px;
  margin: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.38;
  letter-spacing: 0.02em;
  color: #6f6f6f;
  background: #f7f7f7;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  box-shadow: none;
}
.chat-float-agent-foot__ico {
  width: 11px;
  height: 11px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin: 0 1px;
}
.chat-float-agent-foot__by {
  font-weight: 400;
  color: #777;
}
.chat-float-agent-foot__brand {
  font-weight: 700;
  color: #333;
}
.chat-float-root .chat-float-wrap,
.chat-float-root .chat-float-label {
  pointer-events: auto;
}
.chat-float-label {
  background: #ffffff;
  color: #475569;
  border-radius: 999px;
  padding: 8px 12px 8px 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  max-width: min(280px, calc(100vw - 120px));
  line-height: 1.35;
}
.chat-float-label span {
  white-space: normal;
}
.chat-float-label-close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #98a2b3;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.chat-float-label-close:hover {
  background: #f1f5f9;
  color: #475569;
}
.chat-float-wrap {
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.chat-float-wrap:focus-visible {
  outline: 2px solid var(--accent, #2E93EE);
  outline-offset: 4px;
  border-radius: 0;
}
.chat-float-btn {
  position: relative;
  width: auto;
  min-height: 52px;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 100px;
  background: #25d366;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.32);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.chat-float-btn:hover {
  transform: translateY(-1px);
  background: #1ebe5d;
}
.chat-float-btn__content {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.chat-float-cta-icon {
  font-size: 1.18rem;
  line-height: 1;
  color: #ffffff;
  transform: translateY(-1px);
}
.chat-float-cta-title {
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}
.chat-float-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.24);
  flex-shrink: 0;
}
.chat-float-avatar-wrap {
  position: relative;
  z-index: 0;
  display: inline-flex;
  flex-shrink: 0;
}
.chat-float-teaser {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.18);
  max-width: min(320px, calc(100vw - 120px));
  overflow: visible;
}
.chat-float-teaser::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #ffffff;
  z-index: 2;
}
.chat-float-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.chat-float-typing i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: chatTypingBounce 0.9s ease-in-out infinite;
}
.chat-float-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-float-typing i:nth-child(3) { animation-delay: 0.3s; }
.chat-float-message {
  display: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: normal;
  text-align: left;
}
.chat-float-teaser.is-message .chat-float-typing {
  display: none;
}
.chat-float-teaser.is-message .chat-float-message {
  display: inline;
}
@keyframes chatTypingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-5px); opacity: 1; }
}
.chat-float-avatar-wrap::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow: 0 2px 6px rgba(2, 6, 23, 0.22);
}

@media (max-width: 575px) {
  .brand-strip-title { font-size: 1.5rem; }
  .chat-float-root {
    right: 14px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .chat-float-label {
    max-width: calc(100vw - 28px);
  }
  .chat-float-avatar {
    width: 62px;
    height: 62px;
  }
  .chat-float-teaser {
    max-width: calc(100vw - 104px);
    min-height: 48px;
    padding: 0.62rem 0.82rem;
  }
  .chat-float-message {
    font-size: 0.95rem;
  }
  .chat-float-avatar-wrap::after {
    width: 13px;
    height: 13px;
    right: 1px;
    bottom: 1px;
  }
  .chat-float-sheet {
    width: calc(100vw - 28px);
    max-width: min(94vw, 400px);
  }
  .chat-float-root.is-open .chat-float-sheet {
    right: 14px;
    bottom: 12px;
  }
  .chat-float-sheet-stack {
    --chat-agent-stack-min-height: 430px;
  }
  .chat-float-sheet-stack--post-cta {
    --chat-agent-stack-min-height: 494px;
  }
  .chat-float-agent-body {
    --chat-agent-body-min-height: 268px;
  }
  .chat-float-agent-body--extended {
    --chat-agent-body-min-height: 314px;
    max-height: min(52vh, 392px);
  }
}

/* ===== Utilitários Bootstrap override - botões usam cor secundária ===== */
.btn-primary {
  background: var(--btn-bg, var(--accent-secondary));
  border-color: var(--btn-bg, var(--accent-secondary));
  color: #1f2044;
}
.btn-primary:hover {
  background: var(--btn-hover, var(--accent-hover));
  border-color: var(--btn-hover, var(--accent-hover));
  color: #1f2044;
}
.btn-outline-primary {
  border-color: var(--btn-bg, var(--accent-secondary));
  color: var(--btn-bg, var(--accent-secondary));
}
.btn-outline-primary:hover {
  background: var(--btn-bg, var(--accent-secondary));
  border-color: var(--btn-bg, var(--accent-secondary));
  color: #1f2044;
}

/* ===== Responsivo ===== */
@media (max-width: 991px) {
  /* Mobile: deixa o banner crescer conforme o conteúdo (sem cortar imagem) */
  .fds-slider:not(.fds-slider--split-hero) .carousel-inner,
  .fds-slider:not(.fds-slider--split-hero) .carousel-item {
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;
    height: auto;
  }
  .fds-slide-title { font-size: 1.9rem; }
  .fds-slide-subtitle { font-size: 1.2rem; }
  .fds-services-title,
  .brand-strip-title { font-size: 1.75rem; }
  .fds-service-card { min-width: 220px; }
  .host-plan-featured { transform: none; }
  .host-plan-featured:hover { transform: translateY(-4px); }
}

/* ===== Central de ajuda (alinhada ao templates-hero + contact-card) ===== */
.fds-help-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%);
}

.help-main-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

/* --- Central de ajuda: layout tipo knowledge base (recomendados + cards) --- */
.help-home-layout {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.help-reco-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.help-reco-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.help-reco-spark {
  margin-right: 0.2rem;
}

.help-reco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
}

@media (max-width: 767.98px) {
  .help-reco-grid {
    grid-template-columns: 1fr;
  }
}

.help-reco-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  margin: 0;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.35;
  background: #ffffff;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  transition: background-color 0.15s ease;
}

.help-reco-link:hover {
  background: #f8fafc;
  color: #111827;
}

.help-reco-link:nth-child(2n) {
  border-right: none;
}

@media (min-width: 768px) {
  .help-reco-link:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
}

@media (max-width: 767.98px) {
  .help-reco-link {
    border-right: none;
  }
  .help-reco-link:last-child {
    border-bottom: none;
  }
}

.help-reco-link-text {
  text-align: left;
  min-width: 0;
}

.help-reco-chevron {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #94a3b8;
}

.help-cat-cards-row {
  margin-top: 0.25rem;
}

.help-cat-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.35rem 1.45rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.help-cat-card-v2:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.help-cat-icon-v2 {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff1f2;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.help-cat-icon-v2 i {
  color: #111827;
}

.help-cat-title-v2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.help-cat-desc-v2 {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.help-cat-count-v2 {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}

.help-card {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 0 1.5rem;
  position: static;
  z-index: auto;
}
.help-card-recommended {
  margin-top: 0;
  padding: 2rem 2rem 1.75rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.help-section-title {
  font-size: 1.35rem;
  font-weight: 650;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.help-section-title .help-recommended-icon {
  font-size: 1.25rem;
  margin-right: 0.4rem;
}
.help-article-link {
  display: block;
  padding: 0.55rem 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.help-article-link:hover {
  color: #111827;
}
.help-article-link-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.help-article-link-summary {
  font-size: 0.85rem;
  color: #6b7280;
}
.help-article-link::after {
  content: none;
}

/* estilo pill apenas na lista de recomendados */
.help-card-recommended .help-article-link {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
}
.help-card-recommended .help-article-link:hover {
  background: var(--accent-light, rgba(46, 147, 238, 0.08));
  color: #0f172a;
}
.help-article-link-icon {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--accent, #2e93ee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light, rgba(46, 147, 238, 0.08));
  color: var(--accent, #2e93ee);
  flex-shrink: 0;
}
.help-article-link-icon i {
  font-size: 1.1rem;
}
.help-card-recommended .help-article-link-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.88rem;
}
.help-category-grid {
  margin-top: 0.25rem;
}
.help-category-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.25rem;
  background: #ffffff;
  border: 1px solid #eef0f6;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.help-category-card:hover {
  color: inherit;
  border-color: var(--accent-light-2, rgba(46, 147, 238, 0.15));
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.help-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light, rgba(46, 147, 238, 0.1));
  color: var(--accent, #2e93ee);
  margin-bottom: 0.15rem;
  font-size: 1.25rem;
}
.help-category-title {
  font-size: 1rem;
  margin: 0;
}
.help-category-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.15rem;
}
.help-category-count {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}
.help-list {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.help-list-item {
  display: block;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #eef0f6;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.help-list-item:last-child {
  border-bottom: none;
}
.help-list-item:hover {
  background: var(--accent-light, rgba(46, 147, 238, 0.06));
}
.help-list-title {
  font-size: 1rem;
  margin: 0 0 0.15rem;
}
.help-list-summary {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}
.help-search-results {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef0f6;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.help-result-item {
  display: block;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #eef0f6;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.help-result-item:last-child {
  border-bottom: none;
}
.help-result-item:hover {
  background: var(--accent-light, rgba(46, 147, 238, 0.06));
}
.help-result-title {
  font-size: 1rem;
  margin: 0 0 0.1rem;
}
.help-result-meta {
  font-size: 0.8rem;
  color: var(--accent, #2e93ee);
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.help-result-summary {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}
.help-article-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.help-article-card--inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid #eef0f6;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.help-article-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.help-article-summary {
  font-size: 0.95rem;
  color: #6b7280;
}
.help-article-content {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.help-article-content p {
  margin-bottom: 0.75rem;
}
.help-article-content ul {
  padding-left: 1.2rem;
}
.help-breadcrumb {
  font-size: 0.875rem;
  color: #64748b;
}
.help-breadcrumb a {
  color: var(--accent, #2e93ee);
  text-decoration: none;
  font-weight: 500;
}
.help-breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent-hover, #1a7bd4);
}
.help-breadcrumb span:not(:last-child) {
  margin: 0 0.2rem;
}
.help-breadcrumb-sep {
  margin: 0 0.25rem;
  color: #cbd5e1;
}

/* Navegação rápida + lista simples de tutoriais */
.help-quick-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.help-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.help-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.help-pill:hover {
  border-color: var(--accent, #2e93ee);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.help-pill-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent, #2e93ee);
  background: var(--accent-light, rgba(46, 147, 238, 0.12));
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}
.help-tutorial-block {
  padding: 1.25rem 1.35rem;
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.help-tutorial-cat-title {
  font-size: 1.15rem;
  font-weight: 650;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.help-see-all {
  color: var(--accent, #2e93ee);
  text-decoration: none;
  font-weight: 500;
}
.help-see-all:hover {
  text-decoration: underline;
}
.help-tutorial-list li + li {
  border-top: 1px solid #f1f5f9;
}
.help-tutorial-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
}
.help-tutorial-link:hover {
  color: var(--accent, #2e93ee);
}
.help-tutorial-link-ico {
  flex-shrink: 0;
  opacity: 0.45;
  font-size: 0.9rem;
}
.help-back-link {
  color: var(--accent, #2e93ee);
  text-decoration: none;
  font-weight: 500;
}
.help-back-link:hover {
  text-decoration: underline;
}
.help-youtube-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}
.help-youtube-embed iframe {
  border: 0;
}
.fds-help-prose {
  max-width: 100%;
}
.fds-help-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.help-gallery-thumb:hover img {
  opacity: 0.95;
}

@media (max-width: 575px) {
  .help-article-card--inner {
    padding: 1.35rem 1.15rem 1.5rem;
  }
  .help-card-recommended {
    padding: 1.35rem 1.15rem 1.25rem;
  }
  .help-category-card {
    padding: 1.15rem 1rem 1.1rem;
  }
}

@media (max-width: 767px) {
  .fds-services-title { font-size: 1.5rem; }
  .fds-service-card { min-width: 220px; }
  .fds-topbar .d-flex { flex-direction: column; align-items: flex-start !important; }
  /* Evita linha/faixa clara entre header e hero em alguns aparelhos */
  .fds-slider:not(.fds-slider--split-hero) { margin-top: -6px; }
  .fds-slider:not(.fds-slider--split-hero) .carousel-inner,
  .fds-slider:not(.fds-slider--split-hero) .carousel-item { min-height: auto; }
  .fds-slide-hero .container {
    /* aproxima o hero do topo sem colar no header fixo */
    padding-top: 2.4rem;
    padding-bottom: 1.6rem;
  }
  .fds-slide-hero {
    position: relative;
    isolation: isolate;
  }
  .fds-slide-hero--split-pan::before {
    display: none;
  }
  .fds-slide-hero:not(.fds-slide-hero--split-pan)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 32%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
  }
  .fds-slide-hero .container {
    position: relative;
    z-index: 2;
  }
  .fds-slide-hero .row {
    row-gap: 1rem !important;
  }
  .fds-slide-hero--split-pan .fds-hero-split-row {
    row-gap: 0.35rem !important;
  }
  .fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6,
  .fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6:first-child,
  .fds-slide-hero:not(.fds-slide-hero--split-pan) .col-lg-6:last-child {
    align-items: center !important;
    justify-content: center;
    text-align: center;
  }
  .fds-slide-hero--split-pan .col-lg-6:first-child {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .fds-slide-hero--split-pan .col-lg-6:last-child {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
  }
  .fds-slide-hero--split-pan .fds-slide-desc,
  .fds-slide-hero--split-pan .fds-home-hero-desc {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .fds-slide-hero--split-pan .fds-slide-btn {
    max-width: none;
    width: 100%;
  }
  .fds-slide-kicker {
    font-size: 0.76rem;
    padding: 0.38rem 0.78rem;
    margin-top: 0.15rem;
    margin-bottom: 0.75rem;
  }
  .fds-slide-sub2 {
    font-size: clamp(1.65rem, 7.4vw, 2.05rem);
    line-height: 1.12;
    margin-bottom: 0.28rem;
  }
  .fds-slide-title2 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.06;
    margin-bottom: 0.78rem;
  }
  .fds-pitch-split__title {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.06;
    margin-bottom: 0.78rem;
  }
  .fds-slide-desc {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 0.95rem;
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }
  .fds-slide-btn {
    width: 100%;
    max-width: 320px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
  }
  .fds-slide-hero:not(.fds-slide-hero--split-pan) .fds-slide-media-img {
    border-radius: 12px;
  }
  .fds-slide-title { font-size: 1.6rem; }
  .fds-slide-subtitle { font-size: 1.1rem; }
  .fds-slider .carousel-control-prev,
  .fds-slider .carousel-control-next { width: 56px; height: 56px; border-radius: 12px; }
  .fds-slider .carousel-control-prev { left: 8px; }
  .fds-slider .carousel-control-next { right: 8px; }
  .fds-slider .carousel-control-prev i,
  .fds-slider .carousel-control-next i { font-size: 1.45rem; font-weight: 300; }
  .section-title-host { font-size: 1.5rem; }
  .fds-footer-col { flex: 0 0 100% !important; }
  .fds-footer-links-row .fds-footer-sep { display: none; }
  .fds-footer-links-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
}

@media (max-width: 575px) {
  .fds-slider:not(.fds-slider--split-hero) .carousel-inner,
  .fds-slider:not(.fds-slider--split-hero) .carousel-item { min-height: auto; }
  .fds-slide-hero--split-pan .fds-slide-title2 {
    font-size: clamp(1.62rem, 8.2vw, 2.05rem);
    line-height: 1.08;
    margin-bottom: 0.65rem;
  }
  .fds-pitch-split__title {
    font-size: clamp(1.62rem, 8.2vw, 2.05rem);
    line-height: 1.08;
    margin-bottom: 0.65rem;
  }
  .fds-slide-hero--split-pan .fds-slide-media-img {
    max-height: min(44vh, 340px);
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card {
    padding: 0.44rem 0.52rem;
    gap: 0.36rem;
    border-radius: 10px;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-ico {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
    border-radius: 7px;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-txt strong {
    font-size: 0.66rem;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-txt span {
    font-size: 0.6rem;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-stack {
    width: min(228px, calc(100% - 1rem));
    bottom: clamp(0.85rem, 3.8vw, 1.65rem);
    gap: 0.3rem;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card--sale {
    margin-left: 11px;
  }
  .fds-slide-hero--split-pan .fds-hero-notify-card--wa {
    margin-left: 22px;
  }
  .fds-slide-title { font-size: 1.4rem; }
  .fds-slide-subtitle { font-size: 1rem; }
  .fds-domain-search .d-flex { flex-direction: column; }
  .fds-domain-search .btn { width: 100%; }
  .domain-search-inner { flex-wrap: nowrap; border-radius: 999px; min-height: 52px; }
  .fds-hero-wrap.has-slider .fds-domain-bar { margin-top: -32px; }
  .host-plan-price { font-size: 1.75rem; }
  .whatsapp-float-btn { width: 52px; height: 52px; bottom: 16px; left: 16px; }
}

/* ===== Plataforma: menu + imagem interativa ===== */
.plataforma-section {
  background: #fff;
  color: var(--text);
}
.plataforma-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.plataforma-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plataforma-menu-item {
  border-bottom: 1px solid #e9ecef;
}
.plataforma-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
.plataforma-menu-item:hover .plataforma-menu-header {
  color: var(--accent);
}
.plataforma-menu-item.active .plataforma-menu-header {
  color: var(--accent);
  font-weight: 500;
}
.plataforma-menu-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.plataforma-menu-text {
  flex: 1;
}
.plataforma-menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.plataforma-menu-item.active .plataforma-menu-content {
  max-height: 350px;
}
.plataforma-menu-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 0 0 2rem;
  padding-bottom: 1rem;
}
.plataforma-progress-wrap {
  margin: 0.5rem 0 0.5rem 2rem;
  height: 4px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}
.plataforma-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 4px;
}
.plataforma-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 32, 68, 0.12);
  max-width: 560px;
  width: 100%;
}
.plataforma-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 991px) {
  .plataforma-title { font-size: 1.6rem; }
}
@media (max-width: 575px) {
  .plataforma-title { font-size: 1.4rem; }
  .plataforma-image-wrap { max-width: 100%; }
}

/* ===== Minha Conta - Login estilo Appmax ===== */
.account-login-body {
  background: #f7f8fc;
}
.account-login-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
}
.account-login-inner {
  max-width: 1080px;
  width: 100%;
  margin: 3rem auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  overflow: hidden;
}
.account-login-left {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.account-login-logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}
.account-login-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.account-login-title span {
  color: var(--accent-secondary);
}
.account-login-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.account-login-right {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9edf5;
  position: relative;
}
.account-login-card {
  width: 100%;
  max-width: 360px;
}
.account-login-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.account-login-input {
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  border: 1px solid #dee2e6;
  font-size: 0.9rem;
}
.account-login-input:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(26,123,212,0.15);
}
.account-login-btn {
  border-radius: 999px;
  padding: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent-secondary);
  border: none;
}
.account-login-btn:hover {
  background: var(--accent-hover);
}
.account-login-footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* área ilustrativa à direita (sem imagem real) */
.account-login-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
}
.account-login-hero-box {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-hover));
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
@media (max-width: 991px) {
  .account-login-inner {
    margin: 2rem 1rem;
    grid-template-columns: 1fr;
  }
  .account-login-left {
    padding: 2rem 1.75rem 0;
  }
  .account-login-right {
    padding: 2rem 1.75rem 2.5rem;
    border-left: none;
    border-top: 1px solid #f1f3f5;
  }
}

/* ===== Carrinho lateral (drawer) ===== */
.fds-nav-icon.fds-cart-trigger {
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #002051;
  background: #35c4f0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

.cart-sticky-cta {
  display: none !important;
  position: fixed;
  inset-inline: 16px;
  bottom: 18px;
  z-index: 1200;
  max-width: 460px;
  margin-inline: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cart-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cart-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 40px rgba(15,23,42,0.25);
  border: 1px solid rgba(0,48,185,0.12);
  backdrop-filter: blur(10px);
}
.cart-sticky-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.cart-sticky-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
}
.cart-sticky-info {
  font-size: 0.8rem;
  color: #4b5563;
}
.cart-sticky-info strong {
  color: #111827;
}
.cart-sticky-btn {
  border-radius: 999px;
  background: #0030b9;
  border-color: #0030b9;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
}
.cart-sticky-btn:hover {
  background: #0044dd;
  border-color: #0044dd;
  color: #ffffff;
}

/* Mobile: estilo app – barra full width, safe area, toque grande */
@media (max-width: 767px) {
  .cart-sticky-cta {
    inset-inline: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    margin: 0;
    padding: 0 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }
  .cart-sticky-cta.is-visible {
    transform: translateY(0);
  }
  .cart-sticky-inner {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    padding-top: 1.5rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.18), 0 -2px 12px rgba(0,48,185,0.08);
    border: none;
    border-top: 1px solid rgba(0,48,185,0.15);
    background: #ffffff;
    backdrop-filter: none;
  }
  .cart-sticky-inner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: #e5e7eb;
  }
  .cart-sticky-text {
    gap: 0.25rem;
  }
  .cart-sticky-label {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
  }
  .cart-sticky-info {
    font-size: 0.9rem;
    color: #4b5563;
  }
  .cart-sticky-info strong {
    font-size: 1.05rem;
    color: #0030b9;
  }
  .cart-sticky-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0,48,185,0.35);
  }
  .cart-sticky-btn:active {
    transform: scale(0.98);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cart-sticky-cta {
    inset-inline: 20px;
    bottom: 20px;
  }
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  /* acima do header */
  z-index: 7500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  /* acima do header */
  z-index: 7510;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open {
  transform: translateX(0);
}

@keyframes fdsCartIconBump {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-1px) scale(1.12); }
  100% { transform: translateY(0) scale(1); }
}
.fds-cart-trigger.is-bumping i {
  animation: fdsCartIconBump 420ms ease-out;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.cart-drawer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.cart-drawer-title i {
  color: var(--accent);
}
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.cart-drawer-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-drawer-empty-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cart-drawer-empty-icon i {
  font-size: 3.2rem;
  color: #111827;
  opacity: 1;
}
.cart-drawer-empty-actions {
  margin-top: 1.1rem;
}
.cart-drawer-empty-actions .cart-add-btn {
  background: var(--accent);
  color: #ffffff;
}
.cart-drawer-empty-actions .cart-add-btn:hover {
  background: var(--accent-hover);
  color: #ffffff;
}
.cart-drawer-empty p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cart-drawer-items {
  display: none;
}
.cart-drawer-items:not(:empty) {
  display: block;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-thumb--domain {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  color: var(--accent);
  font-size: 1.75rem;
}
.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-all;
  margin-bottom: 0.15rem;
}
.cart-item-tag {
  color: #64748b;
  margin-bottom: 0.25rem;
}
.cart-item-body {
  flex: 1;
  min-width: 0;
}
.cart-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
.cart-item-remove {
  border: 0;
  background: none;
  color: var(--text-muted);
  padding: 0.25rem;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.cart-item-remove:hover {
  color: #dc3545;
  background: rgba(220,53,69,0.08);
}

.cart-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.cart-drawer-total strong {
  color: var(--accent);
  font-size: 1.25rem;
}
.cart-drawer-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.2s;
}
.cart-drawer-checkout-btn:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

/* Botão Adicionar ao carrinho (página do produto) */
.product-license-btn-add {
  width: 100%;
  border-radius: 12px;
}
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-weight: 500;
  background: #0030b9;
  color: #ffffff;
  border: 2px solid #0030b9;
  border-radius: 100px;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-add-to-cart:hover {
  background: #0044dd;
  border-color: #0044dd;
  color: #ffffff !important;
}
/* Página do produto: mesmo padrão da loja (cores primárias do admin) */
.btn-add-to-cart.product-license-btn-add {
  font-weight: 600;
  border-width: 1px;
  border-radius: 12px;
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.25);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-add-to-cart.product-license-btn-add:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb, 46, 147, 238), 0.32);
  transform: translateY(-1px);
}

/* Ícone de carrinho apenas nos cards da Loja de Templates */
.btn-add-to-cart.template-btn-add-cart {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: 0;
  border: none;
  background: transparent;
  justify-content: center;
  gap: 0;
  color: #334155;
}
.btn-add-to-cart.template-btn-add-cart i {
  font-size: 1.1rem;
}
.btn-add-to-cart.template-btn-add-cart:hover {
  background: transparent;
  color: var(--accent) !important;
}
@media (max-width: 767px) {
  /* Loja em formato app: 2 cards por linha no mobile */
  #templatesGrid {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.85rem;
  }
  #templatesGrid > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .template-card-body {
    padding: 0.8rem 0.8rem 0.85rem;
  }
  .template-card-title {
    font-size: 0.95rem;
  }
  .template-btn-primary,
  .template-btn-outline {
    min-height: 38px;
    font-size: 0.82rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .template-card-actions {
    gap: 0.4rem;
    align-items: center;
  }
  .template-btn-primary {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
    border-radius: 10px;
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    padding-left: 0.68rem;
    padding-right: 0.68rem;
    letter-spacing: 0.01em;
  }
  .template-btn-label-full {
    display: none;
  }
  .template-btn-label-mobile {
    display: inline;
  }
  .template-btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
  }
  .template-btn-outline {
    border-radius: 10px;
  }
  .btn-add-to-cart.template-btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: 0;
  }
}


