body[data-theme="joitec"] {
  background:
    radial-gradient(circle at top right, rgba(86, 180, 126, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(94, 158, 214, 0.08), transparent 24%),
    linear-gradient(180deg, var(--color-bg) 0%, #0f1513 100%);
  color: var(--color-text);
  font-family: var(--font-family-sans);
}

body[data-theme="joitec"] a {
  color: inherit;
}

body[data-theme="joitec"] .container {
  width: min(1280px, calc(100% - 48px));
}

body[data-theme="joitec"] .section {
  position: relative;
  padding: 88px 0;
}

body[data-theme="joitec"] .section:first-of-type {
  padding-top: 72px;
}

body[data-theme="joitec"] .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--easing),
    border-color var(--duration-fast) var(--easing),
    box-shadow var(--duration-fast) var(--easing),
    background var(--duration-fast) var(--easing),
    color var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .btn:hover {
  transform: translateY(-1px);
}

body[data-theme="joitec"] .btn--lg {
  min-height: 52px;
  padding: 0 24px;
}

body[data-theme="joitec"] .btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: 0 0 0 1px rgba(86, 180, 126, 0.18), 0 16px 32px rgba(0, 0, 0, 0.18);
}

body[data-theme="joitec"] .btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 0 0 1px rgba(86, 180, 126, 0.2), 0 0 28px var(--color-glow);
}

body[data-theme="joitec"] .btn--outline,
body[data-theme="joitec"] .btn--ghost {
  background: transparent;
  color: var(--color-text);
}

body[data-theme="joitec"] .btn--outline {
  border-color: var(--color-border-strong);
}

body[data-theme="joitec"] .btn--outline:hover {
  border-color: rgba(86, 180, 126, 0.45);
  background: rgba(86, 180, 126, 0.08);
}

body[data-theme="joitec"] .btn--ghost {
  border-color: transparent;
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .btn--ghost:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
}

body[data-theme="joitec"] .company-topbar {
  position: relative;
  z-index: 51;
  background: rgba(9, 13, 12, 0.84);
  border-bottom: 1px solid var(--color-border-soft);
  backdrop-filter: blur(12px);
}

body[data-theme="joitec"] .company-topbar::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(86, 180, 126, 0.65) 50%, transparent 100%);
}

body[data-theme="joitec"] .company-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
}

body[data-theme="joitec"] .company-topbar__label,
body[data-theme="joitec"] .company-topbar__lang,
body[data-theme="joitec"] .company-topbar__empresas {
  color: var(--color-text-soft);
  font-size: 0.8125rem;
  text-decoration: none;
}

body[data-theme="joitec"] .company-topbar__label strong {
  color: var(--color-text);
}

body[data-theme="joitec"] .company-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

body[data-theme="joitec"] .company-topbar__lang,
body[data-theme="joitec"] .company-topbar__empresas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body[data-theme="joitec"] .company-topbar__lang:hover,
body[data-theme="joitec"] .company-topbar__empresas:hover {
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 17, 16, 0.82);
  border-bottom: 1px solid var(--color-border-soft);
  backdrop-filter: blur(14px);
}

body[data-theme="joitec"] .header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

body[data-theme="joitec"] .header__brand,
body[data-theme="joitec"] .header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.94), rgba(15, 21, 19, 0.94));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

body[data-theme="joitec"] .header__brand-logo,
body[data-theme="joitec"] .footer__brand-logo {
  display: block;
  max-height: 38px;
  width: auto;
}

body[data-theme="joitec"] .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-theme="joitec"] .nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-text-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color var(--duration-fast) var(--easing),
    background var(--duration-fast) var(--easing),
    box-shadow var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .nav__link:hover,
body[data-theme="joitec"] .nav__link--active {
  color: var(--color-text);
  background: rgba(86, 180, 126, 0.1);
}

body[data-theme="joitec"] .nav__dropdown {
  position: relative;
}

body[data-theme="joitec"] .nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 20px;
  background: rgba(18, 24, 23, 0.98);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--duration-fast) var(--easing),
    transform var(--duration-fast) var(--easing),
    visibility var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .nav__dropdown:hover .nav__dropdown-menu,
body[data-theme="joitec"] .nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body[data-theme="joitec"] .nav__dropdown-menu--products {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px;
  min-width: 460px;
}

body[data-theme="joitec"] .nav__dropdown-link {
  display: block;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    color var(--duration-fast) var(--easing),
    border-color var(--duration-fast) var(--easing),
    background var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .nav__dropdown-link:hover,
body[data-theme="joitec"] .nav__dropdown-link--active {
  color: var(--color-text);
  border-color: rgba(86, 180, 126, 0.28);
  background: rgba(86, 180, 126, 0.08);
}

body[data-theme="joitec"] .header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

body[data-theme="joitec"] .header__cta,
body[data-theme="joitec"] .header__portal {
  white-space: nowrap;
}

body[data-theme="joitec"] .header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

body[data-theme="joitec"] .header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-soft);
  text-decoration: none;
  transition:
    color var(--duration-fast) var(--easing),
    border-color var(--duration-fast) var(--easing),
    background var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .header__social-link:hover {
  color: var(--color-text);
  border-color: rgba(86, 180, 126, 0.35);
  background: rgba(86, 180, 126, 0.08);
}

body[data-theme="joitec"] .menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text);
}

body[data-theme="joitec"] .menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

body[data-theme="joitec"] .mobile-nav {
  background: rgba(12, 17, 16, 0.98);
  color: var(--color-text);
}

body[data-theme="joitec"] .mobile-nav__brand {
  color: var(--color-text);
  font-weight: 600;
}

body[data-theme="joitec"] .mobile-nav__link,
body[data-theme="joitec"] .mobile-nav__group-title {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .mobile-nav__link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

body[data-theme="joitec"] .mobile-nav__link--active {
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .footer {
  margin-top: 24px;
  padding: 56px 0 26px;
  border-top: 1px solid var(--color-border-soft);
  background: linear-gradient(180deg, rgba(12, 17, 16, 0.98), rgba(8, 11, 10, 0.98));
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
}

body[data-theme="joitec"] .footer__desc,
body[data-theme="joitec"] .footer__meta {
  color: var(--color-text-muted);
  line-height: 1.7;
}

body[data-theme="joitec"] .footer__title {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body[data-theme="joitec"] .footer__link,
body[data-theme="joitec"] .footer__contact-item a,
body[data-theme="joitec"] .footer__whatsapp {
  display: block;
  margin: 0 0 12px;
  color: var(--color-text-soft);
  text-decoration: none;
}

body[data-theme="joitec"] .footer__link:hover,
body[data-theme="joitec"] .footer__contact-item a:hover,
body[data-theme="joitec"] .footer__whatsapp:hover,
body[data-theme="joitec"] .footer__link--active {
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body[data-theme="joitec"] .footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

body[data-theme="joitec"] .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border-soft);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

body[data-theme="joitec"] .joitec-page {
  position: relative;
}

body[data-theme="joitec"] .joitec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-hover);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(86, 180, 126, 0.55);
}

body[data-theme="joitec"] .joitec-hero {
  position: relative;
  padding: 88px 0 48px;
}

body[data-theme="joitec"] .joitec-hero--home {
  padding-top: 104px;
}

body[data-theme="joitec"] .joitec-hero__grid,
body[data-theme="joitec"] .joitec-product-hero,
body[data-theme="joitec"] .joitec-contact-layout,
body[data-theme="joitec"] .joitec-trust-grid {
  display: grid;
  gap: 24px;
}

body[data-theme="joitec"] .joitec-hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
}

body[data-theme="joitec"] .joitec-hero__grid--compact {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

body[data-theme="joitec"] .joitec-hero__grid--single {
  grid-template-columns: 1fr;
}

body[data-theme="joitec"] .joitec-hero__content,
body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-route-card,
body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-feature-card,
body[data-theme="joitec"] .joitec-brand-wall,
body[data-theme="joitec"] .joitec-stats-panel,
body[data-theme="joitec"] .joitec-process-card,
body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-product-card,
body[data-theme="joitec"] .joitec-surface-card,
body[data-theme="joitec"] .joitec-support-toolbar,
body[data-theme="joitec"] .joitec-accordion__item,
body[data-theme="joitec"] .joitec-contact-sector,
body[data-theme="joitec"] .joitec-contact-card,
body[data-theme="joitec"] .joitec-contact-band,
body[data-theme="joitec"] .joitec-whatsapp-band,
body[data-theme="joitec"] .joitec-logo-card {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.96), rgba(16, 22, 20, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

body[data-theme="joitec"] .joitec-hero__content {
  padding: 34px;
}

body[data-theme="joitec"] .joitec-hero__title,
body[data-theme="joitec"] .joitec-section-heading__title,
body[data-theme="joitec"] .joitec-cta-band__title,
body[data-theme="joitec"] .joitec-help-block__title,
body[data-theme="joitec"] .joitec-whatsapp-band__title,
body[data-theme="joitec"] .joitec-contact-card__title,
body[data-theme="joitec"] .joitec-contact-band__title,
body[data-theme="joitec"] .joitec-closing__title {
  margin: 14px 0 0;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

body[data-theme="joitec"] .joitec-hero__title {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

body[data-theme="joitec"] .joitec-section-heading__title,
body[data-theme="joitec"] .joitec-cta-band__title,
body[data-theme="joitec"] .joitec-help-block__title,
body[data-theme="joitec"] .joitec-whatsapp-band__title,
body[data-theme="joitec"] .joitec-contact-card__title,
body[data-theme="joitec"] .joitec-contact-band__title,
body[data-theme="joitec"] .joitec-closing__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

body[data-theme="joitec"] .joitec-hero__text,
body[data-theme="joitec"] .joitec-section-heading__text,
body[data-theme="joitec"] .joitec-route-card__text,
body[data-theme="joitec"] .joitec-category-card__text,
body[data-theme="joitec"] .joitec-feature-card__text,
body[data-theme="joitec"] .joitec-help-block__text,
body[data-theme="joitec"] .joitec-cta-band__text,
body[data-theme="joitec"] .joitec-product-card__text,
body[data-theme="joitec"] .joitec-surface-card__text,
body[data-theme="joitec"] .joitec-contact-sector__text,
body[data-theme="joitec"] .joitec-contact-card__text,
body[data-theme="joitec"] .joitec-contact-band__text,
body[data-theme="joitec"] .joitec-whatsapp-band__text,
body[data-theme="joitec"] .joitec-closing__text,
body[data-theme="joitec"] .joitec-breadcrumb {
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-hero__actions,
body[data-theme="joitec"] .joitec-cta-band__actions,
body[data-theme="joitec"] .joitec-help-block__actions,
body[data-theme="joitec"] .joitec-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

body[data-theme="joitec"] .joitec-hero__visual-card {
  overflow: hidden;
  padding: 18px;
}

body[data-theme="joitec"] .joitec-hero__visual-card--compact {
  padding: 18px;
}

body[data-theme="joitec"] .joitec-hero__visual-card img,
body[data-theme="joitec"] .joitec-category-card__media img,
body[data-theme="joitec"] .joitec-product-card__media img,
body[data-theme="joitec"] .joitec-product-hero__main img,
body[data-theme="joitec"] .joitec-product-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-theme="joitec"] .joitec-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body[data-theme="joitec"] .joitec-stat-tile {
  padding: 16px;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-theme="joitec"] .joitec-stat-tile span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body[data-theme="joitec"] .joitec-stat-tile strong {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.4;
}

body[data-theme="joitec"] .joitec-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

body[data-theme="joitec"] .joitec-page--marcas .joitec-section-heading__text {
  line-height: 2;
}

body[data-theme="joitec"] .joitec-page--marcas .joitec-surface-card__title,
body[data-theme="joitec"] .joitec-page--marcas .joitec-route-card__title {
  margin-bottom: 16px;
  line-height: 1.32;
}

body[data-theme="joitec"] .joitec-page--marcas .joitec-surface-card__text,
body[data-theme="joitec"] .joitec-page--marcas .joitec-route-card__text,
body[data-theme="joitec"] .joitec-page--marcas .joitec-help-block__text {
  line-height: 1.95;
}

body[data-theme="joitec"] .joitec-section-heading--compact {
  margin-bottom: 0;
}

body[data-theme="joitec"] .joitec-route-grid,
body[data-theme="joitec"] .joitec-feature-grid,
body[data-theme="joitec"] .joitec-process-grid,
body[data-theme="joitec"] .joitec-category-grid,
body[data-theme="joitec"] .joitec-product-grid,
body[data-theme="joitec"] .joitec-logo-grid,
body[data-theme="joitec"] .joitec-contact-sector-grid,
body[data-theme="joitec"] .joitec-detail-grid {
  display: grid;
  gap: 24px;
}

body[data-theme="joitec"] .joitec-home-search {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 38px;
  padding: 28px;
  border: 1px solid rgba(169, 183, 227, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(39, 55, 200, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.92));
  box-shadow: 0 22px 48px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-home-search--compact {
  grid-template-columns: 1fr;
}

body[data-theme="joitec"] .joitec-home-search__copy {
  display: grid;
  gap: 14px;
}

body[data-theme="joitec"] .joitec-home-search__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body[data-theme="joitec"] .joitec-home-search__text {
  margin: 0;
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-home-search__form {
  position: relative;
  display: grid;
  gap: 12px;
}

body[data-theme="joitec"] .joitec-home-search__field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(169, 183, 227, 0.54);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 34px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-home-search__field:focus-within {
  border-color: rgba(39, 55, 200, 0.42);
  box-shadow:
    0 0 0 4px rgba(39, 55, 200, 0.08),
    0 18px 34px rgba(17, 24, 79, 0.1);
}

body[data-theme="joitec"] .joitec-home-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39, 55, 200, 0.12), rgba(39, 55, 200, 0.04));
  color: var(--color-primary);
}

body[data-theme="joitec"] .joitec-home-search__input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
}

body[data-theme="joitec"] .joitec-home-search__input::placeholder {
  color: var(--color-text-muted);
}

body[data-theme="joitec"] .joitec-home-search__submit {
  min-width: 168px;
  padding-inline: 28px;
  border-radius: 14px;
  box-shadow:
    0 16px 30px rgba(39, 55, 200, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body[data-theme="joitec"] .joitec-home-search__assist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 24px;
}

body[data-theme="joitec"] .joitec-home-search__hint,
body[data-theme="joitec"] .joitec-home-search__status {
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

body[data-theme="joitec"] .joitec-home-search__status {
  margin-left: auto;
  text-align: right;
}

body[data-theme="joitec"] .joitec-home-search__results {
  display: grid;
  gap: 10px;
}

body[data-theme="joitec"] .joitec-home-search__results[hidden] {
  display: none;
}

body[data-theme="joitec"] .joitec-home-search__result {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(169, 183, 227, 0.4);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  text-decoration: none;
  animation: joitecSearchResultIn 520ms var(--ease-standard) both;
  animation-delay: var(--search-result-delay, 0ms);
  transition:
    transform var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .joitec-home-search__result--loading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

body[data-theme="joitec"] .joitec-home-search__result--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  animation: joitecCardSheen 1.15s var(--ease-standard) infinite;
}

body[data-theme="joitec"] .joitec-home-search__skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(219, 226, 245, 0.92), rgba(239, 243, 255, 0.98));
}

body[data-theme="joitec"] .joitec-home-search__skeleton--title {
  width: min(72%, 280px);
  height: 18px;
}

body[data-theme="joitec"] .joitec-home-search__skeleton--text {
  width: 100%;
  height: 12px;
}

body[data-theme="joitec"] .joitec-home-search__skeleton--meta {
  width: min(34%, 132px);
  height: 11px;
}

body[data-theme="joitec"] .joitec-home-search__result:hover,
body[data-theme="joitec"] .joitec-home-search__result:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(39, 55, 200, 0.3);
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(39, 55, 200, 0.08);
}

body[data-theme="joitec"] .joitec-home-search__result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body[data-theme="joitec"] .joitec-home-search__result-title {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.35;
}

body[data-theme="joitec"] .joitec-home-search__result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(39, 55, 200, 0.08);
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-theme="joitec"] .joitec-home-search__result-summary {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

body[data-theme="joitec"] .joitec-home-search__result-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-home-search__empty {
  padding: 16px 18px;
  border: 1px dashed rgba(169, 183, 227, 0.52);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-route-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body[data-theme="joitec"] .joitec-route-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-route-grid--triple,
body[data-theme="joitec"] .joitec-feature-grid,
body[data-theme="joitec"] .joitec-process-grid,
body[data-theme="joitec"] .joitec-contact-sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-category-grid,
body[data-theme="joitec"] .joitec-product-grid,
body[data-theme="joitec"] .joitec-logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-route-card,
body[data-theme="joitec"] .joitec-feature-card,
body[data-theme="joitec"] .joitec-process-card,
body[data-theme="joitec"] .joitec-contact-sector,
body[data-theme="joitec"] .joitec-logo-card {
  padding: 24px;
}

body[data-theme="joitec"] .joitec-route-card,
body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-product-card,
body[data-theme="joitec"] .joitec-logo-card {
  transition:
    transform 220ms var(--easing),
    border-color 220ms var(--easing),
    box-shadow 220ms var(--easing);
}

body[data-theme="joitec"] .joitec-route-card:hover,
body[data-theme="joitec"] .joitec-category-card:hover,
body[data-theme="joitec"] .joitec-product-card:hover,
body[data-theme="joitec"] .joitec-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(86, 180, 126, 0.35);
  box-shadow: 0 0 0 1px rgba(86, 180, 126, 0.14), 0 0 28px var(--color-glow);
}

body[data-theme="joitec"] .joitec-route-card {
  display: block;
  min-height: 100%;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

body[data-theme="joitec"] .joitec-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.78) 34%, transparent 64%);
  transform: translateX(-135%);
  opacity: 0;
  pointer-events: none;
}

body[data-theme="joitec"] .joitec-route-card > * {
  position: relative;
  z-index: 1;
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible::before {
  opacity: 1;
  animation: joitecCardSheen 960ms var(--ease-standard) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__eyebrow,
body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__title,
body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__text,
body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__cta {
  opacity: 0;
  transform: translateY(12px);
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__eyebrow,
body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__title,
body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__text,
body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__cta {
  animation: joitecCardContentIn 560ms var(--ease-standard) both;
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__eyebrow {
  animation-delay: calc(var(--reveal-delay, 0ms) + 80ms);
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__title {
  animation-delay: calc(var(--reveal-delay, 0ms) + 150ms);
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__text {
  animation-delay: calc(var(--reveal-delay, 0ms) + 230ms);
}

body[data-theme="joitec"] .joitec-route-card.fade-in--visible .joitec-route-card__cta {
  animation-delay: calc(var(--reveal-delay, 0ms) + 300ms);
}

body[data-theme="joitec"] .joitec-route-card__eyebrow,
body[data-theme="joitec"] .joitec-product-card__badge,
body[data-theme="joitec"] .joitec-category-card__tag,
body[data-theme="joitec"] .joitec-product-code,
body[data-theme="joitec"] .joitec-accordion__tag,
body[data-theme="joitec"] .joitec-contact-sector__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(86, 180, 126, 0.18);
  border-radius: 999px;
  background: rgba(86, 180, 126, 0.1);
  color: var(--color-primary-hover);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body[data-theme="joitec"] .joitec-route-card__title,
body[data-theme="joitec"] .joitec-category-card__title,
body[data-theme="joitec"] .joitec-feature-card__title,
body[data-theme="joitec"] .joitec-process-card__title,
body[data-theme="joitec"] .joitec-product-card__title,
body[data-theme="joitec"] .joitec-surface-card__title,
body[data-theme="joitec"] .joitec-contact-sector__title,
body[data-theme="joitec"] .joitec-logo-card span,
body[data-theme="joitec"] .joitec-checklist-card__title {
  margin: 14px 0 10px;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

body[data-theme="joitec"] .joitec-route-card__cta,
body[data-theme="joitec"] .joitec-category-card__cta,
body[data-theme="joitec"] .joitec-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-primary-hover);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

body[data-theme="joitec"] .joitec-route-card__cta::after,
body[data-theme="joitec"] .joitec-category-card__cta::after,
body[data-theme="joitec"] .joitec-product-card__cta::after {
  content: "->";
}

body[data-theme="joitec"] .joitec-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

body[data-theme="joitec"] .joitec-shortcuts--hero {
  margin-top: 24px;
}

body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-product-card {
  overflow: hidden;
}

body[data-theme="joitec"] .joitec-category-card__media,
body[data-theme="joitec"] .joitec-product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-soft);
  background:
    radial-gradient(circle at top right, rgba(86, 180, 126, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(26, 35, 32, 0.96), rgba(18, 24, 23, 0.96));
}

body[data-theme="joitec"] .joitec-category-card__media img,
body[data-theme="joitec"] .joitec-product-card__media img,
body[data-theme="joitec"] .joitec-product-hero__main img {
  height: 100%;
}

body[data-theme="joitec"] .joitec-hero__visual-card img {
  min-height: 420px;
  border-radius: 16px;
}

body[data-theme="joitec"] .joitec-category-card__body,
body[data-theme="joitec"] .joitec-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

body[data-theme="joitec"] .joitec-category-card__chips,
body[data-theme="joitec"] .joitec-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-theme="joitec"] .joitec-category-card__chips span,
body[data-theme="joitec"] .joitec-shortcut-chip,
body[data-theme="joitec"] .joitec-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-soft);
  font-size: 0.8125rem;
  text-decoration: none;
}

body[data-theme="joitec"] .joitec-shortcut-chip--accent {
  border-color: rgba(86, 180, 126, 0.28);
  background: rgba(86, 180, 126, 0.12);
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .joitec-split-panel,
body[data-theme="joitec"] .joitec-flow-card,
body[data-theme="joitec"] .joitec-mini-card {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.96), rgba(16, 22, 20, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

body[data-theme="joitec"] .joitec-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  overflow: hidden;
}

body[data-theme="joitec"] .joitec-split-panel--catalog {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

body[data-theme="joitec"] .joitec-split-panel__body {
  padding: 32px;
}

body[data-theme="joitec"] .joitec-split-panel__title,
body[data-theme="joitec"] .joitec-flow-card__title,
body[data-theme="joitec"] .joitec-mini-card__title {
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

body[data-theme="joitec"] .joitec-split-panel__text,
body[data-theme="joitec"] .joitec-flow-card__text,
body[data-theme="joitec"] .joitec-mini-card__text,
body[data-theme="joitec"] .joitec-flow-card__steps {
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-split-panel__text {
  margin-top: 16px;
}

body[data-theme="joitec"] .joitec-split-panel__media {
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(86, 180, 126, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(26, 35, 32, 0.96), rgba(18, 24, 23, 0.96));
}

body[data-theme="joitec"] .joitec-split-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

body[data-theme="joitec"] .joitec-flow-grid,
body[data-theme="joitec"] .joitec-proof-grid,
body[data-theme="joitec"] .joitec-mini-grid {
  display: grid;
  gap: 24px;
}

body[data-theme="joitec"] .joitec-flow-grid,
body[data-theme="joitec"] .joitec-proof-grid,
body[data-theme="joitec"] .joitec-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-flow-card,
body[data-theme="joitec"] .joitec-mini-card {
  padding: 24px;
}

body[data-theme="joitec"] .joitec-flow-card__steps {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-soft);
  color: var(--color-primary-hover);
  font-weight: 600;
}

body[data-theme="joitec"] .joitec-mini-card__title {
  font-size: 1.1rem;
}

body[data-theme="joitec"] .joitec-mini-card__text {
  margin-top: 10px;
}

body[data-theme="joitec"] .joitec-feature-card__index,
body[data-theme="joitec"] .joitec-process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-active) 100%);
  color: var(--color-text-inverse);
  font-size: 1rem;
  font-weight: 700;
}

body[data-theme="joitec"] .joitec-trust-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

body[data-theme="joitec"] .joitec-brand-wall,
body[data-theme="joitec"] .joitec-stats-panel,
body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-support-toolbar,
body[data-theme="joitec"] .joitec-whatsapp-band,
body[data-theme="joitec"] .joitec-contact-band {
  padding: 28px;
}

body[data-theme="joitec"] .joitec-brand-wall__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body[data-theme="joitec"] .joitec-brand-pill,
body[data-theme="joitec"] .joitec-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text);
  font-weight: 600;
}

body[data-theme="joitec"] .joitec-stats-panel {
  display: grid;
  gap: 16px;
}

body[data-theme="joitec"] .joitec-stat-card {
  padding: 20px;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-theme="joitec"] .joitec-stat-card strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

body[data-theme="joitec"] .joitec-stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-process-shell {
  position: relative;
}

body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-whatsapp-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 24px;
}

body[data-theme="joitec"] .joitec-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body[data-theme="joitec"] .joitec-breadcrumb {
  display: inline-flex;
  margin-bottom: 16px;
  text-decoration: none;
}

body[data-theme="joitec"] .joitec-breadcrumb:hover {
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .joitec-product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

body[data-theme="joitec"] .joitec-product-hero__media,
body[data-theme="joitec"] .joitec-product-hero__content {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.96), rgba(16, 22, 20, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

body[data-theme="joitec"] .joitec-product-hero__media {
  padding: 20px;
}

body[data-theme="joitec"] .joitec-product-hero__content {
  padding: 32px;
}

body[data-theme="joitec"] .joitec-product-hero__main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(86, 180, 126, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(26, 35, 32, 0.96), rgba(18, 24, 23, 0.96));
}

body[data-theme="joitec"] .joitec-product-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

body[data-theme="joitec"] .joitec-product-hero__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-theme="joitec"] .joitec-product-code-row {
  margin-top: 20px;
}

body[data-theme="joitec"] .joitec-spec-list {
  display: grid;
  gap: 12px;
}

body[data-theme="joitec"] .joitec-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.96), rgba(16, 22, 20, 0.98));
}

body[data-theme="joitec"] .joitec-spec-row span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body[data-theme="joitec"] .joitec-spec-row strong {
  color: var(--color-text);
  font-size: 0.975rem;
}

body[data-theme="joitec"] .joitec-surface-card {
  padding: 26px;
}

body[data-theme="joitec"] .joitec-surface-card__eyebrow {
  color: var(--color-primary-hover);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

body[data-theme="joitec"] .joitec-checklist li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-checklist li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(86, 180, 126, 0.35);
}

body[data-theme="joitec"] .joitec-support-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

body[data-theme="joitec"] .joitec-search-shell {
  display: grid;
  gap: 8px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-theme="joitec"] .joitec-search-shell span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-search-shell strong {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

body[data-theme="joitec"] .joitec-accordion {
  display: grid;
  gap: 14px;
}

body[data-theme="joitec"] .joitec-accordion__item {
  overflow: hidden;
}

body[data-theme="joitec"] .joitec-accordion__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

body[data-theme="joitec"] .joitec-accordion__summary::-webkit-details-marker {
  display: none;
}

body[data-theme="joitec"] .joitec-accordion__summary strong {
  flex: 1;
  color: var(--color-text);
  font-size: 1rem;
}

body[data-theme="joitec"] .joitec-accordion__content {
  padding: 0 24px 24px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

body[data-theme="joitec"] .joitec-contact-closing {
  display: grid;
  gap: 44px;
}

body[data-theme="joitec"] .joitec-page--contato .joitec-hero__content {
  max-width: 960px;
}

body[data-theme="joitec"] .joitec-page--contato .joitec-hero__title {
  max-width: 18ch;
}

body[data-theme="joitec"] .joitec-page--contato > .section:first-of-type {
  padding-bottom: 40px;
}

body[data-theme="joitec"] .joitec-page--contato > .section:last-of-type {
  padding-top: 28px;
}

body[data-theme="joitec"] .joitec-contact-map {
  overflow: hidden;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  box-shadow: 0 18px 40px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-contact-map__frame {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

body[data-theme="joitec"] .joitec-contact-card,
body[data-theme="joitec"] .joitec-contact-band {
  padding: 28px;
}

body[data-theme="joitec"] .joitec-contact-band__block {
  margin-bottom: 22px;
}

body[data-theme="joitec"] .joitec-contact-band__item {
  padding: 16px 0;
  border-top: 1px solid var(--color-border-soft);
}

body[data-theme="joitec"] .joitec-contact-band__item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

body[data-theme="joitec"] .joitec-contact-band__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-contact-band__item a,
body[data-theme="joitec"] .joitec-contact-band__item strong {
  color: var(--color-text);
  text-decoration: none;
}

body[data-theme="joitec"] .joitec-contact-band__item a:hover {
  color: var(--color-primary-hover);
}

body[data-theme="joitec"] .contact-form,
body[data-theme="joitec"] .contact-form .form-row {
  display: grid;
  gap: 16px;
}

body[data-theme="joitec"] .contact-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-theme="joitec"] .form-group {
  display: grid;
  gap: 8px;
}

body[data-theme="joitec"] .form-label {
  color: var(--color-text-soft);
  font-size: 0.875rem;
  font-weight: 500;
}

body[data-theme="joitec"] .form-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  transition:
    border-color var(--duration-fast) var(--easing),
    box-shadow var(--duration-fast) var(--easing),
    background var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .form-input::placeholder {
  color: var(--color-text-muted);
}

body[data-theme="joitec"] .form-input:focus {
  outline: none;
  border-color: rgba(86, 180, 126, 0.55);
  box-shadow: 0 0 0 4px rgba(86, 180, 126, 0.12);
}

body[data-theme="joitec"] .form-input--textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

body[data-theme="joitec"] .contact-form__submit {
  margin-top: 8px;
}

body[data-theme="joitec"] .joitec-closing,
body[data-theme="joitec"] .joitec-editorial,
body[data-theme="joitec"] .joitec-checklist-card,
body[data-theme="joitec"] .joitec-flow__item {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 28, 26, 0.96), rgba(16, 22, 20, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

body[data-theme="joitec"] .joitec-closing__inner,
body[data-theme="joitec"] .joitec-editorial,
body[data-theme="joitec"] .joitec-checklist-card,
body[data-theme="joitec"] .joitec-flow__item {
  padding: 28px;
}

body[data-theme="joitec"] .joitec-flow {
  display: grid;
  gap: 20px;
}

body[data-theme="joitec"] .joitec-flow__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

body[data-theme="joitec"] .joitec-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-active) 100%);
  color: var(--color-text-inverse);
  font-weight: 700;
}

body[data-theme="joitec"] .joitec-editorial__intro {
  max-width: 760px;
}

body[data-theme="joitec"] .joitec-page-header {
  margin-bottom: 28px;
}

body[data-theme="joitec"] .fade-in {
  animation: joitecFadeIn 420ms var(--easing) both;
}

@keyframes joitecFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes joitecCardContentIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes joitecSearchResultIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@keyframes joitecCardSheen {
  from {
    transform: translateX(-135%);
  }

  to {
    transform: translateX(135%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__eyebrow,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__title,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__text,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__cta,
  body[data-theme="joitec"] .joitec-home-search__result,
  body[data-theme="joitec"] .joitec-home-search__result--loading::after,
  body[data-theme="joitec"] .joitec-route-card.fade-in--visible::before {
    animation: none;
  }

  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__eyebrow,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__title,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__text,
  body[data-theme="joitec"] .joitec-route-card.fade-in .joitec-route-card__cta {
    opacity: 1;
    transform: none;
  }

  body[data-theme="joitec"] .joitec-route-card::before {
    display: none;
  }
}

@media (max-width: 1180px) {
  body[data-theme="joitec"] .header__inner {
    grid-template-columns: auto 1fr;
  }

  body[data-theme="joitec"] .nav,
  body[data-theme="joitec"] .header__portal,
  body[data-theme="joitec"] .header__social {
    display: none;
  }

  body[data-theme="joitec"] .header__actions {
    justify-content: flex-end;
  }

  body[data-theme="joitec"] .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body[data-theme="joitec"] .joitec-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-theme="joitec"] .joitec-flow-grid,
  body[data-theme="joitec"] .joitec-proof-grid,
  body[data-theme="joitec"] .joitec-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-theme="joitec"] .joitec-category-grid,
  body[data-theme="joitec"] .joitec-product-grid,
  body[data-theme="joitec"] .joitec-logo-grid,
  body[data-theme="joitec"] .joitec-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-theme="joitec"] .container {
    width: min(1280px, calc(100% - 32px));
  }

  body[data-theme="joitec"] .section {
    padding: 72px 0;
  }

  body[data-theme="joitec"] .footer__grid,
  body[data-theme="joitec"] .joitec-hero__grid,
  body[data-theme="joitec"] .joitec-hero__grid--compact,
  body[data-theme="joitec"] .joitec-split-panel,
  body[data-theme="joitec"] .joitec-split-panel--catalog,
  body[data-theme="joitec"] .joitec-trust-grid,
  body[data-theme="joitec"] .joitec-product-hero,
  body[data-theme="joitec"] .joitec-contact-layout,
  body[data-theme="joitec"] .joitec-cta-band,
  body[data-theme="joitec"] .joitec-help-block,
  body[data-theme="joitec"] .joitec-whatsapp-band,
  body[data-theme="joitec"] .joitec-support-toolbar,
  body[data-theme="joitec"] .joitec-route-grid,
  body[data-theme="joitec"] .joitec-route-grid--dual,
  body[data-theme="joitec"] .joitec-route-grid--triple,
  body[data-theme="joitec"] .joitec-flow-grid,
  body[data-theme="joitec"] .joitec-proof-grid,
  body[data-theme="joitec"] .joitec-mini-grid,
  body[data-theme="joitec"] .joitec-feature-grid,
  body[data-theme="joitec"] .joitec-process-grid,
  body[data-theme="joitec"] .joitec-contact-sector-grid,
  body[data-theme="joitec"] .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-hero__content,
  body[data-theme="joitec"] .joitec-product-hero__content,
  body[data-theme="joitec"] .joitec-contact-card,
  body[data-theme="joitec"] .joitec-contact-band {
    padding: 24px;
  }

  body[data-theme="joitec"] .joitec-hero__metrics {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-spec-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body[data-theme="joitec"] .company-topbar__inner,
  body[data-theme="joitec"] .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-theme="joitec"] .company-topbar__right {
    width: 100%;
    justify-content: space-between;
  }

  body[data-theme="joitec"] .header__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 76px;
  }

  body[data-theme="joitec"] .header__brand,
  body[data-theme="joitec"] .header__logo {
    max-width: 100%;
    padding: 10px 14px;
  }

  body[data-theme="joitec"] .header__brand-logo,
  body[data-theme="joitec"] .footer__brand-logo {
    max-height: 32px;
  }

  body[data-theme="joitec"] .header__cta {
    display: none;
  }

  body[data-theme="joitec"] .joitec-hero {
    padding: 72px 0 28px;
  }

  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 84px;
  }

  body[data-theme="joitec"] .joitec-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body[data-theme="joitec"] .joitec-section-heading__title,
  body[data-theme="joitec"] .joitec-cta-band__title,
  body[data-theme="joitec"] .joitec-help-block__title,
  body[data-theme="joitec"] .joitec-whatsapp-band__title,
  body[data-theme="joitec"] .joitec-contact-card__title,
  body[data-theme="joitec"] .joitec-contact-band__title,
  body[data-theme="joitec"] .joitec-closing__title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  body[data-theme="joitec"] .joitec-category-grid,
  body[data-theme="joitec"] .joitec-product-grid,
  body[data-theme="joitec"] .joitec-logo-grid,
  body[data-theme="joitec"] .joitec-detail-grid {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-brand-wall,
  body[data-theme="joitec"] .joitec-stats-panel,
  body[data-theme="joitec"] .joitec-cta-band,
  body[data-theme="joitec"] .joitec-help-block,
  body[data-theme="joitec"] .joitec-flow-card,
  body[data-theme="joitec"] .joitec-support-toolbar,
  body[data-theme="joitec"] .joitec-whatsapp-band,
  body[data-theme="joitec"] .joitec-contact-band,
  body[data-theme="joitec"] .joitec-surface-card,
  body[data-theme="joitec"] .joitec-mini-card,
  body[data-theme="joitec"] .joitec-route-card,
  body[data-theme="joitec"] .joitec-feature-card,
  body[data-theme="joitec"] .joitec-process-card,
  body[data-theme="joitec"] .joitec-contact-sector {
    padding: 22px;
  }
}

/* Theme refresh: industrial editorial */
body[data-theme="joitec"] {
  background:
    linear-gradient(135deg, rgba(39, 55, 200, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 26, 114, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f7fc 0%, #edf1f8 100%);
  color: var(--color-text);
}

body[data-theme="joitec"]::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(39, 55, 200, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 55, 200, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  z-index: 0;
}

body[data-theme="joitec"] .company-topbar,
body[data-theme="joitec"] .header {
  background: rgba(247, 249, 253, 0.9);
  border-bottom: 1px solid rgba(173, 185, 225, 0.34);
  backdrop-filter: blur(16px);
}

body[data-theme="joitec"] .company-topbar::before {
  background: linear-gradient(90deg, transparent 0%, rgba(39, 55, 200, 0.75) 50%, transparent 100%);
}

body[data-theme="joitec"] .company-topbar__label,
body[data-theme="joitec"] .company-topbar__lang,
body[data-theme="joitec"] .company-topbar__empresas,
body[data-theme="joitec"] .nav__link,
body[data-theme="joitec"] .mobile-nav__link,
body[data-theme="joitec"] .mobile-nav__group-title {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .company-topbar__label strong,
body[data-theme="joitec"] .nav__link:hover,
body[data-theme="joitec"] .nav__link--active,
body[data-theme="joitec"] .mobile-nav__brand,
body[data-theme="joitec"] .mobile-nav__link--active {
  color: var(--color-text);
}

body[data-theme="joitec"] .header__brand,
body[data-theme="joitec"] .header__logo {
  border: 1px solid rgba(173, 185, 225, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .nav__link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

body[data-theme="joitec"] .nav__link:hover,
body[data-theme="joitec"] .nav__link--active {
  background: rgba(39, 55, 200, 0.1);
}

body[data-theme="joitec"] .nav__dropdown-menu,
body[data-theme="joitec"] .mobile-nav {
  border: 1px solid rgba(173, 185, 225, 0.52);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 60px rgba(17, 24, 79, 0.12);
}

body[data-theme="joitec"] .nav__dropdown-link {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .nav__dropdown-link:hover,
body[data-theme="joitec"] .nav__dropdown-link--active {
  color: var(--color-text);
  border-color: rgba(39, 55, 200, 0.28);
  background: rgba(39, 55, 200, 0.08);
}

body[data-theme="joitec"] .btn {
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body[data-theme="joitec"] .btn--primary {
  background: linear-gradient(135deg, #2737c8 0%, #0f1a72 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(39, 55, 200, 0.2);
}

body[data-theme="joitec"] .btn--primary:hover {
  background: linear-gradient(135deg, #3244df 0%, #2737c8 100%);
  box-shadow: 0 18px 34px rgba(39, 55, 200, 0.26);
}

body[data-theme="joitec"] .btn--outline,
body[data-theme="joitec"] .btn--ghost {
  border-color: rgba(185, 163, 141, 0.82);
  background: rgba(255, 253, 250, 0.72);
  color: var(--color-text);
}

body[data-theme="joitec"] .btn--ghost {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .btn--outline:hover,
body[data-theme="joitec"] .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(39, 55, 200, 0.55);
}

body[data-theme="joitec"] .footer {
  background:
    linear-gradient(135deg, #0b104a 0%, #131a62 100%);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(173, 185, 225, 0.18);
}

body[data-theme="joitec"] .footer__title,
body[data-theme="joitec"] .footer__link:hover,
body[data-theme="joitec"] .footer__contact-item a:hover,
body[data-theme="joitec"] .footer__whatsapp:hover,
body[data-theme="joitec"] .footer__link--active {
  color: #ffffff;
}

body[data-theme="joitec"] .footer__desc,
body[data-theme="joitec"] .footer__meta,
body[data-theme="joitec"] .footer__link,
body[data-theme="joitec"] .footer__contact-item a,
body[data-theme="joitec"] .footer__whatsapp,
body[data-theme="joitec"] .footer__bottom {
  color: rgba(255, 255, 255, 0.74);
}

body[data-theme="joitec"] .joitec-hero {
  padding-top: 96px;
}

body[data-theme="joitec"] .joitec-hero--home {
  padding-top: 122px;
}

body[data-theme="joitec"] .joitec-hero__content,
body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-route-card,
body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-feature-card,
body[data-theme="joitec"] .joitec-brand-wall,
body[data-theme="joitec"] .joitec-stats-panel,
body[data-theme="joitec"] .joitec-process-card,
body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-product-card,
body[data-theme="joitec"] .joitec-surface-card,
body[data-theme="joitec"] .joitec-support-toolbar,
body[data-theme="joitec"] .joitec-accordion__item,
body[data-theme="joitec"] .joitec-contact-sector,
body[data-theme="joitec"] .joitec-contact-card,
body[data-theme="joitec"] .joitec-contact-band,
body[data-theme="joitec"] .joitec-whatsapp-band,
body[data-theme="joitec"] .joitec-logo-card,
body[data-theme="joitec"] .joitec-split-panel,
body[data-theme="joitec"] .joitec-flow-card,
body[data-theme="joitec"] .joitec-mini-card,
body[data-theme="joitec"] .joitec-checklist-card {
  position: relative;
  border: 1px solid rgba(173, 185, 225, 0.48);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.98));
  box-shadow: 0 18px 44px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-hero__content::after,
body[data-theme="joitec"] .joitec-hero__visual-card::after,
body[data-theme="joitec"] .joitec-route-card::after,
body[data-theme="joitec"] .joitec-category-card::after,
body[data-theme="joitec"] .joitec-product-card::after,
body[data-theme="joitec"] .joitec-split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

body[data-theme="joitec"] .joitec-kicker {
  color: var(--color-primary);
}

body[data-theme="joitec"] .joitec-kicker::before {
  background: rgba(39, 55, 200, 0.7);
}

body[data-theme="joitec"] .joitec-hero__title,
body[data-theme="joitec"] .joitec-section-heading__title,
body[data-theme="joitec"] .joitec-cta-band__title,
body[data-theme="joitec"] .joitec-help-block__title,
body[data-theme="joitec"] .joitec-whatsapp-band__title,
body[data-theme="joitec"] .joitec-contact-card__title,
body[data-theme="joitec"] .joitec-contact-band__title,
body[data-theme="joitec"] .joitec-closing__title,
body[data-theme="joitec"] .joitec-split-panel__title {
  color: #18120d;
}

body[data-theme="joitec"] .joitec-hero__title {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  text-transform: uppercase;
  line-height: 0.98;
}

body[data-theme="joitec"] .joitec-hero__text,
body[data-theme="joitec"] .joitec-section-heading__text,
body[data-theme="joitec"] .joitec-route-card__text,
body[data-theme="joitec"] .joitec-category-card__text,
body[data-theme="joitec"] .joitec-feature-card__text,
body[data-theme="joitec"] .joitec-help-block__text,
body[data-theme="joitec"] .joitec-cta-band__text,
body[data-theme="joitec"] .joitec-product-card__text,
body[data-theme="joitec"] .joitec-surface-card__text,
body[data-theme="joitec"] .joitec-contact-sector__text,
body[data-theme="joitec"] .joitec-contact-card__text,
body[data-theme="joitec"] .joitec-contact-band__text,
body[data-theme="joitec"] .joitec-whatsapp-band__text,
body[data-theme="joitec"] .joitec-closing__text,
body[data-theme="joitec"] .joitec-breadcrumb,
body[data-theme="joitec"] .joitec-split-panel__text,
body[data-theme="joitec"] .joitec-flow-card__text,
body[data-theme="joitec"] .joitec-mini-card__text {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-split-panel__media,
body[data-theme="joitec"] .joitec-category-card__media,
body[data-theme="joitec"] .joitec-product-card__media {
  background:
    linear-gradient(135deg, rgba(11, 16, 74, 0.95) 0%, rgba(39, 55, 200, 0.82) 100%);
}

body[data-theme="joitec"] .joitec-hero__visual-card img,
body[data-theme="joitec"] .joitec-split-panel__media img,
body[data-theme="joitec"] .joitec-category-card__media img,
body[data-theme="joitec"] .joitec-product-card__media img,
body[data-theme="joitec"] .joitec-product-hero__main img,
body[data-theme="joitec"] .joitec-product-hero__thumb img {
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

body[data-theme="joitec"] .joitec-hero__metrics {
  margin-top: 22px;
}

body[data-theme="joitec"] .joitec-stat-tile,
body[data-theme="joitec"] .joitec-stat-card {
  border: 1px solid rgba(173, 185, 225, 0.5);
  background: rgba(245, 248, 255, 0.92);
}

body[data-theme="joitec"] .joitec-stat-tile span,
body[data-theme="joitec"] .joitec-stat-card span {
  color: var(--color-text-muted);
}

body[data-theme="joitec"] .joitec-stat-tile strong,
body[data-theme="joitec"] .joitec-stat-card strong,
body[data-theme="joitec"] .joitec-route-card__title,
body[data-theme="joitec"] .joitec-category-card__title,
body[data-theme="joitec"] .joitec-feature-card__title,
body[data-theme="joitec"] .joitec-process-card__title,
body[data-theme="joitec"] .joitec-product-card__title,
body[data-theme="joitec"] .joitec-surface-card__title,
body[data-theme="joitec"] .joitec-contact-sector__title,
body[data-theme="joitec"] .joitec-logo-card span,
body[data-theme="joitec"] .joitec-checklist-card__title,
body[data-theme="joitec"] .joitec-flow-card__title,
body[data-theme="joitec"] .joitec-mini-card__title {
  color: var(--color-text);
}

body[data-theme="joitec"] .joitec-route-card__eyebrow,
body[data-theme="joitec"] .joitec-product-card__badge,
body[data-theme="joitec"] .joitec-category-card__tag,
body[data-theme="joitec"] .joitec-product-code,
body[data-theme="joitec"] .joitec-accordion__tag,
body[data-theme="joitec"] .joitec-contact-sector__label {
  border-color: rgba(39, 55, 200, 0.22);
  background: rgba(39, 55, 200, 0.1);
  color: var(--color-primary-active);
}

body[data-theme="joitec"] .joitec-route-card:hover,
body[data-theme="joitec"] .joitec-category-card:hover,
body[data-theme="joitec"] .joitec-product-card:hover,
body[data-theme="joitec"] .joitec-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 55, 200, 0.44);
  box-shadow: 0 26px 58px rgba(17, 24, 79, 0.12);
}

body[data-theme="joitec"] .joitec-brand-pill,
body[data-theme="joitec"] .joitec-logo-card,
body[data-theme="joitec"] .joitec-category-card__chips span,
body[data-theme="joitec"] .joitec-shortcut-chip,
body[data-theme="joitec"] .joitec-filter-pill {
  border-color: rgba(173, 185, 225, 0.74);
  background: rgba(247, 249, 255, 0.9);
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-shortcut-chip--accent {
  border-color: rgba(39, 55, 200, 0.34);
  background: rgba(39, 55, 200, 0.12);
  color: var(--color-primary-active);
}

body[data-theme="joitec"] .joitec-feature-card__index,
body[data-theme="joitec"] .joitec-process-card__number {
  border-radius: 18px;
  background: linear-gradient(135deg, #2737c8 0%, #0f1a72 100%);
  color: #ffffff;
}

body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-whatsapp-band {
  background: linear-gradient(135deg, #0b104a 0%, #2737c8 100%);
}

body[data-theme="joitec"] .joitec-cta-band .joitec-kicker,
body[data-theme="joitec"] .joitec-help-block .joitec-kicker,
body[data-theme="joitec"] .joitec-whatsapp-band .joitec-kicker {
  color: #bfc8ff;
}

body[data-theme="joitec"] .joitec-cta-band .joitec-kicker::before,
body[data-theme="joitec"] .joitec-help-block .joitec-kicker::before,
body[data-theme="joitec"] .joitec-whatsapp-band .joitec-kicker::before {
  background: rgba(191, 200, 255, 0.75);
}

body[data-theme="joitec"] .joitec-cta-band__title,
body[data-theme="joitec"] .joitec-help-block__title,
body[data-theme="joitec"] .joitec-whatsapp-band__title,
body[data-theme="joitec"] .joitec-cta-band__text,
body[data-theme="joitec"] .joitec-help-block__text,
body[data-theme="joitec"] .joitec-whatsapp-band__text {
  color: #ffffff;
}

body[data-theme="joitec"] .joitec-help-block .btn--ghost,
body[data-theme="joitec"] .joitec-cta-band .btn--ghost,
body[data-theme="joitec"] .joitec-whatsapp-band .btn--ghost,
body[data-theme="joitec"] .joitec-help-block .btn--outline,
body[data-theme="joitec"] .joitec-cta-band .btn--outline,
body[data-theme="joitec"] .joitec-whatsapp-band .btn--outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(191, 200, 255, 0.24);
  color: #ffffff;
}

body[data-theme="joitec"] .joitec-search-shell {
  border: 1px solid rgba(173, 185, 225, 0.5);
  border-radius: 18px;
  background: rgba(247, 249, 255, 0.82);
}

body[data-theme="joitec"] .joitec-flow-card__steps {
  color: var(--color-primary-active);
  border-top-color: rgba(173, 185, 225, 0.55);
}

@media (max-width: 900px) {
  body[data-theme="joitec"] .joitec-hero__title {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  body[data-theme="joitec"] .joitec-hero {
    padding-top: 84px;
  }
}

@media (max-width: 640px) {
  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 96px;
  }

  body[data-theme="joitec"] .btn {
    border-radius: 14px;
  }
}

/* Structural correction: reduce generic cards and normalize header */
body[data-theme="joitec"] .company-topbar {
  background: rgba(245, 247, 252, 0.96);
  border-bottom: 1px solid rgba(173, 185, 225, 0.24);
  backdrop-filter: blur(10px);
}

body[data-theme="joitec"] .company-topbar__inner {
  min-height: 42px;
}

body[data-theme="joitec"] .header {
  background: rgba(252, 253, 255, 0.98);
  border-bottom: 1px solid rgba(173, 185, 225, 0.34);
  box-shadow: 0 8px 18px rgba(17, 24, 79, 0.04);
}

body[data-theme="joitec"] .header__inner {
  min-height: 78px;
  gap: 28px;
}

body[data-theme="joitec"] .header__brand,
body[data-theme="joitec"] .header__logo {
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-theme="joitec"] .header__brand-logo,
body[data-theme="joitec"] .footer__brand-logo {
  max-height: 34px;
}

body[data-theme="joitec"] .header__brand-name {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

body[data-theme="joitec"] .nav {
  justify-content: flex-start;
  gap: 22px;
}

body[data-theme="joitec"] .nav__link {
  position: relative;
  min-height: 46px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

body[data-theme="joitec"] .nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--easing);
}

body[data-theme="joitec"] .nav__link:hover,
body[data-theme="joitec"] .nav__link--active {
  background: transparent;
  color: var(--color-text);
}

body[data-theme="joitec"] .nav__link:hover::after,
body[data-theme="joitec"] .nav__link--active::after {
  transform: scaleX(1);
}

body[data-theme="joitec"] .nav__dropdown-menu,
body[data-theme="joitec"] .mobile-nav {
  border-radius: 10px;
}

body[data-theme="joitec"] .nav__dropdown-link {
  border-radius: 8px;
}

body[data-theme="joitec"] .header__social {
  display: none;
}

body[data-theme="joitec"] .header__actions {
  gap: 16px;
}

body[data-theme="joitec"] .header__cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
}

body[data-theme="joitec"] .header__portal {
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-soft);
  box-shadow: none;
}

body[data-theme="joitec"] .header__portal:hover {
  color: var(--color-text);
  background: transparent;
}

body[data-theme="joitec"] .menu-toggle {
  border-radius: 8px;
}

body[data-theme="joitec"] .btn {
  border-radius: 10px;
}

body[data-theme="joitec"] .btn--primary {
  box-shadow: 0 10px 20px rgba(39, 55, 200, 0.14);
}

body[data-theme="joitec"] .btn--primary:hover {
  box-shadow: 0 14px 24px rgba(39, 55, 200, 0.18);
}

body[data-theme="joitec"] .joitec-hero__content {
  padding: 10px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-theme="joitec"] .joitec-hero__content::after {
  content: none;
}

body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-brand-wall,
body[data-theme="joitec"] .joitec-stats-panel,
body[data-theme="joitec"] .joitec-cta-band,
body[data-theme="joitec"] .joitec-help-block,
body[data-theme="joitec"] .joitec-support-toolbar,
body[data-theme="joitec"] .joitec-contact-card,
body[data-theme="joitec"] .joitec-contact-band,
body[data-theme="joitec"] .joitec-whatsapp-band,
body[data-theme="joitec"] .joitec-split-panel,
body[data-theme="joitec"] .joitec-checklist-card {
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(17, 24, 79, 0.05);
}

body[data-theme="joitec"] .joitec-route-card,
body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-feature-card,
body[data-theme="joitec"] .joitec-process-card,
body[data-theme="joitec"] .joitec-product-card,
body[data-theme="joitec"] .joitec-surface-card,
body[data-theme="joitec"] .joitec-accordion__item,
body[data-theme="joitec"] .joitec-contact-sector,
body[data-theme="joitec"] .joitec-logo-card,
body[data-theme="joitec"] .joitec-flow-card,
body[data-theme="joitec"] .joitec-mini-card {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17, 24, 79, 0.06);
}

body[data-theme="joitec"] .joitec-route-card::after,
body[data-theme="joitec"] .joitec-category-card::after,
body[data-theme="joitec"] .joitec-product-card::after,
body[data-theme="joitec"] .joitec-split-panel::after {
  box-shadow: none;
}

body[data-theme="joitec"] .joitec-hero__visual-card::after {
  content: none;
}

body[data-theme="joitec"] .joitec-route-card:hover,
body[data-theme="joitec"] .joitec-category-card:hover,
body[data-theme="joitec"] .joitec-product-card:hover,
body[data-theme="joitec"] .joitec-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  text-transform: none;
  line-height: 1.02;
}

body[data-theme="joitec"] .joitec-category-card__media,
body[data-theme="joitec"] .joitec-product-card__media,
body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-split-panel__media {
  border-radius: inherit;
}

body[data-theme="joitec"] .joitec-stat-tile,
body[data-theme="joitec"] .joitec-stat-card {
  border-radius: 8px;
}

body[data-theme="joitec"] .joitec-feature-card__index,
body[data-theme="joitec"] .joitec-process-card__number {
  border-radius: 10px;
}

body[data-theme="joitec"] .joitec-search-shell {
  border-radius: 10px;
}

@media (max-width: 1180px) {
  body[data-theme="joitec"] .header__portal {
    display: none;
  }
}

@media (max-width: 900px) {
  body[data-theme="joitec"] .header__inner {
    min-height: 72px;
  }

  body[data-theme="joitec"] .joitec-hero__content {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  body[data-theme="joitec"] .btn {
    border-radius: 8px;
  }

  body[data-theme="joitec"] .header__brand-logo,
  body[data-theme="joitec"] .footer__brand-logo {
    max-height: 30px;
  }

  body[data-theme="joitec"] .header__brand-name {
    font-size: 1.28rem;
  }
}

/* Unified hero system */
body[data-theme="joitec"] .joitec-hero {
  position: relative;
  overflow: clip;
  padding: 108px 0 64px;
  --hero-pointer-x: 64%;
  --hero-pointer-y: 28%;
}

body[data-theme="joitec"] .joitec-hero--home {
  padding-top: 138px;
  padding-bottom: 78px;
}

body[data-theme="joitec"] .joitec-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(39, 55, 200, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(39, 55, 200, 0.04) 100%);
  pointer-events: none;
}

body[data-theme="joitec"] .joitec-hero .container {
  position: relative;
  z-index: 1;
}

body[data-theme="joitec"] .joitec-hero__grid,
body[data-theme="joitec"] .joitec-product-hero {
  align-items: stretch;
  gap: 32px;
}

body[data-theme="joitec"] .joitec-hero__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

body[data-theme="joitec"] .joitec-hero--home .joitec-hero__grid {
  min-height: clamp(620px, calc(100vh - 184px), 760px);
}

body[data-theme="joitec"] .joitec-hero__grid--compact {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

body[data-theme="joitec"] .joitec-hero__content,
body[data-theme="joitec"] .joitec-product-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 100%;
}

body[data-theme="joitec"] .joitec-hero__content {
  max-width: 700px;
}

body[data-theme="joitec"] .joitec-hero--home .joitec-hero__content {
  justify-content: center;
  padding-bottom: 22px;
}

body[data-theme="joitec"] .joitec-hero__content > .joitec-breadcrumb,
body[data-theme="joitec"] .joitec-hero__content > .joitec-kicker,
body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__title,
body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__text,
body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__proofs,
body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__actions,
body[data-theme="joitec"] .joitec-hero__content > .joitec-shortcuts,
body[data-theme="joitec"] .joitec-product-hero__media,
body[data-theme="joitec"] .joitec-product-hero__content > .joitec-breadcrumb,
body[data-theme="joitec"] .joitec-product-hero__content > .joitec-kicker,
body[data-theme="joitec"] .joitec-product-hero__content > .joitec-hero__title,
body[data-theme="joitec"] .joitec-product-hero__content > .joitec-hero__text,
body[data-theme="joitec"] .joitec-product-code-row,
body[data-theme="joitec"] .joitec-product-hero__actions,
body[data-theme="joitec"] .joitec-hero__visual {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms var(--easing),
    transform 620ms var(--easing);
  transition-delay: var(--hero-item-delay, 0ms);
}

body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-breadcrumb,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-kicker,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-hero__title,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-hero__text,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-hero__proofs,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-hero__actions,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__content > .joitec-shortcuts,
body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__visual,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__media,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__content > .joitec-breadcrumb,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__content > .joitec-kicker,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__content > .joitec-hero__title,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__content > .joitec-hero__text,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-code-row,
body[data-theme="joitec"] .joitec-product-hero--ready .joitec-product-hero__actions {
  opacity: 1;
  transform: translateY(0);
}

body[data-theme="joitec"] .joitec-hero__title {
  max-width: 13ch;
  margin-top: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
}

body[data-theme="joitec"] .joitec-hero__text {
  max-width: 60ch;
  margin-top: 18px;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

body[data-theme="joitec"] .joitec-hero__proofs {
  display: grid;
  gap: 12px;
  max-width: 34rem;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body[data-theme="joitec"] .joitec-hero__proofs li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

body[data-theme="joitec"] .joitec-hero__proofs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--color-primary);
}

body[data-theme="joitec"] .joitec-hero--home .joitec-hero__title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

body[data-theme="joitec"] .joitec-hero__actions,
body[data-theme="joitec"] .joitec-product-hero__actions {
  margin-top: 28px;
}

body[data-theme="joitec"] .joitec-shortcuts--hero {
  margin-top: 20px;
}

body[data-theme="joitec"] .joitec-hero__visual,
body[data-theme="joitec"] .joitec-product-hero__media {
  position: relative;
}

body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-product-hero__media {
  min-height: 100%;
}

body[data-theme="joitec"] .joitec-hero__visual-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(135deg, rgba(11, 16, 74, 0.96) 0%, rgba(39, 55, 200, 0.84) 100%);
}

body[data-theme="joitec"] .joitec-hero__visual-card img {
  min-height: 560px;
  animation: joitecHeroFloat 9s ease-in-out infinite;
  will-change: transform;
}

body[data-theme="joitec"] .joitec-hero__caption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, rgba(9, 14, 60, 0.12) 0%, rgba(9, 14, 60, 0.82) 100%);
}

body[data-theme="joitec"] .joitec-hero__caption-label {
  color: rgba(233, 238, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .joitec-hero__caption strong {
  max-width: 26ch;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.45;
}

body[data-theme="joitec"] .joitec-product-hero__main img {
  animation: joitecHeroFloat 10s ease-in-out infinite;
  will-change: transform;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero__content {
  max-width: 640px;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero {
  --joitec-category-hero-bg: none;
  isolation: isolate;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero--category-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 247, 252, 0.92) 0%, rgba(245, 247, 252, 0.78) 38%, rgba(245, 247, 252, 0.5) 100%),
    linear-gradient(135deg, rgba(39, 55, 200, 0.08), rgba(11, 16, 74, 0.16)),
    var(--joitec-category-hero-bg) center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero__content,
body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual {
  position: relative;
  z-index: 2;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category {
  width: min(100%, 440px);
  min-height: auto;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(169, 183, 227, 0.36);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(17, 24, 79, 0.1);
}

body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 420px;
  object-fit: contain;
  border-radius: inherit;
}

body[data-theme="joitec"] .joitec-category-products {
  padding-top: 28px;
  scroll-margin-top: 132px;
}

body[data-theme="joitec"] .joitec-page--category .joitec-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-hero__metrics {
  position: relative;
  z-index: 1;
}

body[data-theme="joitec"] .joitec-hero__metrics .joitec-stat-tile {
  opacity: 0;
  transform: translateY(20px);
  animation: joitecHeroTileIn 620ms var(--easing) forwards;
}

body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__metrics .joitec-stat-tile:nth-child(1) {
  animation-delay: 260ms;
}

body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__metrics .joitec-stat-tile:nth-child(2) {
  animation-delay: 360ms;
}

body[data-theme="joitec"] .joitec-hero--ready .joitec-hero__metrics .joitec-stat-tile:nth-child(3) {
  animation-delay: 460ms;
}

body[data-theme="joitec"] .joitec-hero:not(.joitec-hero--ready) .joitec-hero__metrics .joitec-stat-tile {
  animation: none;
}

body[data-theme="joitec"] .joitec-product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: stretch;
}

body[data-theme="joitec"] .joitec-product-hero__content {
  justify-content: center;
}

body[data-theme="joitec"] .joitec-product-hero__media,
body[data-theme="joitec"] .joitec-product-hero__content {
  border-radius: 12px;
}

body[data-theme="joitec"] .joitec-product-hero__media {
  overflow: hidden;
}

@keyframes joitecHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.03);
  }
}

@keyframes joitecHeroTileIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (prefers-reduced-motion: reduce) {
  body[data-theme="joitec"] .joitec-hero__content > .joitec-breadcrumb,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-kicker,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__title,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__text,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__proofs,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-hero__actions,
  body[data-theme="joitec"] .joitec-hero__content > .joitec-shortcuts,
  body[data-theme="joitec"] .joitec-product-hero__media,
  body[data-theme="joitec"] .joitec-product-hero__content > .joitec-breadcrumb,
  body[data-theme="joitec"] .joitec-product-hero__content > .joitec-kicker,
  body[data-theme="joitec"] .joitec-product-hero__content > .joitec-hero__title,
  body[data-theme="joitec"] .joitec-product-hero__content > .joitec-hero__text,
  body[data-theme="joitec"] .joitec-product-code-row,
  body[data-theme="joitec"] .joitec-product-hero__actions,
  body[data-theme="joitec"] .joitec-hero__visual,
  body[data-theme="joitec"] .joitec-hero__metrics .joitec-stat-tile {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  body[data-theme="joitec"] .joitec-hero__visual-card img,
  body[data-theme="joitec"] .joitec-product-hero__main img {
    animation: none;
  }
}

@media (max-width: 1200px) {
  body[data-theme="joitec"] .joitec-page--category .joitec-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-theme="joitec"] .joitec-hero {
    padding: 94px 0 52px;
  }

  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 122px;
    padding-bottom: 64px;
  }

  body[data-theme="joitec"] .joitec-hero--home .joitec-hero__grid {
    min-height: 0;
  }

  body[data-theme="joitec"] .joitec-hero__grid,
  body[data-theme="joitec"] .joitec-product-hero {
    gap: 24px;
  }

  body[data-theme="joitec"] .joitec-hero__title {
    max-width: none;
    font-size: clamp(1.9rem, 6vw, 3rem);
  }

  body[data-theme="joitec"] .joitec-hero__visual-card img {
    min-height: 460px;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual {
    justify-content: center;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category {
    width: min(100%, 380px);
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category img {
    min-height: 0;
    max-height: 360px;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-theme="joitec"] .joitec-hero {
    padding: 82px 0 42px;
  }

  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 108px;
    padding-bottom: 52px;
  }

  body[data-theme="joitec"] .joitec-hero__visual-card img {
    min-height: 340px;
  }

  body[data-theme="joitec"] .joitec-hero__metrics {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-hero__title,
  body[data-theme="joitec"] .joitec-hero--home .joitec-hero__title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.06;
  }

  body[data-theme="joitec"] .joitec-hero__text {
    font-size: 0.98rem;
  }

  body[data-theme="joitec"] .joitec-hero--home .joitec-hero__content {
    padding-bottom: 0;
  }

  body[data-theme="joitec"] .joitec-hero__proofs {
    gap: 10px;
    margin-top: 18px;
  }

  body[data-theme="joitec"] .joitec-hero__proofs li {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  body[data-theme="joitec"] .joitec-hero__caption {
    padding: 18px;
  }

  body[data-theme="joitec"] .joitec-hero__caption strong {
    max-width: none;
    font-size: 0.96rem;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category {
    width: 100%;
    border-radius: 18px;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-hero__visual-card--category img {
    max-height: 280px;
  }

  body[data-theme="joitec"] .joitec-category-products {
    padding-top: 20px;
    scroll-margin-top: 108px;
  }

  body[data-theme="joitec"] .joitec-page--category .joitec-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Header premium refresh + hero carousel */
body[data-theme="joitec"] .company-topbar {
  background: linear-gradient(180deg, rgba(243, 246, 255, 0.96) 0%, rgba(240, 244, 255, 0.92) 100%);
  border-bottom: 1px solid rgba(169, 183, 227, 0.46);
  backdrop-filter: blur(16px);
}

body[data-theme="joitec"] .company-topbar::before {
  content: none;
}

body[data-theme="joitec"] .company-topbar__inner {
  min-height: 38px;
}

body[data-theme="joitec"] .company-topbar__label,
body[data-theme="joitec"] .company-topbar__lang,
body[data-theme="joitec"] .company-topbar__empresas {
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(169, 183, 227, 0.46);
  backdrop-filter: blur(18px);
}

body[data-theme="joitec"] .header__inner {
  min-height: 78px;
}

body[data-theme="joitec"] .header__brand-name {
  position: relative;
  padding-bottom: 2px;
}

body[data-theme="joitec"] .header__brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(39, 55, 200, 0.1));
}

body[data-theme="joitec"] .nav {
  gap: 8px;
}

body[data-theme="joitec"] .nav__dropdown {
  isolation: isolate;
}

body[data-theme="joitec"] .nav__link {
  position: relative;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 8px;
  color: var(--color-text-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .nav__link::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(39, 55, 200, 0.05), rgba(39, 55, 200, 0));
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
  z-index: -1;
}

body[data-theme="joitec"] .nav__link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), #6a7cff);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    opacity var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .nav__link:hover,
body[data-theme="joitec"] .nav__link--active,
body[data-theme="joitec"] .nav__dropdown:hover > .nav__link,
body[data-theme="joitec"] .nav__dropdown:focus-within > .nav__link {
  color: var(--color-text);
  background: transparent;
  transform: none;
  box-shadow: none;
}

body[data-theme="joitec"] .nav__link:hover::before,
body[data-theme="joitec"] .nav__link--active::before,
body[data-theme="joitec"] .nav__dropdown:hover > .nav__link::before,
body[data-theme="joitec"] .nav__dropdown:focus-within > .nav__link::before {
  opacity: 1;
  transform: scale(1);
}

body[data-theme="joitec"] .nav__link:hover::after,
body[data-theme="joitec"] .nav__link--active::after,
body[data-theme="joitec"] .nav__dropdown:hover > .nav__link::after,
body[data-theme="joitec"] .nav__dropdown:focus-within > .nav__link::after {
  opacity: 1;
  transform: scaleX(1);
}

body[data-theme="joitec"] .nav__dropdown-menu {
  top: calc(100% + 6px);
  padding: 12px;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(25, 38, 109, 0.12);
}

body[data-theme="joitec"] .nav__dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body[data-theme="joitec"] .nav__dropdown-link {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.5);
  transition:
    transform var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .nav__dropdown-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 55, 200, 0.12), rgba(39, 55, 200, 0));
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .nav__dropdown-link:hover,
body[data-theme="joitec"] .nav__dropdown-link--active {
  transform: translateX(2px);
  border-color: rgba(39, 55, 200, 0.22);
  background: rgba(243, 246, 255, 0.96);
  box-shadow: 0 10px 18px rgba(39, 55, 200, 0.06);
}

body[data-theme="joitec"] .nav__dropdown-link:hover::before,
body[data-theme="joitec"] .nav__dropdown-link--active::before {
  opacity: 1;
}

body[data-theme="joitec"] .header__cta {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(39, 55, 200, 0.2);
}

body[data-theme="joitec"] .header__cta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 420ms var(--ease-standard);
}

body[data-theme="joitec"] .header__cta:hover::after {
  left: 140%;
}

body[data-theme="joitec"] .joitec-hero {
  padding-top: 34px;
}

body[data-theme="joitec"] .joitec-hero--home {
  padding-top: 50px;
  padding-bottom: 58px;
}

body[data-theme="joitec"] .joitec-hero--home .joitec-hero__grid {
  min-height: 0;
  align-items: center;
}

body[data-theme="joitec"] .joitec-hero--home .joitec-hero__content {
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

body[data-theme="joitec"] .joitec-hero__visual {
  padding-top: 0;
}

body[data-theme="joitec"] .joitec-hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(169, 183, 227, 0.34);
  background: #ffffff;
  box-shadow: 0 28px 52px rgba(20, 33, 98, 0.12);
}

body[data-theme="joitec"] .joitec-hero-carousel__viewport {
  position: relative;
  min-height: inherit;
  height: 100%;
  background: #ffffff;
}

body[data-theme="joitec"] .joitec-hero-carousel__slide {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 720ms var(--ease-standard),
    transform 900ms var(--ease-standard);
}

body[data-theme="joitec"] .joitec-hero-carousel__slide--active {
  opacity: 1;
  transform: scale(1);
}

body[data-theme="joitec"] .joitec-hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  background: #ffffff;
  object-fit: cover;
}

body[data-theme="joitec"] .joitec-hero-carousel__controls {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

body[data-theme="joitec"] .joitec-hero-carousel__dots,
body[data-theme="joitec"] .joitec-hero-carousel__arrows {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

body[data-theme="joitec"] .joitec-hero-carousel__dot,
body[data-theme="joitec"] .joitec-hero-carousel__arrow {
  border: 0;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .joitec-hero-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.56);
}

body[data-theme="joitec"] .joitec-hero-carousel__dot.is-active,
body[data-theme="joitec"] .joitec-hero-carousel__dot:hover {
  transform: scale(1.08);
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

body[data-theme="joitec"] .joitec-hero-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(12, 16, 66, 0.74);
  color: #ffffff;
  font-size: 1rem;
  backdrop-filter: blur(14px);
}

body[data-theme="joitec"] .joitec-hero-carousel__arrow:hover {
  transform: translateY(-1px);
  background: rgba(18, 28, 102, 0.88);
  box-shadow: 0 12px 22px rgba(7, 15, 78, 0.14);
}

body[data-theme="joitec"] .joitec-hero__visual-card,
body[data-theme="joitec"] .joitec-hero__caption,
body[data-theme="joitec"] .joitec-hero__caption-label {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

body[data-theme="joitec"] .joitec-hero__visual-card::after {
  content: none;
}

@media (max-width: 900px) {
  body[data-theme="joitec"] .header__inner {
    min-height: 72px;
  }

  body[data-theme="joitec"] .nav {
    gap: 4px;
  }

  body[data-theme="joitec"] .joitec-hero {
    padding-top: 24px;
  }

  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 50px;
    padding-bottom: 44px;
  }

  body[data-theme="joitec"] .joitec-hero-carousel,
  body[data-theme="joitec"] .joitec-hero-carousel__slide img {
    min-height: 420px;
  }

  body[data-theme="joitec"] .joitec-home-search {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  body[data-theme="joitec"] .joitec-home-search__field {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body[data-theme="joitec"] .joitec-home-search__submit {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body[data-theme="joitec"] .company-topbar__inner {
    min-height: 34px;
  }

  body[data-theme="joitec"] .joitec-hero {
    padding-top: 18px;
  }

  body[data-theme="joitec"] .joitec-hero--home {
    padding-top: 50px;
    padding-bottom: 28px;
  }

  body[data-theme="joitec"] .joitec-hero-carousel,
  body[data-theme="joitec"] .joitec-hero-carousel__slide img {
    min-height: 300px;
  }

  body[data-theme="joitec"] .joitec-hero-carousel {
    border-radius: 18px;
  }

  body[data-theme="joitec"] .joitec-hero-carousel__controls {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  body[data-theme="joitec"] .joitec-hero-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  body[data-theme="joitec"] .joitec-home-search {
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 16px;
  }

  body[data-theme="joitec"] .joitec-home-search__field {
    min-height: 0;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  body[data-theme="joitec"] .joitec-home-search__assist {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-theme="joitec"] .joitec-home-search__status {
    text-align: left;
  }

  body[data-theme="joitec"] .joitec-home-search__result-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Home, catalog, and footer refinement pass */
body[data-theme="joitec"] .joitec-page--home .joitec-home-search {
  margin-bottom: 46px;
}

body[data-theme="joitec"] .joitec-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

body[data-theme="joitec"] .joitec-route-card {
  min-height: 100%;
  padding: 30px 28px;
}

body[data-theme="joitec"] .joitec-route-card__title,
body[data-theme="joitec"] .joitec-trust-card__title {
  color: var(--color-text);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}

body[data-theme="joitec"] .joitec-route-card__text,
body[data-theme="joitec"] .joitec-trust-card__text {
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-category-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-category-card,
body[data-theme="joitec"] .joitec-product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.96));
}

body[data-theme="joitec"] .joitec-category-card__media,
body[data-theme="joitec"] .joitec-product-card__media {
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid rgba(169, 183, 227, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

body[data-theme="joitec"] .joitec-category-card__media img,
body[data-theme="joitec"] .joitec-product-card__media img {
  padding: 18px;
  object-fit: contain;
  filter: none !important;
}

body[data-theme="joitec"] .joitec-product-card__meta {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .section--brand-marquee {
  padding-top: 0;
  overflow: hidden;
}

body[data-theme="joitec"] .joitec-brand-carousel {
  --joitec-brand-gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 46px;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(169, 183, 227, 0.32);
  border-bottom: 1px solid rgba(169, 183, 227, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.9));
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

body[data-theme="joitec"] .joitec-brand-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  padding: 0;
  will-change: transform;
  animation: joitecBrandTicker 28s linear infinite;
}

body[data-theme="joitec"] .joitec-brand-carousel__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--joitec-brand-gap);
  padding-right: var(--joitec-brand-gap);
}

body[data-theme="joitec"] .joitec-brand-pill {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(169, 183, 227, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 14px 26px rgba(17, 24, 79, 0.06);
}

body[data-theme="joitec"] .joitec-trust-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body[data-theme="joitec"] .joitec-trust-card {
  padding: 28px;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  box-shadow: 0 18px 40px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-trust-card .joitec-route-card__eyebrow {
  margin-bottom: 16px;
}

body[data-theme="joitec"] .joitec-cta-band--image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b104a 0%, #2737c8 100%);
}

body[data-theme="joitec"] .joitec-cta-band--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 16, 74, 0.82), rgba(39, 55, 200, 0.72)),
    url('/assets/img/joitec-official/institucional-equipe-vendas-oficial.jpg') center/cover no-repeat;
  opacity: 0.2;
}

body[data-theme="joitec"] .joitec-cta-band--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 16, 74, 0.18), rgba(255, 255, 255, 0));
}

body[data-theme="joitec"] .joitec-cta-band--image > * {
  position: relative;
  z-index: 1;
}

body[data-theme="joitec"] .footer {
  padding-top: 72px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at top right, rgba(39, 55, 200, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(11, 16, 18, 0.98), rgba(7, 10, 12, 1));
}

body[data-theme="joitec"] .footer__grid {
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 40px 32px;
}

body[data-theme="joitec"] .footer__brand-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-theme="joitec"] .footer__brand-panel .footer__brand-logo {
  display: block;
  max-height: 58px;
}

body[data-theme="joitec"] .footer__brand-panel .footer__desc {
  max-width: 34ch;
  margin-top: 18px;
}

body[data-theme="joitec"] .footer__column {
  display: grid;
  align-content: start;
  gap: 16px;
}

body[data-theme="joitec"] .footer__links {
  display: grid;
  gap: 12px;
}

body[data-theme="joitec"] .footer__sitemap {
  display: grid;
  gap: 12px;
}

body[data-theme="joitec"] .footer__sitemap-group {
  display: grid;
  gap: 6px;
}

body[data-theme="joitec"] .footer__sitemap-children {
  display: grid;
  gap: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(169, 183, 227, 0.24);
}

body[data-theme="joitec"] .footer__link--child {
  color: rgba(255, 255, 255, 0.72);
}

body[data-theme="joitec"] .footer__social-block {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

body[data-theme="joitec"] .footer__title--social {
  margin-bottom: 0;
}

body[data-theme="joitec"] .footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

body[data-theme="joitec"] .footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(169, 183, 227, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .footer__social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 200, 255, 0.54);
  background: rgba(39, 55, 200, 0.22);
  box-shadow: 0 12px 24px rgba(39, 55, 200, 0.22);
}

body[data-theme="joitec"] .footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

body[data-theme="joitec"] .footer__bottom,
body[data-theme="joitec"] .footer__bottom p {
  color: #ffffff;
}

body[data-theme="joitec"] .footer__bottom p {
  margin: 0;
}

body[data-theme="joitec"] .footer__bottom {
  justify-content: center;
}

body[data-theme="joitec"] .footer__developer-bar {
  margin-top: 28px;
  padding: 18px 0;
  background: #000000;
}

body[data-theme="joitec"] .footer__developer-bar .container {
  display: flex;
  justify-content: center;
}

body[data-theme="joitec"] .footer__developer-link {
  color: #ffffff;
  text-decoration: none;
}

body[data-theme="joitec"] .footer__developer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

body[data-theme="joitec"] .footer__title {
  margin-bottom: 0;
}

body[data-theme="joitec"] .footer__link,
body[data-theme="joitec"] .footer__contact-item a,
body[data-theme="joitec"] .footer__whatsapp {
  margin-bottom: 0;
}

body[data-theme="joitec"] .footer__column--contact {
  gap: 14px;
}

body[data-theme="joitec"] .footer__contact-item {
  margin-bottom: 0;
}

body[data-theme="joitec"] .footer__link--cta {
  margin-top: 8px;
}

body[data-theme="joitec"] .joitec-hero--catalog-shop {
  padding-top: 40px;
  padding-bottom: 18px;
}

body[data-theme="joitec"] .joitec-catalog-hero {
  padding: 34px 38px;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(39, 55, 200, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  box-shadow: 0 22px 48px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-catalog-hero__title {
  margin: 16px 0 0;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body[data-theme="joitec"] .joitec-catalog-hero__text {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--color-text-soft);
  line-height: 1.72;
}

body[data-theme="joitec"] .joitec-catalog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

body[data-theme="joitec"] .joitec-catalog-hero__pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-theme="joitec"] .section--catalog-shop {
  padding-top: 26px;
}

body[data-theme="joitec"] .joitec-catalog-shop {
  display: grid;
  grid-template-areas: "sidebar main";
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body[data-theme="joitec"] .joitec-catalog-shop__main {
  display: grid;
  gap: 24px;
  grid-area: main;
}

body[data-theme="joitec"] .joitec-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: end;
  padding: 28px;
  border: 1px solid rgba(169, 183, 227, 0.42);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow: 0 18px 40px rgba(17, 24, 79, 0.06);
}

body[data-theme="joitec"] .joitec-catalog-toolbar__title {
  margin: 14px 0 0;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

body[data-theme="joitec"] .joitec-catalog-toolbar__text {
  margin: 12px 0 0;
  color: var(--color-text-soft);
}

body[data-theme="joitec"] .joitec-catalog-toolbar__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(169, 183, 227, 0.44);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

body[data-theme="joitec"] .joitec-catalog-toolbar__input {
  min-width: 0;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 0.98rem;
  outline: none;
}

body[data-theme="joitec"] .joitec-product-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="joitec"] .joitec-catalog-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 122px;
  display: grid;
  gap: 18px;
}

body[data-theme="joitec"] .joitec-catalog-sidebar__panel {
  padding: 24px;
  border: 1px solid rgba(169, 183, 227, 0.4);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  box-shadow: 0 18px 40px rgba(17, 24, 79, 0.08);
}

body[data-theme="joitec"] .joitec-catalog-sidebar__title,
body[data-theme="joitec"] .joitec-catalog-empty__title {
  margin: 14px 0 0;
  color: var(--color-text);
  font-family: var(--font-family-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

body[data-theme="joitec"] .joitec-catalog-sidebar__text,
body[data-theme="joitec"] .joitec-catalog-empty__text {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

body[data-theme="joitec"] .joitec-catalog-sidebar__links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

body[data-theme="joitec"] .joitec-catalog-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(169, 183, 227, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text-soft);
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard);
}

body[data-theme="joitec"] .joitec-catalog-sidebar__link strong {
  color: var(--color-text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

body[data-theme="joitec"] .joitec-catalog-sidebar__link:hover,
body[data-theme="joitec"] .joitec-catalog-sidebar__link.is-active {
  transform: translateX(2px);
  border-color: rgba(39, 55, 200, 0.28);
  background: rgba(243, 246, 255, 0.98);
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(39, 55, 200, 0.08);
}

body[data-theme="joitec"] .joitec-catalog-sidebar__panel--contact {
  background:
    radial-gradient(circle at top right, rgba(39, 55, 200, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
}

body[data-theme="joitec"] .joitec-catalog-empty {
  padding: 34px;
  border: 1px solid rgba(169, 183, 227, 0.4);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  box-shadow: 0 18px 40px rgba(17, 24, 79, 0.08);
}

@keyframes joitecBrandTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-theme="joitec"] .joitec-brand-carousel__track {
    animation: none;
  }
}

@media (max-width: 1200px) {
  body[data-theme="joitec"] .joitec-route-grid,
  body[data-theme="joitec"] .joitec-category-grid--featured,
  body[data-theme="joitec"] .joitec-trust-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-theme="joitec"] .joitec-product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body[data-theme="joitec"] .footer__grid,
  body[data-theme="joitec"] .joitec-catalog-shop {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-catalog-shop {
    grid-template-areas:
      "main"
      "sidebar";
  }

  body[data-theme="joitec"] .joitec-catalog-sidebar {
    position: static;
  }

  body[data-theme="joitec"] .joitec-catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body[data-theme="joitec"] .joitec-route-grid,
  body[data-theme="joitec"] .joitec-category-grid--featured,
  body[data-theme="joitec"] .joitec-trust-highlights,
  body[data-theme="joitec"] .joitec-product-grid--catalog {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-route-card,
  body[data-theme="joitec"] .joitec-trust-card,
  body[data-theme="joitec"] .joitec-catalog-hero,
  body[data-theme="joitec"] .joitec-catalog-toolbar,
  body[data-theme="joitec"] .joitec-catalog-sidebar__panel,
  body[data-theme="joitec"] .joitec-catalog-empty,
  body[data-theme="joitec"] .footer__brand-panel {
    padding: 24px 20px;
  }

  body[data-theme="joitec"] .joitec-catalog-toolbar__field {
    grid-template-columns: 1fr;
  }

  body[data-theme="joitec"] .joitec-brand-carousel {
    margin-bottom: 34px;
  }

  body[data-theme="joitec"] .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
