body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
}

a { text-decoration: none; }
a:hover { opacity: 0.85; }

.dr-nav a:hover {
  color: var(--azure-600);
  opacity: 1;
}

/* ── Header ── */
.dr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
}

.dr-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}

.dr-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.dr-header__logo img {
  height: 76px;
  width: auto;
  max-width: min(280px, 46vw);
  object-fit: contain;
}

.dr-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 4px;
}

.dr-header__nav a {
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: var(--navy-700);
  white-space: nowrap;
}

.dr-header__nav-demo {
  display: none;
}

.dr-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dr-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-default);
  border-radius: var(--dr-radius, 4px);
  background: var(--white);
  color: var(--navy-700);
  cursor: pointer;
}

.dr-header__menu-toggle:hover {
  border-color: var(--azure-500);
  color: var(--azure-600);
}

/* ── Hero slider fullscreen ── */
.dr-hero-slider {
  --dr-header-h: 84px;
  position: relative;
  width: 100%;
  height: calc(100svh - var(--dr-header-h));
  min-height: 520px;
  overflow: hidden;
  background: #e9eef5;
}

.dr-hero-slider__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dr-hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.dr-hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy-900);
}

.dr-hero-slide--light { background: linear-gradient(180deg, #edf2f8 0%, #e3ebf4 100%); }
.dr-hero-slide--soft { background: linear-gradient(180deg, #e8f0f8 0%, #dce8f4 100%); }
.dr-hero-slide--cool { background: linear-gradient(180deg, #e2eaf4 0%, #d5e2ef 100%); }

.dr-hero-slide--collage {
  background-color: #0a1424;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dr-hero-slide--collage-dark .dr-hero-slide__scrim {
  background:
    radial-gradient(ellipse 72% 68% at 50% 38%, rgba(8, 14, 28, 0.82) 0%, rgba(8, 14, 28, 0.45) 48%, rgba(8, 14, 28, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.55) 0%, rgba(8, 14, 28, 0.15) 45%, rgba(8, 14, 28, 0.35) 100%);
}

.dr-hero-slide--collage-dark .dr-hero-slide__content h1 {
  color: var(--white);
}

.dr-hero-slide--collage-dark .dr-hero-slide__lead {
  color: rgba(255, 255, 255, 0.86);
}

.dr-hero-slide--collage-dark .dr-hero-ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: var(--white) !important;
}

.dr-hero-slide--collage-dark .dr-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: var(--white) !important;
}

.dr-hero-slide__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 72% at 50% 46%, rgba(226, 234, 244, 0.94) 0%, rgba(226, 234, 244, 0.72) 42%, rgba(226, 234, 244, 0) 72%),
    linear-gradient(180deg, rgba(226, 234, 244, 0.35) 0%, rgba(213, 226, 239, 0.2) 100%);
}

.dr-hero-slide--collage .dr-hero-slide__layout {
  position: relative;
  z-index: 1;
}

.dr-hero-slide--collage .dr-hero-slide__content {
  max-width: 760px;
  text-align: center;
}

.dr-hero-slide--collage .dr-hero-slide__lead {
  margin-left: auto;
  margin-right: auto;
}

.dr-hero-slide--collage .dr-hero-slide__ctas {
  justify-content: center;
}

.dr-hero-slide--overlay {
  background-color: #edf2f8;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dr-hero-slide__scrim--overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.35) 58%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.dr-hero-slide--overlay .dr-hero-slide__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: left;
}

.dr-hero-slide--overlay .dr-hero-slide__content {
  text-align: left;
  max-width: none;
  padding: 40px 0 72px;
}

.dr-hero-slide--overlay .dr-hero-slide__lead {
  margin-left: 0;
  margin-right: 0;
}

.dr-hero-slide--overlay .dr-hero-slide__ctas {
  justify-content: flex-start;
}

.dr-hero-slide--overlay-bg {
  text-align: left;
}

.dr-hero-slide--overlay-bg .dr-hero-slide__layout {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.dr-hero-slide--overlay-bg .dr-hero-slide__content {
  max-width: min(520px, 44vw);
  text-align: left;
  padding: 40px 0 72px;
}

.dr-hero-slide--overlay-bg .dr-hero-slide__lead {
  margin-left: 0;
  margin-right: 0;
}

.dr-hero-slide--overlay-bg .dr-hero-slide__ctas {
  justify-content: flex-start;
}

.dr-hero-slide--overlay-bg .dr-hero-slide__scrim--overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 32%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.12) 62%,
    rgba(255, 255, 255, 0) 78%
  );
}

.dr-hero-slide__foreground {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  height: 100%;
  padding-bottom: 8px;
}

.dr-hero-slide__foreground img {
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 560px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 40px rgba(14, 20, 38, 0.22));
}

.dr-hero-slide__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dr-hero-slide--has-media {
  text-align: left;
}

.dr-hero-slide--has-media .dr-hero-slide__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.dr-hero-slide--has-media .dr-hero-slide__content {
  text-align: left;
  max-width: none;
  padding: 40px 0 72px;
}

.dr-hero-slide--has-media .dr-hero-slide__lead {
  margin-left: 0;
  margin-right: 0;
}

.dr-hero-slide--has-media .dr-hero-slide__ctas {
  justify-content: flex-start;
}

.dr-hero-slide__media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-hero-slide__media img {
  width: 100%;
  max-height: min(62vh, 520px);
  object-fit: contain;
  object-position: center;
}

.dr-hero-slide__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 40px 48px 72px;
}

.dr-hero-slide__content h1 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 18px 0 0;
  color: var(--navy-900);
}

.dr-hero-slide__lead {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 680px;
  margin: 18px auto 0;
}

.dr-hero-slide__ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.dr-hero-ghost {
  background: var(--white) !important;
  border: 1px solid var(--border-default) !important;
  color: var(--navy-700) !important;
}

.dr-hero-ghost:hover {
  border-color: var(--azure-500) !important;
  color: var(--azure-600) !important;
}

.dr-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 72px;
  border: none;
  background: transparent;
  color: rgba(30, 45, 80, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.dr-hero-slider__arrow:hover {
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.35);
}

.dr-hero-slider__arrow--prev { left: 8px; }
.dr-hero-slider__arrow--next { right: 8px; }

.dr-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.dr-hero-slider__dot {
  width: 36px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(30, 45, 80, 0.22);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.dr-hero-slider__dot.is-active {
  background: var(--navy-700);
  width: 48px;
}

.dr-hero-slider__dot:hover {
  background: rgba(30, 45, 80, 0.45);
}

/* ── Seções ── */
.dr-section {
  padding: 80px 0;
}

.dr-section--centered {
  text-align: center;
}

.dr-section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: var(--navy-900);
}

.dr-section--subtle {
  padding: 80px 0;
  background: var(--ink-50);
}

.dr-section--totens {
  padding-top: 0;
  background: var(--white);
}

/* ── Showcase grid (estilo Pudu) ── */
.dr-showcase {
  padding: 72px 0 0;
  background: var(--white);
}

.dr-showcase--cleaning,
.dr-showcase--category {
  padding-top: 0;
  padding-bottom: 72px;
  background: var(--ink-50);
}

.dr-showcase--totens {
  padding-top: 64px;
}

.dr-showcase__subtitle {
  text-align: center;
  max-width: 640px;
  margin: -24px auto 40px;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-showcase--industries {
  padding-top: 64px;
  background: var(--ink-50);
}

.dr-showcase__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 40px;
  color: var(--navy-900);
}

.dr-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--white);
}

.dr-showcase-grid--duo {
  grid-template-columns: repeat(2, 1fr);
}

.dr-showcase-grid--industries {
  grid-template-columns: repeat(6, 1fr);
}

.dr-showcase-grid--products {
  grid-template-columns: repeat(3, 1fr);
}

.dr-showcase-card--product .dr-showcase-card__overlay h3 {
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.25;
  max-width: none;
  padding: 0 8px;
  box-sizing: border-box;
  white-space: nowrap;
}

.dr-showcase-card--product {
  min-height: 360px;
}

.dr-showcase-card {
  position: relative;
  display: block;
  min-height: 400px;
  overflow: hidden;
  text-decoration: none;
  transition: filter 0.35s ease;
}

.dr-showcase-card--lg {
  min-height: 480px;
}

.dr-showcase-card--sm {
  min-height: 300px;
}

.dr-showcase-card:hover {
  filter: brightness(1.04);
  opacity: 1;
}

.dr-showcase-card--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
  .dr-showcase-grid .dr-showcase-card--photo {
    transition:
      background-size 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.35s ease;
  }

  .dr-showcase-grid .dr-showcase-card--photo:hover {
    background-size: 106%;
  }

  .dr-showcase-grid .dr-showcase-card__overlay h3,
  .dr-showcase-grid .dr-showcase-card__link {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dr-showcase-grid .dr-showcase-card:hover .dr-showcase-card__link {
    transform: translateX(4px);
  }

  .dr-showcase-grid [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.55s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .dr-showcase-grid [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

.dr-showcase-card--photo .dr-showcase-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.55) 0%,
    rgba(8, 14, 28, 0.08) 38%,
    rgba(8, 14, 28, 0.2) 100%
  );
}

.dr-showcase-card--photo:hover .dr-showcase-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.62) 0%,
    rgba(8, 14, 28, 0.12) 40%,
    rgba(8, 14, 28, 0.28) 100%
  );
}

.dr-showcase-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 52px 28px 28px;
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.58) 0%,
    rgba(8, 14, 28, 0.12) 42%,
    rgba(8, 14, 28, 0.38) 100%
  );
  transition: background 0.35s ease;
}

.dr-showcase-card:hover .dr-showcase-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.68) 0%,
    rgba(8, 14, 28, 0.18) 45%,
    rgba(8, 14, 28, 0.48) 100%
  );
}

.dr-showcase-card__overlay--bottom {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 28px;
  background: linear-gradient(0deg, rgba(8, 14, 28, 0.75) 0%, rgba(8, 14, 28, 0.05) 55%);
}

.dr-showcase-card__overlay h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  color: var(--white);
  max-width: 320px;
}

.dr-showcase-card__link {
  margin-top: 14px;
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.92);
}

.dr-showcase-card__link:hover {
  color: var(--white);
}

/* Fundos ambientados — substituir por fotos reais depois */
.dr-showcase-card--clean:not(.dr-showcase-card--photo),
.dr-showcase-card--clean-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8eb0c9 0%, #5f849c 42%, #3d5f75 100%);
}

.dr-showcase-card--clean-2:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #9ab5c8 0%, #6a8fa6 42%, #456a82 100%);
}

.dr-showcase-card--clean-3:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7fa8c2 0%, #557f9a 42%, #355d72 100%);
}

.dr-showcase-card--clean-4:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #94b8cc 0%, #648da5 42%, #3f677c 100%);
}

.dr-showcase-card--clean-5:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #86adc4 0%, #5c86a0 42%, #3a6278 100%);
}

.dr-showcase-card--clean-6:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7a9fb8 0%, #4f7890 42%, #2f5568 100%);
}

.dr-showcase-card--delivery:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c4a882 0%, #9a7d5e 42%, #6b5540 100%);
}

.dr-showcase-card--delivery-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #d4b896 0%, #a88868 42%, #7a6048 100%);
}

.dr-showcase-card--delivery-2:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b8a080 0%, #8f7358 42%, #665240 100%);
}

.dr-showcase-card--industrial:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #5a6578 0%, #3a4252 42%, #1e2430 100%);
}

.dr-showcase-card--industrial-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #5f6d82 0%, #3f4a5c 42%, #232a36 100%);
}

.dr-showcase-card--industrial-2:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #556273 0%, #384656 42%, #1f2632 100%);
}

.dr-showcase-card--edu:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8eb8d4 0%, #5d8fad 42%, #3d6a85 100%);
}

.dr-showcase-card--edu-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #96c0d8 0%, #6595b3 42%, #427089 100%);
}

.dr-showcase-card--security:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #4a5f7a 0%, #2e3f58 42%, #182233 100%);
}

.dr-showcase-card--security-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #516680 0%, #34465e 42%, #1c2838 100%);
}

.dr-showcase-card--security-2:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #455a72 0%, #2c3d52 42%, #182030 100%);
}

.dr-showcase-card--security-3:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #3d5268 0%, #273748 42%, #141c28 100%);
}

.dr-showcase-card--lobby:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b8a48e 0%, #8f7a66 42%, #635544 100%);
}

.dr-showcase-card--lobby-1:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c4b09a 0%, #9a846e 42%, #6e5c48 100%);
}

.dr-showcase-card--lobby-2:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b09882 0%, #877058 42%, #5c4c3c 100%);
}

.dr-showcase-card--lobby-3:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c8b4a0 0%, #a08a74 42%, #75624e 100%);
}

.dr-showcase-card--lobby-4:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #d0bca8 0%, #a8947c 42%, #7d6a56 100%);
}

.dr-showcase-card--totem-lg:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #9eb5cc 0%, #6d8da8 42%, #456880 100%);
}

.dr-showcase-card--totem-sm:not(.dr-showcase-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #a8bdd0 0%, #7898b0 42%, #4f7288 100%);
}

.dr-showcase-card--hospitality {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b5a08a 0%, #8a7560 42%, #5e4f40 100%);
}

.dr-showcase-card--retail {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #a8b8c8 0%, #7a8fa3 42%, #526678 100%);
}

.dr-showcase-card--health {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8ec4c0 0%, #5f9994 42%, #3d6f6b 100%);
}

.dr-showcase-card--logistics {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #6a7a90 0%, #465468 42%, #2a3444 100%);
}

.dr-showcase-card--food {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c9a67a 0%, #a07f56 42%, #73593a 100%);
}

.dr-showcase-card--education {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7aa8c8 0%, #4f7f9f 42%, #345d78 100%);
}

/* ── Stats (flat, fundo claro) ── */
.dr-stats-section {
  padding: 80px 0;
  background: var(--white);
}

.dr-stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.dr-stats-layout__media {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
}

.dr-stats-layout__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px 28px;
}

.dr-stats-layout__logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.dr-stats-layout__media .dr-photo {
  min-height: 100%;
}

.dr-stats-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  height: 100%;
}

.dr-stats-band__grid .drstat {
  height: 100%;
  justify-content: center;
}

.dr-stats-section .dr-section__title {
  margin-bottom: 32px;
}

/* ── CTA flat ── */
.dr-cta-band {
  background: var(--azure-500);
  color: var(--white);
  padding: 72px 0;
}

.dr-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.dr-cta-band h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0;
  color: var(--white);
  max-width: 520px;
  line-height: 1.15;
}

.dr-cta-band p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 12px 0 0;
  max-width: 480px;
}

.dr-cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dr-cta-white {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  color: var(--white) !important;
}

.dr-cta-white:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.dr-cta-band .drbtn--deep {
  background: var(--white);
  color: var(--azure-600);
}

.dr-cta-band .drbtn--deep:hover {
  background: var(--ink-50);
}

/* ── Footer claro ── */
.dr-footer {
  background: var(--ink-50);
  color: var(--ink-600);
  padding: 36px 0 24px;
  border-top: 1px solid var(--border-subtle);
}

.dr-footer__main {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) repeat(7, minmax(0, 1fr)) repeat(2, minmax(72px, 0.65fr));
  gap: 16px 14px;
  align-items: start;
}

.dr-footer__brand {
  min-width: 0;
  padding-right: 8px;
}

.dr-footer__col {
  min-width: 0;
}

.dr-footer__logo { height: 34px; }

.dr-footer__tagline {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  color: var(--text-secondary);
}

.dr-footer__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.dr-footer__email {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1.45;
  color: var(--azure-600);
  word-break: break-word;
}

.dr-footer__email:hover {
  color: var(--azure-500);
  opacity: 1;
}

.dr-footer__address {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-tertiary);
}

.dr-footer__social {
  display: flex;
  gap: 6px;
}

.dr-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: var(--dr-radius);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  background: var(--white);
}

.dr-footer__col-title {
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dr-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dr-footer__links a {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.3;
}

.dr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.dr-footer__bottom-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
}

.dr-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dr-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dr-footer__legal a { color: var(--text-tertiary); }

/* ── Páginas legais ── */
.dr-legal {
  padding: 0 0 80px;
  background: var(--ink-50);
}

.dr-legal__inner {
  max-width: 820px;
}

.dr-legal__updated {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.dr-legal__content {
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-legal__content > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.dr-legal__content h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-legal__content h2:first-of-type {
  margin-top: 0;
}

.dr-legal__content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-secondary);
}

.dr-legal__content li {
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 16px;
}

.dr-legal__content a {
  color: var(--azure-600);
}

.dr-legal__content a:hover {
  color: var(--azure-700);
  opacity: 1;
}

@media (max-width: 640px) {
  .dr-legal__content {
    padding: 24px 20px;
  }
}

/* ── Página Sobre (estilo editorial) ── */
.dr-about-hero__media {
  position: relative;
  min-height: clamp(300px, 48vw, 520px);
  background-color: var(--ink-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dr-about-hero__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-900);
  box-shadow: 0 8px 32px rgba(14, 20, 38, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dr-about-hero__play:hover {
  transform: scale(1.05);
  background: var(--white);
}

.dr-about-split {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.dr-about-split__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-about-split__body {
  padding-top: 8px;
  border-top: 1px solid var(--border-default);
}

.dr-about-split__body p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-secondary);
}

.dr-about-split__body p:last-child {
  margin-bottom: 0;
}

.dr-about-editorial {
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--white);
}

.dr-about-presence {
  padding: 0 0 clamp(56px, 8vw, 96px);
  background: var(--white);
}

.dr-about-presence__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin-bottom: 20px;
}

.dr-about-presence__icons img {
  height: clamp(36px, 4vw, 52px);
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
}

.dr-about-presence__pill {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 4vw, 48px);
  background: var(--ink-75);
  border-radius: 999px;
}

.dr-about-presence__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.dr-about-presence__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.dr-about-presence__num--text {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--azure-600);
}

.dr-about-presence__stat strong {
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-about-presence__stat span:last-child {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-tertiary);
}

.dr-about-approach {
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--azure-500) 0%, var(--azure-600) 100%);
  color: var(--white);
}

.dr-about-approach__title {
  margin: 0 0 clamp(28px, 4vw, 48px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--white);
}

.dr-about-approach__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.dr-about-approach__visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--dr-radius, 4px);
  background: rgba(255, 255, 255, 0.08);
}

.dr-about-approach__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dr-about-approach__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dr-about-approach__steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.dr-about-approach__step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 8px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.dr-about-approach__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: var(--weight-bold);
  color: var(--white);
}

.dr-about-approach__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.dr-about-culture {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--white);
}

.dr-about-split--culture {
  align-items: start;
}

.dr-about-culture__mission {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.dr-about-culture__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.dr-about-culture__mission p {
  margin: 0;
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-about-culture__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border-subtle);
}

.dr-about-culture__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 148px;
  padding: 24px 16px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.dr-about-culture__cell:nth-child(4n) {
  border-right: 0;
}

.dr-about-culture__cell:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.dr-about-culture__icon {
  display: flex;
  color: var(--azure-500);
}

.dr-about-culture__label {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.dr-about-brands {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--ink-50);
}

.dr-about-brands__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border-default);
}

.dr-about-brands__card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-about-brands__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-about-brands__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-about-contact {
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 112px);
  background: var(--white);
}

.dr-about-contact__body {
  padding-top: 8px;
  border-top: 1px solid var(--border-default);
}

.dr-about-contact__body > p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.dr-about-contact__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.dr-about-contact__list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.dr-about-contact__list strong {
  display: inline-block;
  min-width: 88px;
  margin-right: 8px;
  font-weight: var(--weight-semibold);
  color: var(--navy-900);
}

.dr-about-contact__list a {
  color: var(--azure-600);
  font-weight: var(--weight-medium);
}

.dr-about-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dr-about-social {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  margin-bottom: 28px;
}

.dr-about-social__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  color: var(--navy-900);
}

.dr-about-social__item:first-child {
  padding-left: 0;
}

.dr-about-social__item + .dr-about-social__item {
  border-left: 2px solid var(--navy-900);
}

.dr-about-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-900);
}

.dr-about-social__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dr-about-social__label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.dr-about-social__handle {
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: var(--navy-900);
}

.dr-about-social__item:hover .dr-about-social__handle {
  color: var(--azure-600);
}

@media (max-width: 1024px) {
  .dr-about-presence__pill {
    border-radius: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-about-approach__panel {
    grid-template-columns: 1fr;
  }

  .dr-about-culture__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-about-culture__cell:nth-child(4n) {
    border-right: 1px solid var(--border-subtle);
  }

  .dr-about-culture__cell:nth-child(2n) {
    border-right: 0;
  }

  .dr-about-culture__cell:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .dr-about-culture__cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .dr-about-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dr-about-split__body,
  .dr-about-contact__body,
  .dr-about-brands__grid {
    padding-top: 16px;
    border-top: 1px solid var(--border-default);
  }

  .dr-about-presence__pill {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .dr-about-brands__grid,
  .dr-about-culture__grid {
    grid-template-columns: 1fr;
  }

  .dr-about-culture__cell {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border-subtle) !important;
  }

  .dr-about-culture__cell:last-child {
    border-bottom: 0 !important;
  }
}

/* ── Página Suporte ── */
.dr-support-hero {
  background: var(--ink-75);
}

.dr-support-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 540px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: clamp(260px, 34vw, 360px);
  padding: clamp(40px, 6vw, 72px) 0;
}

.dr-support-hero__copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.dr-support-hero__copy p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.dr-support-hero__visual {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dr-support-hero__robots {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2px, 1vw, 10px);
  width: 100%;
}

.dr-support-hero__robot {
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.dr-support-hero__robot--sm {
  max-height: clamp(108px, 14vw, 150px);
}

.dr-support-hero__robot--md {
  max-height: clamp(156px, 19vw, 210px);
}

.dr-support-hero__robot--lg {
  max-height: clamp(204px, 25vw, 280px);
}

.dr-support-actions {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--white);
}

.dr-support-actions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dr-support-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  background: var(--ink-50);
  border-radius: var(--dr-radius, 4px);
}

.dr-support-action-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--azure-500);
  background: var(--azure-50);
  border-radius: 12px;
}

.dr-support-action-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-support-action-card p {
  margin: 0 0 20px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-support-action-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--azure-600);
}

.dr-support-action-card__link:hover {
  opacity: 1;
  color: var(--azure-500);
}

.dr-support-care {
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 6vw, 72px);
  background: var(--white);
}

.dr-support-care__intro {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.dr-support-care__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-support-care__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.dr-support-care__intro p {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--text-secondary);
}

.dr-support-care__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--azure-600);
}

.dr-support-care__photo {
  margin: 0 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.dr-support-care__photo img {
  display: block;
  width: 100%;
  max-height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  object-position: center;
}

.dr-support-care__photo--illustration img {
  width: 100%;
  max-height: clamp(200px, 28vw, 320px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.dr-support-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-support-pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.dr-support-pillars__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--azure-500);
  border-radius: 50%;
}

.dr-support-pillars li > span:last-child {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--navy-900);
}

.dr-support-contact {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 112px);
  background: var(--ink-50);
}

.dr-support-contact h2 {
  margin: 0 0 clamp(28px, 4vw, 40px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-support-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.dr-support-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-support-contact-card__icon {
  display: flex;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.dr-support-contact-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-support-contact-card p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-support-contact-card__phone {
  font-size: 16px !important;
  font-weight: var(--weight-semibold);
  color: var(--navy-900) !important;
}

.dr-support-contact-card__detail {
  margin-top: 12px !important;
}

.dr-support-contact-card__detail a {
  color: var(--azure-600);
  font-weight: var(--weight-medium);
}

.dr-support-contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--azure-600);
}

button.dr-support-contact-card__link {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

@media (max-width: 768px) {
  .dr-support-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dr-support-hero__visual {
    order: -1;
  }

  .dr-support-hero__robots {
    gap: 0;
  }

  .dr-support-hero__robot--sm {
    max-height: 96px;
  }

  .dr-support-hero__robot--md {
    max-height: 132px;
  }

  .dr-support-hero__robot--lg {
    max-height: 168px;
  }

  .dr-support-actions__grid,
  .dr-support-contact__grid,
  .dr-support-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .dr-support-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Página Recursos ── */
.dr-resources {
  padding: 0 0 80px;
  background: var(--ink-50);
}

.dr-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dr-resource-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
  scroll-margin-top: 88px;
}

.dr-resource-card h2 {
  margin: 0;
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-resource-card__summary {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-resource-card__list {
  margin: 18px 0 24px;
  padding-left: 20px;
  flex: 1;
}

.dr-resource-card__list li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-resources__help {
  margin-top: 40px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-resources__help h2 {
  margin: 0;
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-resources__help p {
  margin: 10px 0 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-resources__help a {
  color: var(--azure-600);
}

.dr-resources__help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .dr-resources__grid {
    grid-template-columns: 1fr;
  }
}

/* ── WhatsApp flutuante ── */
.dr-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.dr-whatsapp__panel {
  width: min(300px, calc(100vw - 48px));
  padding: 18px 18px 16px;
  border-radius: var(--dr-radius, 4px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 32px rgba(8, 14, 28, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.dr-whatsapp.is-open .dr-whatsapp__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dr-whatsapp__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: var(--dr-radius, 4px);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}

.dr-whatsapp__close:hover {
  background: var(--ink-50);
  color: var(--navy-700);
}

.dr-whatsapp__title {
  margin: 0 28px 6px 0;
  font-size: 15px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-whatsapp__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.dr-whatsapp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--dr-radius, 4px);
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.dr-whatsapp__cta:hover {
  opacity: 1;
  background: #1ebe57;
  color: var(--white);
}

.dr-whatsapp__fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr-whatsapp__fab:hover {
  opacity: 1;
  transform: scale(1.04);
  color: var(--white);
}

.dr-whatsapp.is-open .dr-whatsapp__fab {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

/* ── Responsivo ── */
@media (max-width: 1280px) {
  .dr-footer__main {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dr-footer__brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-right: 0;
    margin-bottom: 4px;
  }

  .dr-footer__tagline {
    max-width: 420px;
  }
}

@media (max-width: 980px) {
  .dr-header__inner {
    gap: 12px;
    height: 72px;
  }

  .dr-header__logo img {
    height: 64px;
    max-width: min(240px, 52vw);
  }

  .dr-header__cta {
    display: none;
  }

  .dr-header__menu-toggle {
    display: inline-flex;
  }

  .dr-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 0 12px;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 12px 32px rgba(14, 20, 38, 0.08);
  }

  .dr-header__nav a {
    padding: 14px var(--container-pad);
    font-size: 16px;
    border-top: 1px solid var(--border-subtle);
  }

  .dr-header__nav-demo {
    display: inline-flex;
    width: calc(100% - (var(--container-pad) * 2));
    margin: 12px var(--container-pad) 4px;
    justify-content: center;
  }

  .dr-header.is-nav-open .dr-header__nav {
    display: flex;
  }

  .dr-header {
    position: sticky;
    --dr-header-h: 72px;
  }

  .dr-header__inner {
    position: relative;
  }

  .dr-hero-slider {
    min-height: calc(100svh - var(--dr-header-h));
    max-height: 900px;
  }

  .dr-hero-slide--collage .dr-hero-slide__content {
    padding: 28px 20px 56px;
  }

  .dr-hero-slide--collage .dr-hero-slide__content h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .dr-hero-slide__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .dr-hero-slide__ctas .drbtn {
    width: 100%;
    justify-content: center;
  }

  .dr-hero-slide__content {
    padding: 32px 24px 64px;
  }

  .dr-hero-slide--has-media .dr-hero-slide__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dr-hero-slide--has-media .dr-hero-slide__content {
    text-align: center;
    padding: 24px 24px 0;
  }

  .dr-hero-slide--has-media .dr-hero-slide__ctas {
    justify-content: center;
  }

  .dr-hero-slide--overlay .dr-hero-slide__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dr-hero-slide--overlay .dr-hero-slide__content {
    text-align: center;
    padding: 24px 24px 0;
  }

  .dr-hero-slide--overlay .dr-hero-slide__ctas {
    justify-content: center;
  }

  .dr-hero-slide--overlay-bg .dr-hero-slide__layout {
    justify-content: center;
  }

  .dr-hero-slide--overlay-bg .dr-hero-slide__content {
    max-width: none;
    text-align: center;
    padding: 24px 24px 0;
  }

  .dr-hero-slide--overlay-bg .dr-hero-slide__ctas {
    justify-content: center;
  }

  .dr-hero-slide--overlay-bg .dr-hero-slide__scrim--overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.82) 42%,
      rgba(255, 255, 255, 0.25) 100%
    );
  }

  .dr-hero-slide__scrim--overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.78) 45%,
      rgba(255, 255, 255, 0.2) 100%
    );
  }

  .dr-hero-slide__foreground img {
    max-height: 240px;
  }

  .dr-hero-slide__media img {
    max-height: 240px;
  }

  .dr-hero-slider__arrow {
    width: 40px;
    height: 56px;
  }

  .dr-hero-slider__arrow--prev { left: 0; }
  .dr-hero-slider__arrow--next { right: 0; }

  .dr-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dr-showcase-grid--duo {
    grid-template-columns: 1fr !important;
  }

  .dr-showcase-grid--industries,
  .dr-showcase-grid--products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dr-showcase-card {
    min-height: 340px;
  }

  .dr-showcase-card--product {
    min-height: 320px;
  }

  .dr-showcase-card--lg {
    min-height: 380px;
  }

  .dr-stats-layout {
    grid-template-columns: 1fr;
  }

  .dr-stats-band__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dr-footer__main {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dr-footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dr-footer__bottom {
    align-items: flex-start;
  }

  .dr-footer__bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dr-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dr-cta-band__actions,
  .dr-about-contact__actions,
  .dr-resources__help-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .dr-cta-band__actions .drbtn,
  .dr-about-contact__actions .drbtn,
  .dr-resources__help-actions .drbtn {
    width: 100%;
    justify-content: center;
  }

  .dr-about-social {
    flex-direction: column;
    gap: 20px;
  }

  .dr-about-social__item {
    padding: 0;
  }

  .dr-about-social__item + .dr-about-social__item {
    border-left: 0;
    padding-top: 20px;
    border-top: 2px solid var(--navy-900);
  }
}

@media (max-width: 600px) {
  .dr-showcase-grid,
  .dr-showcase-grid--industries {
    grid-template-columns: 1fr !important;
  }

  .dr-stats-band__grid {
    grid-template-columns: 1fr !important;
  }

  .dr-footer__main {
    grid-template-columns: 1fr !important;
  }

  .dr-footer__brand {
    grid-column: 1 / -1;
  }

  .dr-footer__bottom-main,
  .dr-footer__bottom-right,
  .dr-footer__legal {
    width: 100%;
  }

  .dr-footer__email {
    font-size: 13px;
  }

  .dr-page-hero {
    padding: 32px 0 24px;
  }

  .dr-page-hero__lead {
    font-size: 16px;
    padding: 0 4px;
  }

  .dr-product-segments {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .dr-product-segments::-webkit-scrollbar {
    display: none;
  }

  .dr-product-segments__link {
    flex: 0 0 auto;
  }

  .dr-about-contact__list li,
  .dr-support-contact-card__detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .dr-about-contact__list strong {
    min-width: 0;
    margin-right: 0;
  }

  .dr-support-contact-card__detail a {
    word-break: break-word;
  }

  .dr-industries-hero {
    padding-top: 28px;
  }

  .dr-modal__panel {
    margin: 12px;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }
}

/* ── Páginas de categoria e produto ── */
.dr-page-hero {
  padding: 48px 0 40px;
  background: var(--white);
  text-align: center;
}

.dr-page-hero--compact {
  padding: 32px 0 8px;
}

.dr-page-hero--category {
  padding-bottom: 28px;
}

.dr-page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-page-hero__lead {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.dr-breadcrumb a {
  color: var(--azure-600);
}

.dr-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.dr-product {
  padding: 24px 0 72px;
  background: var(--white);
}

.dr-product-page .dr-page-hero--compact {
  background: #000000;
  padding-bottom: 0;
  text-align: left;
}

.dr-product-page .dr-breadcrumb {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.5);
}

.dr-product-page .dr-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.dr-product-page .dr-breadcrumb a:hover {
  color: #fff;
}

.dr-product-page .dr-breadcrumb [aria-current="page"] {
  color: #fff;
}

.dr-product-page .dr-product {
  background: #000000;
  padding-top: 12px;
}

.dr-product-page .dr-product__content h1 {
  color: #fff;
}

.dr-product-page .dr-product__inner {
  gap: 56px;
  align-items: center;
}

.dr-product-page .dr-product__summary {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 22px);
}

.dr-product-page .dr-product__description {
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
}

.dr-product-page .dr-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 640px;
}

.dr-product-page .dr-product__tag {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--dr-radius, 4px);
}

.dr-product-card__summary--placeholder {
  min-height: 1.5em;
  margin-top: 8px;
}

.dr-product-card__tags--placeholder {
  min-height: 72px;
  margin-top: 16px;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
  background: var(--ink-50);
}

.dr-product-page .dr-product__summary--placeholder {
  min-height: 1.6em;
}

.dr-product-page .dr-product__description--placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
}

.dr-product-page .dr-product__tags--placeholder {
  min-height: 88px;
  margin-top: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--dr-radius, 4px);
}

.dr-product-page .dr-product__actions {
  margin-top: 28px;
}

.dr-product-page .dr-product__actions .drbtn--secondary {
  --_bg: transparent;
  --_fg: #fff;
  --_bd: rgba(255, 255, 255, 0.32);
}

.dr-product-page .dr-product__actions .drbtn--secondary:hover {
  --_bg: rgba(255, 255, 255, 0.08);
  --_fg: #fff;
  --_bd: rgba(255, 255, 255, 0.6);
}

.dr-product-page .dr-showcase-card--product-detail.dr-showcase-card--photo {
  background: transparent;
}

.dr-product-page .dr-showcase-card--product-detail .dr-showcase-card__overlay {
  background: none;
}

.dr-product-page .dr-product__badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.dr-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.dr-showcase-card--product-detail {
  display: block;
  min-height: 480px;
  pointer-events: none;
}

.dr-showcase-card--product-detail.dr-showcase-card--photo {
  background: #000000;
}

.dr-product__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
}

.dr-showcase-card--product-detail .dr-showcase-card__overlay {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px;
  pointer-events: none;
}

.dr-product__badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(8, 14, 28, 0.55);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dr-product__content h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-900);
}

.dr-product__summary {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy-700);
}

.dr-product__description {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.dr-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dr-product-specs {
  padding: 56px 0 72px;
  background: var(--ink-50);
}

.dr-product-specs h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  text-align: center;
}

.dr-product-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--white);
}

.dr-product-specs__item {
  padding: 28px 24px;
  background: var(--ink-50);
}

.dr-product-specs__item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-product-specs__item p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .dr-product__inner {
    grid-template-columns: 1fr;
  }

  .dr-showcase-card--product-detail {
    min-height: 360px;
  }

  .dr-product-specs__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Ficha técnica de produto ── */
.dr-sheet-stats {
  padding: 0 0 56px;
  background: var(--white);
}

.dr-sheet-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.dr-sheet-section {
  padding: 56px 0;
}

.dr-sheet-pillars {
  background: var(--white);
}

.dr-sheet-specs {
  background: var(--ink-50);
}

.dr-sheet-maintenance {
  background: var(--white);
}

.dr-sheet-applications {
  background: var(--ink-50);
}

.dr-sheet-section__title {
  margin: 8px 0 32px;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-sheet-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--white);
}

.dr-sheet-pillars__item {
  padding: 28px 24px;
  background: var(--ink-50);
}

.dr-sheet-pillars__item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-sheet-pillars__item p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-sheet-exclusive {
  background: var(--navy-900);
  color: var(--white);
}

.dr-sheet-exclusive .dr-sheet-section__title {
  color: var(--white);
}

.dr-sheet-exclusive__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.dr-sheet-exclusive__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.dr-sheet-exclusive__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azure-400);
}

.dr-product-specs--sheet {
  padding-top: 56px;
}

.dr-product-specs__grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

.dr-sheet-specs__groups {
  columns: 2;
  column-gap: 24px;
}

.dr-sheet-specs__group {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.dr-sheet-specs__group h3 {
  margin: 0;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: var(--white);
  background: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.dr-sheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.dr-sheet-table th,
.dr-sheet-table td {
  padding: 12px 20px;
  text-align: left;
  vertical-align: top;
}

.dr-sheet-table th {
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  width: 46%;
}

.dr-sheet-table td {
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}

.dr-sheet-table tbody tr:nth-child(even) {
  background: var(--ink-50);
}

.dr-sheet-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-brand);
  background: var(--white);
  width: auto;
}

.dr-sheet-table--maintenance th:first-child {
  width: 30%;
}

.dr-sheet-applications__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dr-sheet-applications__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--navy-700);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}

.dr-sheet-disclaimer {
  padding: 32px 0 56px;
  background: var(--ink-50);
}

.dr-sheet-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-tertiary);
}

/* ── Landing page de produto ── */
.dr-product-page--landing .dr-product {
  padding-bottom: 64px;
}

.dr-landing-stats {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding-bottom: 48px;
  background: transparent;
}

.dr-landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.dr-landing-stats__card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 48px rgba(14, 20, 38, 0.12);
}

.dr-landing-stats__card .drstat__value {
  font-size: clamp(28px, 3vw, 40px);
}

/* ── Vídeo da landing ── */
.dr-landing-video {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--white);
}

.dr-landing-video .dr-landing-section-head {
  margin-bottom: 32px;
}

.dr-landing-video .dr-sheet-section__title {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.dr-landing-video__lead {
  margin: 14px auto 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-landing-video__frame {
  overflow: hidden;
  border-radius: var(--dr-radius);
  border: 1px solid var(--border-subtle);
  background: #000000;
  box-shadow: 0 24px 64px rgba(14, 20, 38, 0.14);
  aspect-ratio: 16 / 9;
}

.dr-landing-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vídeo split full-width: mídia | texto */
.dr-landing-video-split {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--ink-50);
}

.dr-landing-video-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: clamp(420px, 52vw, 620px);
  align-items: stretch;
}

.dr-landing-video-split__inner:has(.dr-landing-video-split__media.dr-sheet-slot--empty) {
  grid-template-columns: 1fr;
  min-height: 0;
}

.dr-landing-video-split__media.dr-sheet-slot--empty {
  display: none;
}

.dr-landing-video-split__inner:has(.dr-landing-video-split__media.dr-sheet-slot--empty) .dr-landing-video-split__copy {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 24px;
  text-align: center;
}

.dr-landing-video-split__inner:has(.dr-landing-video-split__media.dr-sheet-slot--empty) .dr-landing-video-split__copy .dr-sheet-section__title {
  max-width: none;
}

.dr-landing-video-split--media-only .dr-landing-video-split__inner {
  grid-template-columns: 1fr;
}

.dr-landing-video-split--media-only .dr-landing-video-split__media {
  opacity: 1;
  transform: none;
}

.dr-landing-video-split__media {
  overflow: hidden;
  background: #000000;
  min-height: clamp(420px, 52vw, 620px);
}

.dr-landing-video-split__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vw, 620px);
  object-fit: cover;
}

.dr-landing-video-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vw, 620px);
  object-fit: cover;
}

.dr-landing-video-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--white);
}

.dr-landing-video-split__copy .dr-sheet-section__title {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  max-width: 16ch;
}

.dr-landing-video-split__lead {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 48ch;
}

.dr-landing-story {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--white);
}

.dr-landing-story--has-bg {
  position: relative;
  background-color: var(--white);
  background-image: var(--story-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dr-landing-story--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.62) 45%,
    rgba(255, 255, 255, 0.35) 100%
  );
  pointer-events: none;
}

.dr-landing-story--has-bg > .dr-container {
  position: relative;
  z-index: 1;
}

.dr-landing-story--marketing-layout.dr-landing-story--has-bg::before {
  display: none;
}

.dr-landing-story--marketing-layout {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 0;
}

.dr-landing-story--marketing-layout .dr-landing-story__inner {
  align-items: end;
  min-height: clamp(380px, 44vw, 520px);
}

.dr-landing-story--marketing-layout .dr-landing-story__media--marketing-robot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  overflow: visible;
  border-radius: 0;
  background: none !important;
  box-shadow: none;
}

.dr-landing-story--marketing-layout .dr-landing-story__media:not(.dr-sheet-slot--empty) {
  background: none !important;
  overflow: visible;
  border-radius: 0;
}

.dr-landing-story--marketing-layout .dr-landing-story__media--marketing-robot img {
  display: block;
  width: auto;
  max-width: min(52%, 260px);
  max-height: clamp(300px, 38vw, 420px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 auto;
  border-radius: 0;
}

.dr-landing-story--marketing-layout .dr-landing-story__content {
  align-self: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 20, 38, 0.08);
  border-radius: var(--dr-radius);
  box-shadow: 0 16px 48px rgba(14, 20, 38, 0.1);
}

.dr-landing-story:nth-child(even of .dr-landing-story) {
  background: #000000;
  color: #fff;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-eyebrow {
  color: var(--azure-300);
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__content h2 {
  color: #fff;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__content > p {
  color: rgba(255, 255, 255, 0.78);
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__points li {
  color: rgba(255, 255, 255, 0.92);
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media {
  border: none;
  box-shadow: none;
  background: #000000;
}

.dr-landing-story .dr-landing-story__media:not(.dr-sheet-slot--empty) {
  border: none;
  box-shadow: none;
  background: var(--white);
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media:not(.dr-sheet-slot--empty) {
  background: #000000;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media:hover {
  box-shadow: none;
}

.dr-landing-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.dr-landing-story__inner:has(.dr-landing-story__media.dr-sheet-slot--empty) {
  grid-template-columns: 1fr;
}

.dr-landing-story__media.dr-sheet-slot--empty {
  display: none;
}

.dr-landing-exclusive__inner:has(.dr-landing-exclusive__media.dr-sheet-slot--empty) {
  grid-template-columns: 1fr;
}

.dr-landing-exclusive__media.dr-sheet-slot--empty {
  display: none;
}

.dr-landing-story--reverse .dr-landing-story__inner {
  direction: rtl;
}

.dr-landing-story--reverse .dr-landing-story__inner > * {
  direction: ltr;
}

.dr-landing-story__media {
  margin: 0;
  align-self: start;
  overflow: hidden;
  border-radius: var(--dr-radius);
  border: none;
  background: var(--white);
  box-shadow: none;
  line-height: 0;
  transition: box-shadow 0.45s ease;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media {
  background: #000000;
}

.dr-landing-story__media:hover {
  box-shadow: none;
}

.dr-landing-story__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--dr-radius);
  background: transparent;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dr-landing-story__media video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--dr-radius);
  background: transparent;
  vertical-align: top;
}

.dr-landing-story__media--transparent-scaled {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media--transparent-scaled {
  background: transparent !important;
}

.dr-landing-story__media--transparent-scaled img {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
}

.dr-landing-story:has(.dr-landing-story__media--flush-bottom) {
  padding-bottom: 0;
}

.dr-landing-story__inner:has(.dr-landing-story__media--flush-bottom) {
  align-items: stretch;
}

.dr-landing-story__inner:has(.dr-landing-story__media--flush-bottom) .dr-landing-story__content {
  align-self: center;
}

.dr-landing-story__media--flush-bottom {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -1px;
}

.dr-landing-story--marketing-layout .dr-landing-story__media--marketing-robot:hover img {
  transform: none;
}

.dr-landing-story__media--bellabot-screen {
  background: transparent !important;
  overflow: visible;
  box-shadow: none;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story__media--bellabot-screen {
  background: transparent !important;
}

.dr-bellabot-screen {
  --bellabot-screen-left: 30.42%;
  --bellabot-screen-top: 28.42%;
  --bellabot-screen-width: 39.06%;
  --bellabot-screen-height: 59.08%;
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  line-height: 0;
}

.dr-bellabot-screen__robot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.dr-bellabot-screen__display {
  position: absolute;
  left: var(--bellabot-screen-left);
  top: var(--bellabot-screen-top);
  width: var(--bellabot-screen-width);
  height: var(--bellabot-screen-height);
  z-index: 2;
  overflow: hidden;
  border-radius: 3px;
  background: #000;
}

.dr-bellabot-screen__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.dr-bellabot-screen__slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .dr-bellabot-screen__slide {
    transition: none;
  }

  .dr-landing-story-carousel__slide {
    transition: none;
  }
}

.dr-landing-story__media--bellabot-screen:hover img {
  transform: none;
}

.dr-landing-story__media:hover img {
  transform: scale(1.06);
}

.dr-landing-story-carousel {
  position: relative;
  width: 100%;
}

.dr-landing-story-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--dr-radius);
  background: #000000;
}

.dr-landing-story-carousel__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.dr-landing-story-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.dr-landing-story-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 2px;
}

.dr-landing-story-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story-carousel__dot {
  background: rgba(255, 255, 255, 0.35);
}

.dr-landing-story-carousel__dot.is-active {
  transform: scale(1.2);
  background: var(--dr-accent, #1a6fd4);
}

.dr-landing-story:nth-child(even of .dr-landing-story) .dr-landing-story-carousel__dot.is-active {
  background: #ffffff;
}

.dr-landing-story-carousel__dot:hover {
  transform: scale(1.15);
}

.dr-landing-story__media:has(.dr-landing-story-carousel):hover img {
  transform: none;
}

/* Banner full-width: imagem 100% + textos em cima */
.dr-landing-banner {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.dr-landing-banner__figure {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: clamp(420px, 52vw, 600px);
  overflow: hidden;
  background: #000000;
}

.dr-landing-banner__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vw, 600px);
  object-fit: cover;
  object-position: center;
}

.dr-landing-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  margin: 0;
  background: linear-gradient(
    to top,
    rgba(8, 12, 24, 0.95) 0%,
    rgba(8, 12, 24, 0.62) 42%,
    rgba(8, 12, 24, 0.18) 72%,
    rgba(8, 12, 24, 0.04) 100%
  );
  pointer-events: none;
}

.dr-landing-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 0;
  pointer-events: none;
}

.dr-landing-banner__copy .dr-eyebrow {
  color: var(--azure-300);
}

.dr-landing-banner__copy h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  color: #fff;
  max-width: 14ch;
}

.dr-landing-banner__copy p {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

.dr-landing-banner__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  align-self: end;
}

.dr-landing-banner__points li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
  color: #fff;
  font-weight: var(--weight-medium);
}

.dr-landing-banner__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--azure-400);
}

.dr-landing-story__content h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: var(--navy-900);
}

.dr-landing-story__content > p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 48ch;
}

.dr-landing-story__points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.dr-landing-story__points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy-800);
  font-weight: var(--weight-medium);
}

.dr-landing-story__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--azure-500);
}

.dr-landing-section-head {
  margin-bottom: 36px;
}

.dr-landing-section-head--center {
  text-align: center;
}

.dr-landing-section-head--center .dr-sheet-section__title,
.dr-landing-section-head--center h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}

.dr-landing-pillars {
  padding-top: clamp(64px, 8vw, 96px);
}

.dr-landing-peripherals {
  padding-top: clamp(64px, 8vw, 96px);
}

.dr-landing-peripherals__lead {
  margin: 16px auto 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-landing-peripherals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(36px, 5vw, 52px);
}

.dr-landing-peripherals__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 22px 30px;
  text-align: center;
  background: var(--ink-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius);
}

.dr-landing-peripherals__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0;
}

.dr-landing-peripherals__icon img {
  width: 80px;
  height: 80px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.dr-landing-peripherals__card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-landing-peripherals__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-landing-peripherals__card:not(:has(.dr-landing-peripherals__icon img)) {
  justify-content: flex-start;
  min-height: 168px;
  border-top: 3px solid var(--azure-500);
}

.dr-landing-pillars__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.dr-landing-pillars__card {
  grid-column: span 2;
  padding: 28px 24px;
  background: var(--ink-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius);
}

.dr-landing-pillars__card:nth-child(4),
.dr-landing-pillars__card:nth-child(5) {
  grid-column: span 3;
}

.dr-landing-pillars__card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-landing-pillars__card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-landing-exclusive__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.dr-landing-colors {
  padding: clamp(64px, 8vw, 96px) 0 0;
  background: #fff;
}

.dr-landing-colors__lead {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-landing-colors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 5vw, 56px);
}

.dr-landing-colors__grid:has(.dr-landing-colors__item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.dr-landing-colors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 3vw, 32px) clamp(40px, 5vw, 56px);
  min-height: clamp(360px, 42vw, 520px);
}

.dr-landing-colors__name {
  margin: 0 0 clamp(24px, 3vw, 36px);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
}

.dr-landing-colors__media {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.dr-landing-colors__media img {
  display: block;
  width: auto;
  max-width: min(80%, 280px);
  height: auto;
  max-height: clamp(280px, 36vw, 440px);
  object-fit: contain;
  object-position: bottom center;
}

.dr-landing-colors__item--salt-white {
  background: #F6F6F6;
  color: #0e1426;
}

.dr-landing-colors__item--samurai-black {
  background: #3a3a3a;
  color: #ffffff;
}

.dr-landing-colors__item--samurai-black .dr-landing-colors__name {
  color: #ffffff;
}

.dr-landing-colors__item--beige-yellow {
  background: #f2c200;
  color: #0e1426;
}

.dr-landing-exclusive__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--dr-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.45s ease;
}

.dr-landing-exclusive__media:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.dr-landing-exclusive__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dr-landing-exclusive__media:hover img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .dr-landing-story__media,
  .dr-landing-story__media img,
  .dr-landing-exclusive__media,
  .dr-landing-exclusive__media img {
    transition: none;
  }

  .dr-landing-story__media:hover img,
  .dr-landing-exclusive__media:hover img {
    transform: none;
  }
}

.dr-product-specs--landing {
  padding-top: clamp(64px, 8vw, 96px);
  background: var(--white);
}

.dr-product-specs--landing .dr-product-specs__item {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dr-product-specs--landing .dr-product-specs__item:hover {
  border-color: var(--azure-300);
  box-shadow: 0 12px 32px rgba(14, 20, 38, 0.08);
}

.dr-product-specs--landing .dr-product-specs__grid {
  background: transparent;
  gap: 12px;
}

.dr-landing-applications {
  padding-bottom: clamp(64px, 8vw, 88px);
}

.dr-landing-applications--cards {
  padding-top: clamp(48px, 6vw, 72px);
}

.dr-landing-applications__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(36px, 5vw, 52px);
}

.dr-landing-applications__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px 26px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius);
  box-shadow: 0 8px 24px rgba(14, 20, 38, 0.04);
}

.dr-landing-applications__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  color: var(--azure-600);
  background: var(--ink-50);
  border-radius: 14px;
}

.dr-landing-applications__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.dr-landing-applications__card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-landing-applications__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-landing-applications .dr-sheet-applications__chips {
  justify-content: center;
}

.dr-landing-cta {
  margin-bottom: 0;
}

/* Slots vazios — estrutura visível para preenchimento */
.dr-sheet-slot--empty {
  color: transparent;
  user-select: none;
}

.dr-landing-stats__card .drstat__value.dr-sheet-slot--empty {
  min-height: 1.15em;
  border-bottom: 1px dashed var(--border-subtle);
}

.dr-landing-stats__card .drstat__label.dr-sheet-slot--empty {
  min-height: 1em;
  margin-top: 6px;
  border-bottom: 1px dashed var(--border-subtle);
}

.dr-eyebrow.dr-sheet-slot--empty,
.dr-landing-video__lead.dr-sheet-slot--empty,
.dr-sheet-section__title.dr-sheet-slot--empty,
.dr-landing-story__content h2.dr-sheet-slot--empty,
.dr-landing-story__content > p.dr-sheet-slot--empty,
.dr-landing-pillars__card h3.dr-sheet-slot--empty,
.dr-landing-pillars__card p.dr-sheet-slot--empty,
.dr-product-specs__item h3.dr-sheet-slot--empty,
.dr-product-specs__item p.dr-sheet-slot--empty,
.dr-sheet-specs__group h3.dr-sheet-slot--empty,
.dr-sheet-disclaimer p.dr-sheet-slot--empty {
  min-height: 1.1em;
  border-bottom: 1px dashed var(--border-subtle);
}

.dr-landing-video__frame.dr-sheet-slot--empty {
  border-style: dashed;
  background: var(--ink-50);
}

.dr-landing-story__media.dr-sheet-slot--empty,
.dr-landing-exclusive__media.dr-sheet-slot--empty {
  min-height: 0;
  border-style: none;
  background: transparent;
  box-shadow: none;
}

.dr-landing-story__media.dr-sheet-slot--empty:hover,
.dr-landing-exclusive__media.dr-sheet-slot--empty:hover {
  box-shadow: none;
}

.dr-landing-story__points li.dr-sheet-slot--empty,
.dr-sheet-exclusive__list li.dr-sheet-slot--empty {
  min-height: 1.35em;
  border-bottom: 1px dashed var(--border-subtle);
}

.dr-landing-story__points li.dr-sheet-slot--empty::before,
.dr-sheet-exclusive__list li.dr-sheet-slot--empty::before {
  opacity: 0;
}

.dr-sheet-applications__chip.dr-sheet-slot--empty {
  min-width: 120px;
  min-height: 38px;
  border-style: dashed;
  background: var(--ink-50);
  color: transparent;
}

.dr-sheet-table .dr-sheet-slot--empty {
  min-width: 80px;
  min-height: 1.2em;
}

.dr-sheet-table tbody .dr-sheet-slot--empty {
  background: rgba(14, 20, 38, 0.02);
}

.dr-sheet-disclaimer p.dr-sheet-slot--empty {
  min-height: 48px;
}

@media (max-width: 1100px) {
  .dr-landing-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dr-landing-peripherals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-landing-applications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-landing-pillars__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dr-landing-pillars__card,
  .dr-landing-pillars__card:nth-child(4),
  .dr-landing-pillars__card:nth-child(5) {
    grid-column: span 1;
  }

  .dr-landing-pillars__card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .dr-landing-story__inner,
  .dr-landing-exclusive__inner {
    grid-template-columns: 1fr;
  }

  .dr-landing-colors__grid {
    grid-template-columns: 1fr;
  }

  .dr-landing-colors__item {
    min-height: auto;
  }

  .dr-landing-banner__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dr-landing-video-split__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dr-landing-video-split__media,
  .dr-landing-video-split__media video {
    min-height: clamp(280px, 56vw, 420px);
  }

  .dr-landing-video-split__copy .dr-sheet-section__title {
    max-width: none;
  }

  .dr-landing-story--reverse .dr-landing-story__inner {
    direction: ltr;
  }

  .dr-landing-story--marketing-layout .dr-landing-story__inner {
    min-height: auto;
  }

  .dr-landing-story--marketing-layout .dr-landing-story__media--marketing-robot img {
    max-width: min(68%, 220px);
    max-height: 340px;
  }

  .dr-landing-story--marketing-layout .dr-landing-story__content {
    margin-bottom: 24px;
  }

  .dr-landing-exclusive__media {
    order: -1;
  }

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

  .dr-landing-pillars__grid {
    grid-template-columns: 1fr;
  }

  .dr-landing-peripherals__grid {
    grid-template-columns: 1fr;
  }

  .dr-landing-applications__grid {
    grid-template-columns: 1fr;
  }

  .dr-landing-pillars__card:last-child {
    grid-column: auto;
  }

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

  .dr-sheet-pillars__grid {
    grid-template-columns: 1fr;
  }

  .dr-sheet-exclusive__list {
    grid-template-columns: 1fr;
  }

  .dr-product-specs__grid--wide {
    grid-template-columns: 1fr;
  }

  .dr-sheet-specs__groups {
    columns: 1;
  }
}

@media (max-width: 720px) {
  .dr-landing-banner__copy h2 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .dr-sheet-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Liro — landing educacional ── */
.dr-product-page--liro {
  --liro-accent: #3d6a85;
  --liro-accent-soft: #e8f2f8;
  --liro-warm: #f6f3ef;

  /* Paleta lúdica — usada apenas nos módulos de conteúdo educacional
     (entre a seção de especificações rápidas e o CTA final) */
  --liro-fun-teal: var(--signal-500);
  --liro-fun-teal-soft: #E3FBF7;
  --liro-fun-amber: var(--amber-500);
  --liro-fun-amber-soft: #FDF1DA;
  --liro-fun-green: var(--green-600);
  --liro-fun-green-soft: #E1F5EC;
  --liro-fun-coral: #FF7A63;
  --liro-fun-coral-soft: #FFEBE6;
  --liro-fun-purple: #7C6FE0;
  --liro-fun-purple-soft: #EFECFC;
  --liro-radius-lg: 28px;
  --liro-radius-md: 20px;
  --liro-radius-sm: 14px;
}

.dr-liro-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--liro-accent);
}

.dr-liro-stats .dr-landing-stats__card {
  background: var(--white);
  border-color: rgba(61, 106, 133, 0.12);
}

.dr-liro-intro .dr-landing-video-split__copy {
  background: var(--liro-warm);
}

.dr-liro-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.dr-liro-section__head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.dr-liro-section__head--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.dr-liro-section__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-liro-section__intro {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.dr-liro-education {
  background: linear-gradient(180deg, var(--white) 0%, var(--liro-accent-soft) 100%);
}

.dr-liro-education__lead {
  margin: 12px 0 0;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-liro-education__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dr-liro-education__card {
  padding: clamp(22px, 3vw, 28px);
  background: var(--white);
  border: 1px solid rgba(61, 106, 133, 0.14);
  border-radius: var(--dr-radius, 4px);
}

.dr-liro-education__card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin-inline: auto;
}

.dr-liro-education__value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--liro-accent);
}

.dr-liro-education__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-liro-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.dr-liro-about__text {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
}

.dr-liro-about__features h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-liro-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-liro-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy-800, var(--navy-700));
}

.dr-liro-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--liro-accent);
}

.dr-liro-feature-list--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.dr-liro-feature-list--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  max-width: 720px;
}

.dr-liro-classroom__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dr-liro-classroom__card {
  padding: clamp(22px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-liro-classroom__card:nth-child(4),
.dr-liro-classroom__card:nth-child(5) {
  grid-column: span 1;
}

.dr-liro-classroom__card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-liro-classroom__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-liro-classroom__card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-liro-classroom__card li + li {
  margin-top: 8px;
}

.dr-liro-classroom__card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--liro-accent);
}

.dr-liro-classroom__footnote {
  margin: clamp(28px, 4vw, 40px) 0 0;
  font-size: 17px;
  font-weight: var(--weight-semibold);
  text-align: center;
  color: var(--liro-accent);
}

.dr-liro-designed {
  background: var(--liro-warm);
}

.dr-liro-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-liro-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-liro-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--weight-bold);
  color: var(--liro-accent);
}

.dr-liro-software__panel {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(61, 106, 133, 0.16);
  border-radius: var(--dr-radius, 4px);
  box-shadow: 0 12px 40px rgba(14, 20, 38, 0.06);
}

.dr-liro-software__panel .dr-liro-section__title {
  margin-bottom: 12px;
}

.dr-liro-software__panel .dr-liro-section__intro {
  margin-bottom: 24px;
}

.dr-liro-levels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dr-liro-levels__card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-liro-levels__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: var(--weight-bold);
  color: var(--white);
  background: var(--liro-accent);
  border-radius: 50%;
}

.dr-liro-levels__card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-liro-levels__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-liro-levels__card li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-liro-levels__card li + li {
  margin-top: 8px;
}

.dr-liro-levels__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--liro-accent);
}

.dr-liro-screen {
  background: var(--navy-900);
  color: var(--white);
}

.dr-liro-screen__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.dr-liro-screen .dr-liro-section__title {
  color: var(--white);
}

.dr-liro-screen p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.dr-liro-screen p:last-child {
  margin-bottom: 0;
  font-weight: var(--weight-semibold);
  color: var(--white);
}

.dr-liro-security__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.dr-liro-security__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.dr-liro-checklist--shield li::before {
  content: "🛡";
  font-size: 14px;
}

.dr-liro-future__note {
  margin: clamp(24px, 4vw, 36px) 0 0;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: var(--weight-medium);
  line-height: 1.6;
  color: var(--navy-800, var(--navy-700));
  background: var(--liro-accent-soft);
  border-left: 4px solid var(--liro-accent);
  border-radius: 0 var(--dr-radius, 4px) var(--dr-radius, 4px) 0;
}

.dr-liro-solution__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.dr-liro-solution__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.dr-liro-solution__steps {
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-liro-solution__steps h3 {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.dr-liro-solution__steps ol {
  margin: 0;
  padding-left: 20px;
}

.dr-liro-solution__steps li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-liro-solution__steps li + li {
  margin-top: 10px;
}

.dr-liro-coordinator__board {
  max-width: 820px;
  margin-inline: auto;
  padding: 14px;
  background: linear-gradient(145deg, #a06b38 0%, #704820 38%, #8f5c2e 62%, #5a3a18 100%);
  border-radius: 8px;
  box-shadow:
    0 22px 44px rgba(18, 12, 6, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dr-liro-coordinator__panel {
  max-width: none;
  margin-inline: 0;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(ellipse at 82% 78%, rgba(0, 0, 0, 0.12), transparent 38%),
    linear-gradient(168deg, #1f5230 0%, #2d6640 48%, #163924 100%);
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-radius: 3px;
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.28);
}

.dr-liro-coordinator__panel .dr-liro-section__title {
  color: rgba(255, 252, 245, 0.96);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.15);
  font-family: "Segoe Print", "Bradley Hand", "Apple Chancery", cursive;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.dr-liro-coordinator__intro {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.88);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
}

.dr-liro-coordinator__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dr-liro-coordinator__credentials li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 252, 245, 0.9);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.28);
}

.dr-liro-coordinator__credentials li::before {
  content: "🎓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 14px;
  filter: grayscale(1) brightness(2.4);
}

.dr-liro-coordinator__tray {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 20px;
  margin-top: 10px;
  background: linear-gradient(180deg, #704820, #4a2e12);
  border-radius: 0 0 5px 5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 5px 8px rgba(0, 0, 0, 0.18);
}

.dr-liro-coordinator__chalk {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.dr-liro-coordinator__chalk--white {
  background: linear-gradient(180deg, #fffdf8, #ddd8cf);
}

.dr-liro-coordinator__chalk--yellow {
  background: linear-gradient(180deg, #ffe98a, #e6c85a);
  transform: rotate(6deg);
}

.dr-liro-coordinator__chalk--pink {
  background: linear-gradient(180deg, #ffb8c9, #e8899f);
  transform: rotate(-14deg);
}

.dr-liro-diff__quote {
  margin: clamp(32px, 5vw, 48px) 0 0;
  padding: clamp(24px, 4vw, 36px);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: var(--weight-medium);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--navy-900);
  background: var(--liro-warm);
  border: none;
  border-radius: var(--dr-radius, 4px);
}

.dr-liro-specs {
  background: var(--white);
}

.dr-liro-specs__table .dr-sheet-specs__groups {
  columns: 1;
  max-width: 720px;
  margin-inline: auto;
}

.dr-liro-cta {
  background: linear-gradient(135deg, var(--liro-accent) 0%, #2d5570 100%);
}

/* ────────────────────────────────────────────────────────────
   Liro — módulos de conteúdo educacional (visual mais lúdico)
   Escopo: tudo entre a barra de specs rápidas e o CTA final.
   A hero, a barra de specs e o CTA seguem o padrão das demais
   páginas de produto — só o miolo abaixo foge um pouco da régua.
   ──────────────────────────────────────────────────────────── */

.dr-liro-intro,
.dr-liro-education,
.dr-liro-about,
.dr-liro-classroom,
.dr-liro-designed,
.dr-liro-software,
.dr-liro-levels,
.dr-liro-security,
.dr-liro-future,
.dr-liro-solution,
.dr-liro-coordinator,
.dr-liro-diff {
  position: relative;
}

/* Título das seções: selo arredondado com "rabisco" colorido embaixo */
.dr-liro-section__title {
  position: relative;
  display: inline-block;
}

.dr-liro-section__head .dr-liro-section__title::after,
.dr-liro-section__head--center .dr-liro-section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin-top: 10px;
  background: var(--liro-fun-teal);
  border-radius: 999px;
}

.dr-liro-section__head--center .dr-liro-section__title::after {
  margin-inline: auto;
}

/* Eyebrows viram "chips" de caderno escolar */
.dr-liro-intro .dr-eyebrow,
.dr-liro-education .dr-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--liro-fun-teal-soft);
  border-radius: 999px;
  color: #0d7d70;
}

/* Vídeo/intro: painéis retos alinhados ao split padrão */
.dr-liro-intro .dr-landing-video-split__media {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--liro-fun-teal-soft);
}

.dr-liro-intro .dr-landing-video-split__copy {
  background: var(--liro-fun-amber-soft);
  border-radius: 0;
  padding: clamp(24px, 3vw, 36px);
}

/* Mosaico de estatísticas educacionais: cartões-adesivo coloridos */
.dr-liro-education {
  background: linear-gradient(180deg, var(--white) 0%, var(--liro-fun-teal-soft) 100%);
}

.dr-liro-education__card {
  border: none;
  border-radius: var(--liro-radius-md);
  box-shadow: 6px 6px 0 var(--liro-fun-teal-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dr-liro-education__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--liro-fun-teal-soft);
}

.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+1) { box-shadow: 6px 6px 0 var(--liro-fun-teal-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+2) { box-shadow: 6px 6px 0 var(--liro-fun-amber-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+3) { box-shadow: 6px 6px 0 var(--liro-fun-coral-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+4) { box-shadow: 6px 6px 0 var(--liro-fun-purple-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+1):hover { box-shadow: 9px 9px 0 var(--liro-fun-teal-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+2):hover { box-shadow: 9px 9px 0 var(--liro-fun-amber-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+3):hover { box-shadow: 9px 9px 0 var(--liro-fun-coral-soft); }
.dr-liro-education__grid > .dr-liro-education__card:nth-child(4n+4):hover { box-shadow: 9px 9px 0 var(--liro-fun-purple-soft); }

.dr-liro-education__value {
  color: var(--navy-900);
}

/* "Sobre" — lista de recursos com marcadores em bolha */
.dr-liro-about {
  background: var(--liro-fun-amber-soft);
}

.dr-liro-about__photo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 16px 0 20px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.dr-liro-about__features {
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border-radius: var(--liro-radius-lg);
  align-self: center;
}

.dr-liro-feature-list:not(.dr-liro-feature-list--inline):not(.dr-liro-feature-list--columns) li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.dr-liro-feature-list:not(.dr-liro-feature-list--inline):not(.dr-liro-feature-list--columns) li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  left: auto;
  top: auto;
  background: var(--liro-fun-green-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--liro-fun-green);
  line-height: 1;
}

.dr-liro-feature-list:not(.dr-liro-feature-list--inline):not(.dr-liro-feature-list--columns) li::after {
  content: none;
  display: none;
}

/* Quem é o Liro — herda bolinhas com ✓ centralizado (sem ✓ solto) */
.dr-liro-about__features .dr-liro-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.dr-liro-about__features .dr-liro-feature-list li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  left: auto;
  top: auto;
  background: var(--liro-fun-green-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--liro-fun-green);
  line-height: 1;
}

.dr-liro-about__features .dr-liro-feature-list li::after {
  content: none;
  display: none;
}

/* Usos em sala: cartões coloridos tipo etiqueta, levemente "tortos" */
.dr-liro-classroom__card {
  border: none;
  border-radius: var(--liro-radius-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dr-liro-classroom__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  border-radius: var(--liro-radius-md) var(--liro-radius-md) 0 0;
}

.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+1) { box-shadow: 5px 5px 0 var(--liro-fun-teal-soft); transform: rotate(-0.6deg); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+2) { box-shadow: 5px 5px 0 var(--liro-fun-amber-soft); transform: rotate(0.5deg); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+3) { box-shadow: 5px 5px 0 var(--liro-fun-coral-soft); transform: rotate(-0.4deg); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+4) { box-shadow: 5px 5px 0 var(--liro-fun-purple-soft); transform: rotate(0.6deg); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+5) { box-shadow: 5px 5px 0 var(--liro-fun-green-soft); transform: rotate(-0.5deg); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+1)::before { background: var(--liro-fun-teal); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+2)::before { background: var(--liro-fun-amber); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+3)::before { background: var(--liro-fun-coral); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+4)::before { background: var(--liro-fun-purple); }
.dr-liro-classroom__grid > .dr-liro-classroom__card:nth-child(5n+5)::before { background: var(--liro-fun-green); }

.dr-liro-classroom__card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
}

.dr-liro-classroom__banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(28px, 4vw, 40px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

/* Feito para... : checklist vira chips arredondados */
.dr-liro-designed {
  background: var(--liro-fun-purple-soft);
}

.dr-liro-checklist li {
  padding: 10px 16px 10px 40px;
  background: var(--white);
  border-radius: 999px;
}

.dr-liro-checklist li::before {
  content: "";
  left: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--liro-fun-green);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
}

/* Painel de software: bolha central com "etiqueta" */
.dr-liro-software__panel {
  border: none;
  border-radius: var(--liro-radius-lg);
  background: var(--liro-fun-teal-soft);
  box-shadow: none;
}

.dr-liro-feature-list--inline li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--liro-radius-sm);
}

.dr-liro-feature-list--inline li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  left: auto;
  top: auto;
  background: var(--liro-fun-green-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--liro-fun-green);
  line-height: 1;
}

.dr-liro-feature-list--inline li::after {
  content: none;
}

/* Níveis de interação: trilha de progresso numerada */
.dr-liro-levels__grid {
  position: relative;
}

.dr-liro-levels__card {
  border: none;
  border-radius: var(--liro-radius-md);
  text-align: center;
}

.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(1) { box-shadow: 6px 6px 0 var(--liro-fun-teal-soft); }
.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(2) { box-shadow: 6px 6px 0 var(--liro-fun-amber-soft); }
.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(3) { box-shadow: 6px 6px 0 var(--liro-fun-coral-soft); }

.dr-liro-levels__num {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 18px;
  font-size: 18px;
}

.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(1) .dr-liro-levels__num { background: var(--liro-fun-teal); }
.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(2) .dr-liro-levels__num { background: var(--liro-fun-amber); }
.dr-liro-levels__grid > .dr-liro-levels__card:nth-child(3) .dr-liro-levels__num { background: var(--liro-fun-coral); }

.dr-liro-levels__banner {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 40px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

/* Segurança: escudos viram selinhos coloridos */
.dr-liro-security {
  background: var(--liro-fun-purple-soft);
}

.dr-liro-checklist--shield li {
  background: var(--white);
}

.dr-liro-checklist--shield li::before {
  background: var(--liro-fun-purple);
  font-size: 12px;
}

/* Preparado para o futuro: chips coloridos alternados */
.dr-liro-future .dr-liro-feature-list--columns li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--liro-fun-amber-soft);
  border-radius: var(--liro-radius-sm);
}

.dr-liro-future .dr-liro-feature-list--columns li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  left: auto;
  top: auto;
  background: var(--liro-fun-amber);
  border-radius: 50%;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--white);
  line-height: 1;
}

.dr-liro-future .dr-liro-feature-list--columns li::after {
  content: none;
}

.dr-liro-future__note {
  border-radius: var(--liro-radius-md);
  border-left: none;
  background: var(--liro-fun-teal-soft);
}

.dr-liro-future__note::before {
  content: "💡 ";
}

/* Solução: passo a passo com numeração em bolha */
.dr-liro-solution__steps {
  border: none;
  border-radius: var(--liro-radius-lg);
  background: var(--liro-fun-coral-soft);
}

.dr-liro-solution__steps ol {
  counter-reset: liro-step;
  padding-left: 0;
}

.dr-liro-solution__steps li {
  counter-increment: liro-step;
  position: relative;
  padding-left: 38px;
  list-style: none;
}

.dr-liro-solution__steps li::before {
  content: counter(liro-step);
  position: absolute;
  left: 0;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--white);
  background: var(--liro-fun-coral);
  border-radius: 50%;
}

/* Coordenador pedagógico: lousa de escola com moldura de madeira */
.dr-liro-coordinator {
  background: linear-gradient(180deg, #ebe4d8 0%, #ddd5c8 100%);
}

.dr-liro-coordinator__board {
  border-radius: var(--liro-radius-lg);
}

.dr-liro-coordinator__panel {
  border-radius: var(--liro-radius-sm);
}

.dr-liro-coordinator__credentials li {
  padding: 4px 0 4px 28px;
}

.dr-liro-coordinator__credentials li::before {
  top: 0.1em;
}

/* Diferenciais + citação: quadro de destaque tipo balão de fala */
.dr-liro-diff {
  background: var(--liro-fun-amber-soft);
}

.dr-liro-diff .dr-liro-checklist li {
  background: var(--white);
}

.dr-liro-diff__quote {
  position: relative;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--liro-fun-coral-soft);
  transform: rotate(-0.6deg);
}

.dr-liro-diff__quote::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  font-style: normal;
  line-height: 1;
  color: var(--liro-fun-coral);
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .dr-liro-classroom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dr-liro-levels__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dr-liro-about__inner,
  .dr-liro-security__inner,
  .dr-liro-solution__inner {
    grid-template-columns: 1fr;
  }

  .dr-liro-education__grid,
  .dr-liro-checklist,
  .dr-liro-feature-list--inline,
  .dr-liro-feature-list--columns {
    grid-template-columns: 1fr;
  }

  .dr-liro-education__card:last-child:nth-child(odd) {
    max-width: none;
  }

  .dr-liro-classroom__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Catálogo de produtos (página de categoria) ── */
.dr-product-catalog {
  padding: 0 0 80px;
  background: var(--ink-50);
}

.dr-product-catalog > .dr-container {
  padding-top: 15px;
}

.dr-product-catalog--all > .dr-container:first-child {
  padding-top: 0;
}

.dr-product-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 8px 0 40px;
}

.dr-product-segments__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  font-family: inherit;
  color: var(--navy-700);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.dr-product-segments__link.is-active {
  border-color: var(--azure-500);
  color: var(--azure-600);
  background: var(--azure-50);
}

.dr-product-catalog__item {
  min-width: 0;
}

.dr-product-catalog__item.is-hidden {
  display: none;
}

.dr-product-segments__link:hover {
  border-color: var(--azure-500);
  color: var(--azure-600);
  background: var(--azure-50);
}

.dr-product-catalog-section {
  padding-bottom: 56px;
  scroll-margin-top: 88px;
}

.dr-product-catalog-section:not(:last-child) {
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.dr-product-catalog-section__head {
  max-width: 720px;
  margin: 0 0 28px;
}

.dr-product-catalog-section__head h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.dr-product-catalog-section__head p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.dr-product-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.dr-product-catalog__grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.dr-product-catalog__item {
  display: flex;
  min-width: 0;
  min-height: 100%;
}

.dr-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  background: var(--white);
  border: none;
  border-radius: var(--dr-radius, 4px);
  overflow: hidden;
}

.dr-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 240px;
  padding: 14px 18px;
  background: var(--white);
  overflow: hidden;
  box-sizing: border-box;
}

.dr-product-card__media img,
.dr-product-card__placeholder {
  width: 100%;
  height: 100%;
}

.dr-product-card__media img {
  object-fit: contain;
  object-position: center;
  background: transparent;
  transition: transform 0.35s ease;
}

.dr-product-card__placeholder {
  background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.dr-product-card:hover .dr-product-card__media img {
  transform: scale(1.03);
}

.dr-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.dr-product-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 17px;
  font-weight: var(--weight-bold);
  line-height: 1.3;
  color: var(--navy-900);
}

.dr-product-card__badge {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  font-style: italic;
  line-height: 1;
}

.dr-product-card__badge--new {
  color: #e67e22;
}

.dr-product-card__badge--hot {
  color: #e67e22;
}

.dr-product-card__title a {
  color: inherit;
}

.dr-product-card__title a:hover {
  color: var(--azure-600);
  opacity: 1;
}

.dr-product-card__summary {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.dr-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dr-product-card__tag {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  color: var(--navy-700);
  background: var(--ink-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
}

.dr-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.dr-product-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--navy-700);
  cursor: pointer;
}

.dr-product-card__contact:hover {
  color: var(--azure-600);
}

@media (max-width: 1024px) {
  .dr-product-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dr-product-catalog__grid,
  .dr-product-catalog__grid--duo {
    grid-template-columns: 1fr;
  }

  .dr-product-card__media {
    height: 220px;
    padding: 12px 14px;
  }
}

/* ── Possibilidades de uso (carrossel) ── */
.dr-use-cases {
  padding: 48px 0 80px;
  background: var(--white);
}

.dr-use-cases h2 {
  margin: 0 0 40px;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  text-align: center;
}

.dr-use-carousel {
  position: relative;
  padding: 0 52px;
}

.dr-use-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dr-use-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.dr-use-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px 0 8px;
}

.dr-use-card {
  position: relative;
  flex: 0 0 clamp(240px, 32vw, 380px);
  width: clamp(240px, 32vw, 380px);
  height: 320px;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.dr-use-card--photo {
  background-size: cover;
  background-position: center;
}

.dr-use-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(0deg, rgba(8, 14, 28, 0.78) 0%, rgba(8, 14, 28, 0.08) 55%);
}

.dr-use-card__overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--white);
}

.dr-use-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--dr-radius, 4px);
  background: var(--white);
  color: var(--navy-700);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.dr-use-carousel__arrow:hover {
  border-color: var(--azure-500);
  color: var(--azure-600);
}

.dr-use-carousel__arrow--prev { left: 0; }
.dr-use-carousel__arrow--next { right: 0; }

.dr-use-card--use-office:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #9eb5cc 0%, #6d8da8 42%, #456880 100%);
}

.dr-use-card--use-education:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8eb8d4 0%, #5d8fad 42%, #3d6a85 100%);
}

.dr-use-card--use-retail:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c4a882 0%, #9a7d5e 42%, #6b5540 100%);
}

.dr-use-card--use-food:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #d4a88e 0%, #a87d66 42%, #7a5544 100%);
}

.dr-use-card--use-transport:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7fa8c2 0%, #557f9a 42%, #355d72 100%);
}

.dr-use-card--use-health:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #94c4b8 0%, #649a8a 42%, #3f7264 100%);
}

.dr-use-card--use-manufacturing:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #5a6578 0%, #3a4252 42%, #1e2430 100%);
}

.dr-use-card--use-hospitality:not(.dr-use-card--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b8a48e 0%, #8f7a66 42%, #635544 100%);
}

/* ── Página Possibilidades (setores) ── */
.dr-industries-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 48px);
  background: var(--white);
}

.dr-industries-hero .dr-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.dr-industries-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.dr-industries-hero__lead {
  margin: 0;
  max-width: 680px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.dr-industries {
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--white);
}

.dr-industries__list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 96px);
}

.dr-industry {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.dr-industry--reverse {
  direction: rtl;
}

.dr-industry--reverse > * {
  direction: ltr;
}

.dr-industry__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--dr-radius, 4px);
  background: var(--ink-75);
}

.dr-industry__media img {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: cover;
  object-position: center;
}

.dr-industry__media--tone {
  min-height: clamp(240px, 32vw, 360px);
}

.dr-industry__media--use-food {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #d4a88e 0%, #a87d66 42%, #7a5544 100%);
}

.dr-industry__media--use-retail {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c4a882 0%, #9a7d5e 42%, #6b5540 100%);
}

.dr-industry__media--use-hospitality {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b8a48e 0%, #8f7a66 42%, #635544 100%);
}

.dr-industry__media--use-manufacturing {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #5a6578 0%, #3a4252 42%, #1e2430 100%);
}

.dr-industry__media--use-health {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #94c4b8 0%, #649a8a 42%, #3f7264 100%);
}

.dr-industry__media--use-transport {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7fa8c2 0%, #557f9a 42%, #355d72 100%);
}

.dr-industry__media--use-office {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #9eb5cc 0%, #6d8da8 42%, #456880 100%);
}

.dr-industry__media--use-education {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8eb8d4 0%, #5d8fad 42%, #3d6a85 100%);
}

.dr-industry__body h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.dr-industry__body p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-secondary);
}

.dr-industry__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--azure-600);
}

.dr-industry__link:hover {
  opacity: 1;
  color: var(--azure-500);
}

@media (prefers-reduced-motion: no-preference) {
  [data-scroll-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.85s ease,
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  [data-scroll-reveal][data-scroll-reveal-from="left"] {
    transform: translateX(-36px);
  }

  [data-scroll-reveal][data-scroll-reveal-from="right"] {
    transform: translateX(36px);
  }

  [data-scroll-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0);
  }

  .dr-product-page--landing [data-scroll-reveal] {
    transform: translateY(32px);
  }

  .dr-product-page--landing [data-scroll-reveal][data-scroll-reveal-from="left"] {
    transform: translateX(-40px);
  }

  .dr-product-page--landing [data-scroll-reveal][data-scroll-reveal-from="right"] {
    transform: translateX(40px);
  }

  .dr-product-page--landing [data-scroll-reveal].is-revealed {
    transform: translate(0, 0);
  }
}

@media (max-width: 768px) {
  .dr-industry,
  .dr-industry--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── Página Possibilidades (grid legado / home) ── */
.dr-possibilidades {
  padding: 0 0 80px;
  background: var(--ink-50);
}

.dr-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dr-use-panel {
  position: relative;
  min-height: 340px;
  border-radius: var(--dr-radius, 4px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.dr-use-panel--photo {
  background-size: cover;
  background-position: center;
}

.dr-use-panel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(0deg, rgba(8, 14, 28, 0.82) 0%, rgba(8, 14, 28, 0.12) 62%);
}

.dr-use-panel__overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--white);
}

.dr-use-panel__overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.dr-use-panel--use-office:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #9eb5cc 0%, #6d8da8 42%, #456880 100%);
}

.dr-use-panel--use-education:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #8eb8d4 0%, #5d8fad 42%, #3d6a85 100%);
}

.dr-use-panel--use-retail:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #c4a882 0%, #9a7d5e 42%, #6b5540 100%);
}

.dr-use-panel--use-food:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #d4a88e 0%, #a87d66 42%, #7a5544 100%);
}

.dr-use-panel--use-transport:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #7fa8c2 0%, #557f9a 42%, #355d72 100%);
}

.dr-use-panel--use-health:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #94c4b8 0%, #649a8a 42%, #3f7264 100%);
}

.dr-use-panel--use-manufacturing:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #5a6578 0%, #3a4252 42%, #1e2430 100%);
}

.dr-use-panel--use-hospitality:not(.dr-use-panel--photo) {
  background: radial-gradient(ellipse 90% 80% at 50% 100%, #b8a48e 0%, #8f7a66 42%, #635544 100%);
}

@media (max-width: 1024px) {
  .dr-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dr-use-grid {
    grid-template-columns: 1fr;
  }

  .dr-use-panel {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .dr-use-card {
    flex: 0 0 260px;
    width: 260px;
    height: 280px;
  }

  .dr-use-carousel {
    padding: 0 44px;
  }
}

@media (max-width: 640px) {
  .dr-use-card {
    flex: 0 0 240px;
    width: 240px;
    height: 260px;
  }

  .dr-use-cases h2 {
    margin-bottom: 32px;
  }
}
