.cw-home {
  --cw-ink: #191125;
  --cw-ink-soft: #574f62;
  --cw-night: #171020;
  --cw-purple: #6f35a5;
  --cw-purple-dark: #472064;
  --cw-lilac: #c7a4f3;
  --cw-lilac-soft: #f4edfc;
  --cw-orange: #ff5a0a;
  --cw-orange-dark: #da4100;
  --cw-yellow: #ffd422;
  --cw-cream: #fffaf4;
  --cw-white: #ffffff;
  --cw-line: rgba(25, 17, 37, 0.12);
  --cw-shadow: 0 24px 70px rgba(35, 19, 48, 0.13);
  --cw-radius-lg: 30px;
  --cw-radius-md: 22px;
  --cw-radius-sm: 14px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--cw-ink);
  background: var(--cw-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.cw-home :where(h1, h2, h3, p, ul, figure) {
  margin: 0;
}

.cw-home :where(ul) {
  padding: 0;
  list-style: none;
}

.cw-home a {
  color: inherit;
  text-decoration: none;
}

.cw-home button,
.cw-home a {
  -webkit-tap-highlight-color: transparent;
}

.cw-home img {
  display: block;
  max-width: 100%;
}

.cw-home :where(a, button):focus-visible {
  outline: 3px solid var(--cw-yellow);
  outline-offset: 4px;
}

.cw-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cw-skip-link {
  position: fixed;
  z-index: 100000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--cw-white) !important;
  background: var(--cw-night);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.cw-skip-link:focus {
  transform: translateY(0);
}

/* Header */
.cw-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(25, 17, 37, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

body.admin-bar .cw-header {
  top: 32px;
}

.cw-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(25, 17, 37, 0.11);
  background: rgba(255, 255, 255, 0.98);
}

.cw-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cw-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.cw-brand img {
  width: 178px;
  height: auto;
}

.cw-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.cw-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cw-nav__item {
  position: relative;
}

.cw-nav__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 0;
  border-radius: 11px;
  color: var(--cw-ink) !important;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.cw-nav__link:hover,
.cw-nav__item--dropdown.is-open > .cw-nav__link {
  color: var(--cw-purple-dark) !important;
  background: var(--cw-lilac-soft);
}

.cw-dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 11px);
  left: 0;
  width: 270px;
  padding: 10px;
  border: 1px solid rgba(25, 17, 37, 0.1);
  border-radius: 18px;
  opacity: 0;
  background: var(--cw-white);
  box-shadow: 0 25px 65px rgba(25, 17, 37, 0.17);
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cw-dropdown::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.cw-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--cw-ink) !important;
  font-size: 0.88rem;
  font-weight: 690;
  line-height: 1.3;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.cw-dropdown a:hover {
  color: var(--cw-purple-dark) !important;
  background: var(--cw-lilac-soft);
  transform: translateX(3px);
}

.cw-dropdown a span {
  color: var(--cw-ink-soft);
  font-size: 0.76rem;
  font-weight: 520;
}

.cw-dropdown--videos {
  display: grid;
  left: 50%;
  width: 470px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translate(-50%, 8px);
}

.cw-nav__item--dropdown:hover > .cw-dropdown,
.cw-nav__item--dropdown.is-open > .cw-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cw-nav__item--dropdown:hover > .cw-dropdown--videos,
.cw-nav__item--dropdown.is-open > .cw-dropdown--videos {
  transform: translate(-50%, 0);
}

.cw-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--cw-line);
  border-radius: 11px;
  color: var(--cw-ink);
  background: var(--cw-white);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 780;
}

.cw-menu-toggle__bars {
  display: grid;
  width: 21px;
  gap: 4px;
}

.cw-menu-toggle__bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.cw-menu-toggle[aria-expanded="true"] .cw-menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

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

/* Buttons */
.cw-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.93rem;
  font-weight: 820;
  line-height: 1.25;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.cw-button:hover {
  transform: translateY(-2px);
}

.cw-button--header {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--cw-white) !important;
  background: var(--cw-ink);
  font-size: 0.84rem;
  white-space: nowrap;
}

.cw-button--header:hover,
.cw-button--dark:hover {
  background: var(--cw-purple-dark);
  box-shadow: 0 10px 30px rgba(71, 32, 100, 0.25);
}

.cw-button--primary {
  color: var(--cw-white) !important;
  background: var(--cw-orange);
  box-shadow: 0 15px 35px rgba(255, 90, 10, 0.28);
}

.cw-button--primary:hover {
  background: #ff6b22;
  box-shadow: 0 18px 45px rgba(255, 90, 10, 0.38);
}

.cw-button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--cw-white) !important;
  background: rgba(255, 255, 255, 0.07);
}

.cw-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.cw-button--dark {
  margin-top: 30px;
  color: var(--cw-white) !important;
  background: var(--cw-ink);
}

.cw-button--light {
  flex: 0 0 auto;
  color: var(--cw-night) !important;
  background: var(--cw-white);
  box-shadow: 0 14px 40px rgba(14, 8, 20, 0.18);
}

.cw-button--light:hover {
  background: var(--cw-yellow);
}

/* Hero */
.cw-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 88px;
  color: var(--cw-white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(111, 53, 165, 0.32), transparent 35%),
    var(--cw-night);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-hero::after {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -170px;
  width: 42vw;
  height: 370px;
  border-radius: 50%;
  background: var(--cw-orange);
  content: "";
  filter: blur(100px);
  opacity: 0.18;
}

.cw-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.cw-hero__glow--one {
  top: 80px;
  left: -150px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 90, 10, 0.14);
}

.cw-hero__glow--two {
  top: 34px;
  right: 8%;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255, 212, 34, 0.26);
}

.cw-hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.cw-kicker,
.cw-eyebrow {
  color: var(--cw-orange);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cw-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cw-yellow);
}

.cw-kicker span {
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background: currentColor;
}

.cw-hero h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(2.75rem, 5.1vw, 5.2rem);
  font-weight: 880;
  letter-spacing: -0.061em;
  line-height: 0.98;
}

.cw-hero h1 em {
  color: var(--cw-orange);
  font-style: normal;
}

.cw-hero__lead {
  max-width: 680px;
  margin-top: 28px !important;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.cw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cw-hero__proof {
  display: grid;
  max-width: 620px;
  margin-top: 44px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-hero__proof li {
  display: flex;
  flex-direction: column;
  padding: 2px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.cw-hero__proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.cw-hero__proof strong {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.3;
}

.cw-hero__proof span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.cw-hero__visual {
  position: relative;
  width: min(100%, 470px);
  min-height: 560px;
  justify-self: end;
}

.cw-hero__frame {
  position: absolute;
  inset: 0 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 190px 28px 28px 28px;
  background: #050506;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
}

.cw-hero__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 5, 17, 0.4));
  content: "";
  pointer-events: none;
}

.cw-hero__alex {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: 89% 50%;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cw-hero__visual:hover .cw-hero__alex {
  transform: scale(1.025);
}

.cw-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--cw-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.cw-floating-card--top {
  top: 76px;
  right: -36px;
}

.cw-floating-card--bottom {
  bottom: 48px;
  left: -25px;
}

.cw-floating-card span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--cw-ink-soft);
  font-size: 0.73rem;
  line-height: 1.35;
}

.cw-floating-card strong {
  color: var(--cw-ink);
  font-size: 0.83rem;
  font-weight: 860;
}

.cw-floating-card__icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--cw-white);
  background: var(--cw-purple);
}

.cw-live-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 4px solid #cff5dc;
  border-radius: 50%;
  background: #20a955;
  box-shadow: 0 0 0 5px rgba(32, 169, 85, 0.12);
}

/* Quick links */
.cw-quick {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.cw-quick__grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(25, 17, 37, 0.08);
  border-radius: var(--cw-radius-md);
  background: var(--cw-white);
  box-shadow: var(--cw-shadow);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-quick__item {
  display: grid;
  min-height: 136px;
  align-items: center;
  gap: 16px;
  padding: 25px;
  border-right: 1px solid var(--cw-line);
  grid-template-columns: auto 1fr auto;
  transition: background-color 170ms ease;
}

.cw-quick__item:last-child {
  border-right: 0;
}

.cw-quick__item:hover {
  background: var(--cw-cream);
}

.cw-quick__number {
  color: var(--cw-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cw-quick__item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--cw-ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cw-quick__item strong {
  color: var(--cw-ink);
  font-size: 0.94rem;
  font-weight: 850;
}

.cw-quick__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--cw-purple);
  background: var(--cw-lilac-soft);
  font-weight: 900;
  transition: color 170ms ease, background-color 170ms ease, transform 170ms ease;
}

.cw-quick__item:hover .cw-quick__arrow {
  color: var(--cw-white);
  background: var(--cw-purple);
  transform: rotate(8deg);
}

/* Shared sections */
.cw-section {
  padding: 112px 0;
}

.cw-section--light {
  background: var(--cw-white);
}

.cw-section--tint {
  border-block: 1px solid rgba(111, 53, 165, 0.08);
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 90, 10, 0.07), transparent 24%),
    radial-gradient(circle at 92% 92%, rgba(111, 53, 165, 0.11), transparent 28%),
    var(--cw-lilac-soft);
}

.cw-section-heading {
  display: grid;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.cw-section-heading h2,
.cw-about h2,
.cw-resources h2,
.cw-cta h2 {
  margin-top: 11px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 880;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.cw-section-heading > p {
  padding-bottom: 4px;
  color: var(--cw-ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

/* Course cards */
.cw-course-grid--presencial {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-course {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cw-line);
  border-radius: var(--cw-radius-md);
  background: var(--cw-white);
  box-shadow: 0 12px 34px rgba(25, 17, 37, 0.055);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.cw-course:hover {
  border-color: rgba(111, 53, 165, 0.28);
  box-shadow: 0 25px 60px rgba(36, 20, 48, 0.13);
  transform: translateY(-7px);
}

.cw-course--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.cw-course__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--cw-night);
}

.cw-course__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(23, 16, 32, 0.35));
  content: "";
}

.cw-course__media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cw-course:hover .cw-course__media img {
  transform: scale(1.055);
}

.cw-course__flag {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cw-night);
  background: var(--cw-yellow);
  font-size: 0.73rem;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cw-course__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.cw-course__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cw-course__meta span,
.cw-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--cw-purple-dark);
  background: var(--cw-lilac-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cw-course h3 {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
  font-weight: 880;
  letter-spacing: -0.042em;
  line-height: 1.1;
}

.cw-course__body > p,
.cw-course--compact > p {
  margin-top: 16px;
  color: var(--cw-ink-soft);
  line-height: 1.72;
}

.cw-course__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--cw-line);
}

.cw-course__footer > div {
  display: flex;
  flex-direction: column;
}

.cw-course__footer small {
  color: var(--cw-ink-soft);
  font-size: 0.72rem;
}

.cw-course__footer strong {
  font-size: 1.28rem;
  font-weight: 900;
}

.cw-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cw-purple-dark) !important;
  font-size: 0.88rem;
  font-weight: 850;
}

.cw-text-link span {
  transition: transform 170ms ease;
}

.cw-text-link:hover span {
  transform: translateX(4px);
}

.cw-course--compact {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.cw-course--compact::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cw-lilac-soft);
  content: "";
  transition: transform 350ms ease;
}

.cw-course--compact:hover::after {
  transform: scale(1.25);
}

.cw-course__mark {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 18px;
  color: var(--cw-white);
  background: var(--cw-orange);
  box-shadow: 0 12px 28px rgba(255, 90, 10, 0.25);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.05em;
}

.cw-course__mark--lilac {
  background: var(--cw-purple);
  box-shadow: 0 12px 28px rgba(111, 53, 165, 0.24);
}

.cw-course__mark--yellow {
  color: var(--cw-night);
  background: var(--cw-yellow);
  box-shadow: 0 12px 28px rgba(255, 212, 34, 0.3);
}

.cw-course--compact h3 {
  margin-top: 16px;
  font-size: 1.36rem;
}

.cw-course--compact .cw-text-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 24px;
}

/* Online */
.cw-online-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cw-online-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(111, 53, 165, 0.13);
  border-radius: var(--cw-radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 35px rgba(55, 26, 76, 0.07);
  backdrop-filter: blur(8px);
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.cw-online-card::before {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 32px solid rgba(111, 53, 165, 0.08);
  border-radius: 50%;
  content: "";
}

.cw-online-card:hover {
  color: var(--cw-white);
  background: var(--cw-purple-dark);
  box-shadow: 0 25px 55px rgba(71, 32, 100, 0.23);
  transform: translateY(-7px);
}

.cw-online-card__top,
.cw-online-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cw-online-card__index {
  color: var(--cw-orange);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.1em;
}

.cw-online-card:hover .cw-pill {
  color: var(--cw-white);
  background: rgba(255, 255, 255, 0.13);
}

.cw-online-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  font-size: 1.33rem;
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.cw-online-card p {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  color: var(--cw-ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 220ms ease;
}

.cw-online-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.cw-online-card__bottom {
  margin-top: auto;
  padding-top: 26px;
}

.cw-online-card__bottom strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.cw-online-card__bottom a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--cw-white) !important;
  background: var(--cw-orange);
  font-size: 1.18rem;
  font-weight: 900;
  transition: color 170ms ease, background-color 170ms ease, transform 170ms ease;
}

.cw-online-card:hover .cw-online-card__bottom a {
  color: var(--cw-night) !important;
  background: var(--cw-yellow);
  transform: rotate(-8deg);
}

/* About */
.cw-about {
  background: var(--cw-cream);
}

.cw-about__grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.cw-about__gallery {
  position: relative;
  min-height: 570px;
}

.cw-about__photo {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--cw-white);
  border-radius: var(--cw-radius-md);
  box-shadow: var(--cw-shadow);
}

.cw-about__photo img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cw-about__photo:hover img {
  transform: scale(1.055);
}

.cw-about__photo--main {
  inset: 0 52px 110px 0;
}

.cw-about__photo--small {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 270px;
}

.cw-about__seal {
  position: absolute;
  z-index: 4;
  bottom: 80px;
  left: 16px;
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  border: 8px solid var(--cw-cream);
  border-radius: 50%;
  color: var(--cw-night);
  background: var(--cw-yellow);
  text-align: center;
  transform: rotate(-7deg);
}

.cw-about__seal strong,
.cw-about__seal span {
  display: block;
  line-height: 1.14;
}

.cw-about__seal strong {
  font-size: 1rem;
  font-weight: 920;
}

.cw-about__seal span {
  font-size: 0.72rem;
  font-weight: 740;
}

.cw-about__copy > p:not(.cw-eyebrow) {
  margin-top: 20px;
  color: var(--cw-ink-soft);
  line-height: 1.78;
}

.cw-check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px !important;
}

.cw-check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 690;
}

.cw-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--cw-white);
  background: var(--cw-orange);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

/* Resources */
.cw-resources {
  color: var(--cw-white);
  background: var(--cw-night);
}

.cw-resources__heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.cw-resources__heading .cw-eyebrow {
  color: var(--cw-yellow);
}

.cw-resources__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cw-resource {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 50px);
  border-radius: var(--cw-radius-lg);
  color: var(--cw-white) !important;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cw-resource::after {
  position: absolute;
  z-index: -1;
  top: -85px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 52px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transition: transform 450ms ease;
}

.cw-resource:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(-7px);
}

.cw-resource:hover::after {
  transform: scale(1.12) rotate(15deg);
}

.cw-resource--orange {
  background: linear-gradient(135deg, var(--cw-orange), #e03a00);
}

.cw-resource--purple {
  background: linear-gradient(135deg, var(--cw-purple), #421958);
}

.cw-resource__label {
  margin-bottom: auto;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-resource h3 {
  max-width: 440px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.cw-resource p {
  max-width: 510px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.76);
}

.cw-resource__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.9rem;
  font-weight: 850;
}

.cw-resource__cta strong {
  transition: transform 170ms ease;
}

.cw-resource:hover .cw-resource__cta strong {
  transform: translateX(5px);
}

/* CTA */
.cw-cta {
  padding: 0 0 110px;
  color: var(--cw-white);
  background: var(--cw-night);
}

.cw-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(35px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cw-radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 212, 34, 0.17), transparent 24%),
    linear-gradient(115deg, var(--cw-purple-dark), #2b143a);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.cw-cta h2 {
  max-width: 700px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.cw-cta__inner > div > p:last-child {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.cw-footer {
  padding: 72px 0 28px;
  border-top: 1px solid rgba(25, 17, 37, 0.08);
  background: var(--cw-white);
}

.cw-footer__grid {
  display: grid;
  gap: 55px;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(130px, 0.7fr));
}

.cw-footer__brand img {
  width: 180px;
  height: auto;
}

.cw-footer__brand p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--cw-ink-soft);
  font-size: 0.88rem;
}

.cw-footer h2 {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cw-footer ul {
  display: grid;
  gap: 9px;
}

.cw-footer li,
.cw-footer li a {
  color: var(--cw-ink-soft) !important;
  font-size: 0.84rem;
}

.cw-footer li a:hover {
  color: var(--cw-orange) !important;
}

.cw-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid var(--cw-line);
  color: var(--cw-ink-soft);
  font-size: 0.78rem;
}

.cw-footer__bottom a {
  color: var(--cw-ink) !important;
  font-weight: 780;
}

/* Motion */
.cw-home.cw-motion .cw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--cw-delay, 0ms);
}

.cw-home.cw-motion .cw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .cw-course:hover,
  .cw-online-card:hover,
  .cw-resource:hover,
  .cw-button:hover {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .cw-header__inner {
    gap: 18px;
  }

  .cw-nav {
    gap: 10px;
  }

  .cw-nav__link {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .cw-button--header {
    padding-inline: 12px;
  }

  .cw-hero__grid {
    gap: 45px;
  }

  .cw-floating-card--top {
    right: -10px;
  }

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

  .cw-online-card {
    min-height: 315px;
  }
}

@media (max-width: 960px) {
  .cw-menu-toggle {
    display: inline-flex;
  }

  .cw-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--cw-line);
    border-radius: 0 0 18px 18px;
    background: var(--cw-white);
    box-shadow: 0 24px 55px rgba(25, 17, 37, 0.17);
  }

  .cw-nav.is-open {
    display: flex;
  }

  .cw-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .cw-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
    font-size: 0.94rem;
  }

  .cw-dropdown,
  .cw-dropdown--videos {
    position: static;
    display: none;
    width: 100%;
    margin: 3px 0 8px;
    padding: 7px;
    border: 0;
    border-radius: 13px;
    opacity: 1;
    background: var(--cw-lilac-soft);
    box-shadow: none;
    pointer-events: auto;
    transform: none;
    grid-template-columns: 1fr;
  }

  .cw-nav__item--dropdown.is-open > .cw-dropdown {
    display: grid;
    transform: none;
  }

  .cw-button--header {
    width: 100%;
  }

  .cw-hero {
    padding-top: 72px;
  }

  .cw-hero__grid {
    grid-template-columns: 1fr;
  }

  .cw-hero__copy {
    max-width: 760px;
  }

  .cw-hero__visual {
    width: min(88%, 560px);
    min-height: 560px;
    margin-top: 8px;
    justify-self: center;
  }

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

  .cw-quick__item {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--cw-line);
  }

  .cw-quick__item:last-child {
    border-bottom: 0;
  }

  .cw-course-grid--presencial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-course--featured {
    grid-template-columns: 1fr;
  }

  .cw-course__media {
    min-height: 360px;
  }

  .cw-course--compact:last-child {
    grid-column: 1 / -1;
  }

  .cw-about__grid {
    grid-template-columns: 1fr;
  }

  .cw-about__gallery {
    width: min(100%, 690px);
  }

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

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

@media (max-width: 767px) {
  body.admin-bar .cw-header {
    top: 46px;
  }

  .cw-container {
    width: min(100% - 28px, 1180px);
  }

  .cw-header__inner {
    min-height: 70px;
  }

  .cw-brand img {
    width: 145px;
  }

  .cw-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .cw-nav {
    right: 14px;
    left: 14px;
  }

  .cw-hero {
    padding: 60px 0 75px;
  }

  .cw-hero h1 {
    margin-top: 17px;
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    line-height: 1;
  }

  .cw-hero__lead {
    margin-top: 21px !important;
    font-size: 1rem;
  }

  .cw-hero__actions {
    display: grid;
  }

  .cw-hero__actions .cw-button {
    width: 100%;
  }

  .cw-hero__proof {
    margin-top: 34px !important;
  }

  .cw-hero__proof li {
    padding-inline: 12px;
  }

  .cw-hero__proof strong {
    font-size: 0.84rem;
  }

  .cw-hero__proof span {
    font-size: 0.72rem;
  }

  .cw-hero__visual {
    width: calc(100% - 14px);
    min-height: 470px;
  }

  .cw-hero__frame {
    left: 0;
    border-radius: 145px 24px 24px 24px;
  }

  .cw-floating-card {
    min-width: 188px;
    padding: 11px 12px;
  }

  .cw-floating-card--top {
    top: 50px;
    right: -5px;
  }

  .cw-floating-card--bottom {
    bottom: 28px;
    left: -5px;
  }

  .cw-quick {
    margin-top: -22px;
  }

  .cw-quick__item {
    gap: 12px;
    padding: 20px;
  }

  .cw-section {
    padding: 78px 0;
  }

  .cw-section-heading {
    gap: 18px;
    margin-bottom: 32px;
    grid-template-columns: 1fr;
  }

  .cw-section-heading h2,
  .cw-about h2,
  .cw-resources h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cw-course-grid--presencial,
  .cw-online-grid,
  .cw-resources__grid {
    grid-template-columns: 1fr;
  }

  .cw-course--compact:last-child {
    grid-column: auto;
  }

  .cw-course__media {
    min-height: 260px;
  }

  .cw-course__body,
  .cw-course--compact {
    padding: 27px;
  }

  .cw-course__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw-course--compact {
    min-height: 310px;
  }

  .cw-online-card {
    min-height: 315px;
  }

  .cw-about__gallery {
    min-height: 470px;
  }

  .cw-about__photo--main {
    inset: 0 35px 100px 0;
  }

  .cw-about__photo--small {
    width: 62%;
    height: 210px;
  }

  .cw-about__seal {
    bottom: 78px;
    left: 4px;
    width: 112px;
    height: 112px;
    border-width: 6px;
  }

  .cw-resource {
    min-height: 330px;
  }

  .cw-cta {
    padding-bottom: 78px;
  }

  .cw-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .cw-button--light {
    width: 100%;
  }

  .cw-footer {
    padding-top: 58px;
  }

  .cw-footer__grid {
    gap: 38px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .cw-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .cw-hero__proof {
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .cw-hero__proof li {
    padding: 0;
    border-left: 0;
  }

  .cw-hero__visual {
    min-height: 430px;
  }

  .cw-floating-card--top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cw-home *,
  .cw-home *::before,
  .cw-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   V2.0 — ajuste visual para reproduzir a prévia premium
   ========================================================= */

.cw-home {
  --cw-preview-night: #140b1d;
  --cw-preview-night-2: #1b0e25;
  --cw-preview-orange: #ff5b12;
  --cw-preview-purple: #7b45db;
  background: #fff;
}

.cw-container {
  width: min(1318px, calc(100% - 64px));
}

/* Cabeçalho igual ao mockup */
.cw-header {
  position: sticky;
  top: 0;
  min-height: 68px;
  border: 0;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.cw-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 24px rgba(16, 10, 24, 0.08);
}

.cw-header__inner {
  min-height: 68px;
  gap: 30px;
}

.cw-brand img {
  width: 354px;
  height: auto;
}

.cw-nav {
  gap: 28px;
}

.cw-nav__list {
  gap: 18px;
}

.cw-nav__link {
  min-height: 40px;
  padding: 9px 4px;
  border-radius: 8px;
  color: #0f0c12 !important;
  font-size: 0.96rem;
  font-weight: 580;
  letter-spacing: -0.01em;
}

.cw-nav__link:hover,
.cw-nav__item--dropdown.is-open > .cw-nav__link {
  color: var(--cw-preview-orange) !important;
  background: transparent;
}

.cw-nav__caret {
  display: none;
}

.cw-button--header {
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 14px;
  color: #fff !important;
  background: var(--cw-preview-orange);
  box-shadow: none;
  font-size: 0.91rem;
  font-weight: 760;
}

.cw-button--header:hover {
  background: #ed4c06;
  box-shadow: 0 12px 26px rgba(255, 91, 18, 0.24);
}

/* Hero da prévia */
.cw-hero {
  min-height: 522px;
  padding: 39px 0 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 77% 52%, rgba(255, 82, 10, 0.35), transparent 22%),
    radial-gradient(circle at 90% 74%, rgba(106, 45, 177, 0.38), transparent 34%),
    linear-gradient(105deg, #110817 0%, #170b20 60%, #1a0d24 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.cw-hero::before {
  position: absolute;
  top: -104px;
  left: -126px;
  width: 233px;
  height: 390px;
  border: 1.5px solid rgba(255, 91, 18, 0.92);
  border-radius: 0 0 60px 0;
  content: "";
  pointer-events: none;
}

.cw-hero::after {
  position: absolute;
  z-index: 0;
  top: -80px;
  left: 52%;
  width: 248px;
  height: 244px;
  border-right: 1.5px solid rgba(255, 91, 18, 0.95);
  border-bottom: 1.5px solid rgba(255, 91, 18, 0.95);
  border-radius: 0 0 62px 0;
  background: transparent;
  content: "";
  filter: none;
  opacity: 1;
  pointer-events: none;
}

.cw-hero__ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.cw-hero__ambient--left {
  left: -70px;
  bottom: -95px;
  width: 230px;
  height: 190px;
  background: rgba(255, 92, 18, 0.55);
}

.cw-hero__ambient--right {
  right: -55px;
  top: 24px;
  width: 230px;
  height: 230px;
  background: rgba(255, 91, 18, 0.28);
}

.cw-hero__grid {
  position: relative;
  z-index: 2;
  min-height: 483px;
  align-items: start;
  gap: 0;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
}

.cw-hero__copy {
  position: relative;
  z-index: 5;
  padding-top: 4px;
}

.cw-kicker {
  display: block;
  color: var(--cw-preview-orange);
  font-size: 0.83rem;
  font-weight: 820;
  letter-spacing: 0.052em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cw-kicker span {
  display: none;
}

.cw-hero h1 {
  max-width: 745px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(3.15rem, 3.8vw, 4.05rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.cw-hero h1 em {
  color: var(--cw-preview-orange);
  font-style: normal;
}

.cw-hero__lead {
  max-width: 720px;
  margin-top: 15px !important;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.22vw, 1.25rem);
  line-height: 1.45;
}

.cw-hero__actions {
  gap: 22px;
  margin-top: 20px;
}

.cw-hero__actions .cw-button {
  min-height: 57px;
  border-radius: 12px;
  font-size: 1rem;
}

.cw-hero__actions .cw-button--primary {
  min-width: 257px;
  padding-inline: 28px;
  box-shadow: none;
}

.cw-hero__actions .cw-button--primary span {
  margin-left: 8px;
  font-size: 1.8em;
  font-weight: 350;
  line-height: .7;
}

.cw-hero__actions .cw-button--ghost {
  min-width: 186px;
  border: 2px solid rgba(255,255,255,.86);
  color: #fff !important;
  background: rgba(20, 11, 29, .22);
}

.cw-hero__proof {
  display: flex;
  max-width: 760px;
  gap: 28px;
  margin-top: 29px !important;
}

.cw-hero__proof li {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
}

.cw-hero__proof .cw-proof-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border: 2px solid var(--cw-preview-orange);
  border-radius: 50%;
  color: var(--cw-preview-orange);
}

.cw-proof-icon svg,
.cw-fact-icon svg,
.cw-quick__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cw-proof-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.cw-hero__proof .cw-proof-text strong {
  color: #fff;
  font-size: 0.89rem;
  font-weight: 760;
  white-space: nowrap;
}

.cw-hero__proof .cw-proof-text small {
  color: rgba(255,255,255,.48);
  font-size: 0.65rem;
  font-weight: 680;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.cw-hero__visual {
  position: relative;
  width: 100%;
  min-height: 483px;
  justify-self: stretch;
}

.cw-hero__alex {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: -13px;
  width: min(610px, 48vw);
  height: auto !important;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.16));
  transform: none !important;
}

.cw-hero__signature {
  position: absolute;
  z-index: 4;
  top: 67px;
  right: -1px;
  width: 170px;
  height: auto;
  pointer-events: none;
}

.cw-hero__experience {
  position: absolute;
  z-index: 4;
  top: 201px;
  right: -65px;
  color: rgba(216, 194, 238, 0.74);
  font-size: 0.61rem;
  font-weight: 680;
  letter-spacing: .25em;
  line-height: 1.85;
}

.cw-hero__experience span,
.cw-hero__side span {
  display: block;
  width: 29px;
  height: 2px;
  margin-top: 12px;
  background: var(--cw-preview-orange);
}

.cw-hero__side {
  position: absolute;
  z-index: 3;
  bottom: 43px;
  color: rgba(216, 194, 238, 0.66);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: .23em;
  line-height: 1.72;
}

.cw-hero__side--left {
  left: 40px;
}

.cw-hero__side--right {
  right: 32px;
  bottom: 39px;
}

/* Atalhos sobrepostos */
.cw-quick {
  position: relative;
  z-index: 8;
  margin-top: -54px;
}

.cw-quick__grid {
  display: grid;
  overflow: visible;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-quick__item {
  display: grid;
  min-height: 126px;
  align-items: center;
  gap: 20px;
  padding: 24px 29px;
  border: 1px solid rgba(28, 20, 34, .055);
  border-radius: 15px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 17px 28px rgba(25, 13, 35, .12);
  grid-template-columns: auto 1fr auto;
}

.cw-quick__item:hover {
  background: #fff;
  transform: translateY(-3px);
}

.cw-quick__item:last-child {
  border-right: 1px solid rgba(28, 20, 34, .055);
}

.cw-quick__icon {
  display: grid;
  width: 71px;
  height: 71px;
  place-items: center;
  border-radius: 16px;
}

.cw-quick__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.cw-quick__icon--orange {
  color: var(--cw-preview-orange);
  background: linear-gradient(135deg, #fff2e9, #ffe6d7);
}

.cw-quick__icon--purple {
  color: #8c55e9;
  background: linear-gradient(135deg, #f3eaff, #eadcff);
}

.cw-quick__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cw-quick__copy strong {
  color: #171121;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.cw-quick__copy small {
  color: #4e4561;
  font-size: 0.9rem;
  line-height: 1.35;
}

.cw-quick__arrow {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #131016;
  background: transparent;
  font-size: 2rem;
  font-weight: 300;
}

.cw-quick__item:hover .cw-quick__arrow {
  color: var(--cw-preview-orange);
  background: transparent;
  transform: translateX(4px);
}

/* Primeira seção visível na prévia */
.cw-presenciais {
  margin-top: -72px;
  padding-top: 168px;
}

.cw-section-heading--preview {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}

.cw-section-heading--preview .cw-eyebrow {
  color: var(--cw-preview-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .045em;
}

.cw-section-heading--preview h2 {
  margin-top: 4px;
  color: #17111f;
  font-size: clamp(2rem, 2.45vw, 2.55rem);
  font-weight: 840;
  letter-spacing: -.042em;
  line-height: 1.04;
}

.cw-see-all {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 6px;
  color: var(--cw-preview-orange) !important;
  font-size: 0.94rem;
  font-weight: 760;
}

.cw-see-all span {
  font-size: 1.8em;
  font-weight: 330;
  line-height: .8;
}

.cw-course--preview {
  min-height: 342px;
  overflow: hidden;
  border: 1px solid rgba(25,17,37,.06);
  border-radius: 12px;
  box-shadow: 0 9px 28px rgba(24, 16, 31, .07);
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}

.cw-course--preview:hover {
  transform: none;
}

.cw-course--preview .cw-course__media {
  min-height: 342px;
}

.cw-course--preview .cw-course__media::after {
  display: none;
}

.cw-course--preview .cw-course__body {
  justify-content: center;
  padding: 28px 34px;
}

.cw-course--preview .cw-course__meta span {
  padding: 4px 14px;
  color: var(--cw-preview-orange);
  background: #fff0e5;
  font-size: .71rem;
  font-weight: 780;
}

.cw-course--preview h3 {
  margin-top: 8px;
  font-size: clamp(1.4rem, 1.75vw, 1.85rem);
  letter-spacing: -.04em;
}

.cw-course--preview .cw-course__body > p {
  margin-top: 4px;
  max-width: 650px;
  color: #524965;
  font-size: .95rem;
  line-height: 1.45;
}

.cw-course__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 31px;
  margin-top: 20px !important;
}

.cw-course__facts li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #211a28;
  font-size: .8rem;
  font-weight: 650;
  white-space: nowrap;
}

.cw-fact-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--cw-preview-orange);
}

.cw-fact-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* Evita que o tema/Elementor coloque uma segunda barra por cima desta home. */
body.cwhm-landing-page .site-header,
body.cwhm-landing-page #site-header,
body.cwhm-landing-page #masthead,
body.cwhm-landing-page .ct-header,
body.cwhm-landing-page .main-header-bar-wrap,
body.cwhm-landing-page .ast-above-header-wrap,
body.cwhm-landing-page #top-bar-wrap,
body.cwhm-landing-page .elementor-location-header,
body.cwhm-landing-page .site-footer,
body.cwhm-landing-page #colophon,
body.cwhm-landing-page .elementor-location-footer,
body.cwhm-landing-page .entry-header,
body.cwhm-landing-page .page-header {
  display: none !important;
}

body.cwhm-landing-page,
body.cwhm-landing-page #page,
body.cwhm-landing-page #content,
body.cwhm-landing-page .site-content,
body.cwhm-landing-page .content-area,
body.cwhm-landing-page main.site-main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

@media (max-width: 1280px) {
  .cw-container {
    width: min(1180px, calc(100% - 48px));
  }

  .cw-brand img {
    width: 305px;
  }

  .cw-nav__list {
    gap: 12px;
  }

  .cw-hero__experience,
  .cw-hero__side {
    display: none;
  }

  .cw-hero__alex {
    right: -5px;
    width: min(565px, 48vw);
  }

  .cw-hero__signature {
    right: -18px;
  }
}

@media (max-width: 1080px) {
  .cw-brand img {
    width: 270px;
  }

  .cw-nav {
    gap: 16px;
  }

  .cw-nav__link {
    font-size: .86rem;
  }

  .cw-hero__grid {
    grid-template-columns: minmax(0, 59%) minmax(0, 41%);
  }

  .cw-hero h1 {
    font-size: clamp(2.8rem, 5.3vw, 3.55rem);
  }

  .cw-hero__proof {
    gap: 16px;
  }

  .cw-proof-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .cw-hero__proof .cw-proof-text strong {
    font-size: .78rem;
  }

  .cw-quick__item {
    gap: 14px;
    padding: 22px 20px;
  }

  .cw-quick__icon {
    width: 62px;
    height: 62px;
  }

  .cw-quick__copy strong {
    font-size: 1rem;
  }

  .cw-quick__copy small {
    font-size: .82rem;
  }
}

@media (max-width: 960px) {
  .cw-header__inner {
    min-height: 72px;
  }

  .cw-brand img {
    width: 285px;
  }

  .cw-menu-toggle {
    display: inline-flex;
  }

  .cw-nav {
    top: calc(100% + 1px);
  }

  .cw-hero {
    min-height: auto;
    padding: 58px 0 0;
  }

  .cw-hero::after {
    left: 60%;
  }

  .cw-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .cw-hero__copy {
    max-width: 760px;
  }

  .cw-hero h1 {
    font-size: clamp(3rem, 8vw, 4.4rem);
  }

  .cw-hero__visual {
    width: min(100%, 700px);
    min-height: 520px;
    margin-top: 22px;
    justify-self: center;
  }

  .cw-hero__alex {
    right: 5%;
    width: min(580px, 76vw);
  }

  .cw-hero__signature {
    top: 80px;
    right: 4%;
    width: 155px;
  }

  .cw-quick {
    margin-top: -38px;
  }

  .cw-quick__grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .cw-quick__item {
    min-height: 104px;
    border-bottom: 1px solid rgba(28, 20, 34, .055);
  }

  .cw-presenciais {
    margin-top: -42px;
    padding-top: 120px;
  }

  .cw-course--preview {
    grid-template-columns: 1fr;
  }

  .cw-course--preview .cw-course__media {
    min-height: 390px;
  }
}

@media (max-width: 767px) {
  .cw-container {
    width: min(100% - 28px, 1180px);
  }

  .cw-header__inner {
    min-height: 66px;
  }

  .cw-brand img {
    width: 225px;
  }

  .cw-hero {
    padding-top: 43px;
  }

  .cw-hero::before,
  .cw-hero::after {
    opacity: .55;
  }

  .cw-kicker {
    font-size: .7rem;
  }

  .cw-hero h1 {
    margin-top: 13px;
    font-size: clamp(2.55rem, 12vw, 3.55rem);
    line-height: .98;
  }

  .cw-hero__lead {
    margin-top: 17px !important;
    font-size: 1rem;
  }

  .cw-hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 21px;
  }

  .cw-hero__actions .cw-button,
  .cw-hero__actions .cw-button--primary,
  .cw-hero__actions .cw-button--ghost {
    width: 100%;
    min-width: 0;
  }

  .cw-hero__proof {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .cw-hero__proof li {
    width: 100%;
  }

  .cw-hero__visual {
    min-height: 430px;
    margin-top: 4px;
  }

  .cw-hero__alex {
    right: 50%;
    width: min(540px, 106vw);
    max-width: none;
    transform: translateX(50%) !important;
  }

  .cw-hero__signature {
    top: 58px;
    right: 0;
    width: 126px;
  }

  .cw-quick {
    margin-top: -24px;
  }

  .cw-quick__item {
    min-height: 98px;
    padding: 17px;
  }

  .cw-quick__icon {
    width: 58px;
    height: 58px;
  }

  .cw-quick__copy small br {
    display: none;
  }

  .cw-presenciais {
    margin-top: -28px;
    padding-top: 96px;
  }

  .cw-section-heading--preview {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .cw-section-heading--preview h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .cw-course--preview .cw-course__media {
    min-height: 250px;
  }

  .cw-course--preview .cw-course__body {
    padding: 25px;
  }

  .cw-course__facts {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .cw-brand img {
    width: 190px;
  }

  .cw-menu-toggle {
    padding-inline: 9px;
  }

  .cw-hero h1 br {
    display: none;
  }

  .cw-hero__visual {
    min-height: 375px;
  }

  .cw-hero__signature {
    display: none;
  }

  .cw-quick__item {
    grid-template-columns: auto 1fr;
  }

  .cw-quick__arrow {
    display: none;
  }
}

/* ===== Ajustes finais para ficar igual à prévia PNG ===== */
.cw-header__inner {
  min-height: 78px;
}

.cw-brand img {
  width: min(361px, 100%);
  height: auto;
}

.cw-button--header {
  background: var(--cw-orange);
}

.cw-button--header:hover {
  background: #ff6b22;
  box-shadow: 0 14px 34px rgba(255, 90, 10, 0.26);
}

.cw-hero__visual {
  width: 100%;
  min-height: 620px;
  justify-self: stretch;
}

.cw-hero__alex {
  right: -10px;
  bottom: 0;
  width: min(500px, 38vw);
  height: auto !important;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.16));
  transform: none !important;
}

.cw-hero__signature {
  z-index: 3;
  top: 74px;
  right: 28px;
  width: 188px;
  height: auto;
}

.cw-hero__experience {
  top: 208px;
  right: -36px;
}

@media (max-width: 1280px) {
  .cw-brand img {
    width: 330px;
  }

  .cw-hero__visual {
    min-height: 585px;
  }

  .cw-hero__alex {
    right: -6px;
    width: min(470px, 39vw);
  }

  .cw-hero__signature {
    right: 10px;
    top: 72px;
    width: 176px;
  }

  .cw-hero__experience {
    right: -10px;
  }
}

@media (max-width: 1080px) {
  .cw-brand img {
    width: 300px;
  }

  .cw-hero__visual {
    min-height: 560px;
  }

  .cw-hero__alex {
    right: 0;
    width: min(430px, 42vw);
  }

  .cw-hero__signature {
    top: 70px;
    right: 4px;
    width: 165px;
  }
}

@media (max-width: 767px) {
  .cw-brand img {
    width: 235px;
  }

  .cw-hero__visual {
    min-height: 432px;
  }

  .cw-hero__alex {
    right: 50%;
    bottom: 0;
    width: min(425px, 95vw);
    transform: translateX(50%) !important;
  }

  .cw-hero__signature {
    top: 54px;
    right: 6px;
    width: 126px;
  }

  .cw-hero__experience {
    display: none;
  }
}

/* ===== Correção da logo oficial e posicionamento do Alex/assinatura ===== */
.cw-brand img {
  width: min(430px, 100%) !important;
  height: auto !important;
  max-width: 100% !important;
}

.cw-hero__visual {
  min-height: 650px !important;
}

.cw-hero__alex {
  right: -4px !important;
  bottom: 0 !important;
  width: min(455px, 34vw) !important;
  max-width: none !important;
  height: auto !important;
  z-index: 2 !important;
}

.cw-hero__signature {
  top: 66px !important;
  right: -2px !important;
  width: 172px !important;
  height: auto !important;
  z-index: 3 !important;
}

.cw-hero__experience {
  top: 210px !important;
  right: -28px !important;
}

@media (max-width: 1280px) {
  .cw-brand img {
    width: 370px !important;
  }

  .cw-hero__visual {
    min-height: 610px !important;
  }

  .cw-hero__alex {
    width: min(425px, 35vw) !important;
    right: -2px !important;
  }

  .cw-hero__signature {
    top: 64px !important;
    right: -4px !important;
    width: 160px !important;
  }
}

@media (max-width: 1080px) {
  .cw-brand img {
    width: 320px !important;
  }

  .cw-hero__visual {
    min-height: 560px !important;
  }

  .cw-hero__alex {
    width: min(392px, 37vw) !important;
    right: 0 !important;
  }

  .cw-hero__signature {
    top: 60px !important;
    right: 0 !important;
    width: 146px !important;
  }
}

@media (max-width: 767px) {
  .cw-brand img {
    width: 250px !important;
  }

  .cw-hero__visual {
    min-height: 430px !important;
  }

  .cw-hero__alex {
    right: 50% !important;
    bottom: 0 !important;
    width: min(390px, 92vw) !important;
    transform: translateX(50%) !important;
  }

  .cw-hero__signature {
    top: 54px !important;
    right: 8px !important;
    width: 118px !important;
  }
}

/* ===== v2.0.3 ajuste final: logo oficial + assinatura mais à direita ===== */
.cw-brand img {
  width: min(430px, 100%) !important;
  height: auto !important;
  max-width: 100% !important;
}

.cw-hero__visual {
  min-height: 650px !important;
}

.cw-hero__alex {
  right: -2px !important;
  bottom: 0 !important;
  width: min(455px, 34vw) !important;
  max-width: none !important;
  height: auto !important;
  z-index: 2 !important;
}

.cw-hero__signature {
  top: 66px !important;
  right: -128px !important;
  width: 172px !important;
  height: auto !important;
  z-index: 3 !important;
}

.cw-hero__experience {
  top: 212px !important;
  right: -148px !important;
}

@media (max-width: 1280px) {
  .cw-brand img {
    width: 370px !important;
  }

  .cw-hero__visual {
    min-height: 610px !important;
  }

  .cw-hero__alex {
    width: min(425px, 35vw) !important;
    right: 0 !important;
  }

  .cw-hero__signature {
    top: 64px !important;
    right: -108px !important;
    width: 160px !important;
  }

  .cw-hero__experience {
    right: -118px !important;
  }
}

@media (max-width: 1080px) {
  .cw-brand img {
    width: 320px !important;
  }

  .cw-hero__visual {
    min-height: 560px !important;
  }

  .cw-hero__alex {
    width: min(392px, 37vw) !important;
    right: 0 !important;
  }

  .cw-hero__signature {
    top: 60px !important;
    right: -72px !important;
    width: 146px !important;
  }

  .cw-hero__experience {
    right: -82px !important;
  }
}

@media (max-width: 767px) {
  .cw-brand img {
    width: 250px !important;
  }

  .cw-hero__visual {
    min-height: 430px !important;
  }

  .cw-hero__alex {
    right: 50% !important;
    bottom: 0 !important;
    width: min(390px, 92vw) !important;
    transform: translateX(50%) !important;
  }

  .cw-hero__signature {
    top: 54px !important;
    right: -8px !important;
    width: 118px !important;
  }

  .cw-hero__experience {
    display: none !important;
  }
}

/* ===== v2.0.4 correção: logo menor + menu desktop visível + assinatura mais à direita ===== */
.cw-header__inner {
  gap: 18px !important;
}

.cw-brand {
  flex: 0 0 auto !important;
}

.cw-brand img {
  width: 320px !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (min-width: 961px) {
  .cw-menu-toggle {
    display: none !important;
  }

  .cw-nav {
    position: static !important;
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    max-height: none !important;
  }

  .cw-nav__list {
    display: flex !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 2px !important;
  }

  .cw-nav__link {
    padding-inline: 12px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
  }
}

.cw-hero__visual {
  min-height: 650px !important;
}

.cw-hero__alex {
  right: 0 !important;
  bottom: 0 !important;
  width: min(455px, 34vw) !important;
}

.cw-hero__signature {
  top: 64px !important;
  right: -165px !important;
  width: 170px !important;
  z-index: 3 !important;
}

.cw-hero__experience {
  top: 210px !important;
  right: -185px !important;
}

@media (max-width: 1280px) {
  .cw-brand img {
    width: 295px !important;
  }

  .cw-nav {
    gap: 12px !important;
  }

  .cw-nav__link {
    padding-inline: 10px !important;
    font-size: 0.86rem !important;
  }

  .cw-button--header {
    padding-inline: 14px !important;
    font-size: 0.82rem !important;
  }

  .cw-hero__alex {
    width: min(425px, 35vw) !important;
  }

  .cw-hero__signature {
    right: -145px !important;
    width: 156px !important;
  }

  .cw-hero__experience {
    right: -160px !important;
  }
}

@media (max-width: 1080px) {
  .cw-brand img {
    width: 270px !important;
  }

  .cw-hero__alex {
    width: min(392px, 37vw) !important;
  }

  .cw-hero__signature {
    right: -100px !important;
    width: 142px !important;
  }

  .cw-hero__experience {
    right: -108px !important;
  }
}

@media (max-width: 960px) {
  .cw-brand img {
    width: 250px !important;
  }
}

@media (max-width: 767px) {
  .cw-brand img {
    width: 220px !important;
  }

  .cw-hero__signature {
    right: -10px !important;
    width: 115px !important;
  }
}

/* ======================================================================
   CATEGORY ARCHIVES — /category/...
   ====================================================================== */
body.cwhm-category-page {
  margin: 0 !important;
  background: #fff;
}

body.cwhm-category-page > header,
body.cwhm-category-page > footer,
body.cwhm-category-page .site-header,
body.cwhm-category-page #site-header,
body.cwhm-category-page #masthead,
body.cwhm-category-page .ct-header,
body.cwhm-category-page .main-header-bar-wrap,
body.cwhm-category-page .ast-above-header-wrap,
body.cwhm-category-page #top-bar-wrap,
body.cwhm-category-page .elementor-location-header,
body.cwhm-category-page .site-footer,
body.cwhm-category-page #colophon,
body.cwhm-category-page .elementor-location-footer {
  display: none !important;
}

.cw-category .cw-header {
  position: sticky;
  top: 0;
}

body.admin-bar .cw-category .cw-header {
  top: 32px;
}

.cw-category-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 72px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    radial-gradient(circle at 84% 28%, rgba(111,53,165,.44), transparent 34%),
    #171020;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-category-hero::before {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -130px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,90,10,.42);
  border-radius: 50%;
  content: "";
}

.cw-category-hero::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -180px;
  width: 390px;
  height: 320px;
  border-radius: 50%;
  background: #ff5a0a;
  content: "";
  filter: blur(115px);
  opacity: .17;
}

.cw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.56);
  font-size: .78rem;
  font-weight: 680;
}

.cw-breadcrumb a {
  color: rgba(255,255,255,.72) !important;
}

.cw-breadcrumb a:hover {
  color: #ff6a1c !important;
}

.cw-breadcrumb strong {
  color: #fff;
  font-weight: 760;
}

.cw-category-hero__copy {
  max-width: 900px;
}

.cw-category-hero h1 {
  max-width: 900px;
  margin-top: 15px;
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.cw-category-hero h1 em {
  color: #ff5a0a;
  font-style: normal;
}

.cw-category-hero__desc {
  max-width: 760px;
  margin-top: 22px !important;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.cw-category-hero__desc p {
  margin: 0;
}

.cw-category-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cw-category-hero__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.73);
  background: rgba(255,255,255,.06);
  font-size: .76rem;
  font-weight: 700;
}

.cw-category-listing {
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at 95% 0%, rgba(199,164,243,.18), transparent 24%),
    #fff;
}

.cw-category-listing__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.cw-category-listing__heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 880;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.cw-category-back {
  flex: 0 0 auto;
  padding-bottom: 6px;
  color: #ff5a0a !important;
  font-size: .88rem;
  font-weight: 800;
}

.cw-post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cw-post-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(25,17,37,.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(35,19,48,.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cw-post-card:hover {
  border-color: rgba(255,90,10,.2);
  box-shadow: 0 24px 60px rgba(35,19,48,.13);
  transform: translateY(-4px);
}

.cw-post-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1b1224;
}

.cw-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.cw-post-card:hover .cw-post-card__media img {
  transform: scale(1.035);
}

.cw-post-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(111,53,165,.55), transparent 38%),
    #171020;
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.cw-post-card__placeholder b {
  color: #ff5a0a;
  font-size: 3.2rem;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .9;
}

.cw-post-card__placeholder small {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cw-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px 21px 22px;
}

.cw-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.cw-post-card__meta span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: #5c4d67;
  background: #f6effb;
  font-size: .65rem;
  font-weight: 760;
  line-height: 1;
}

.cw-post-card__meta span:last-child {
  color: #d94300;
  background: #fff0e7;
}

.cw-post-card h3 {
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.cw-post-card h3 a:hover {
  color: #ff5a0a !important;
}

.cw-post-card__body > p {
  margin-top: 12px !important;
  color: #665d6f;
  font-size: .91rem;
  line-height: 1.62;
}

.cw-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 19px;
  color: #ff5a0a !important;
  font-size: .84rem;
  font-weight: 830;
}

.cw-pagination {
  margin-top: 44px;
}

.cw-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.cw-pagination .page-numbers li {
  list-style: none;
}

.cw-pagination a.page-numbers,
.cw-pagination span.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(25,17,37,.11);
  border-radius: 12px;
  color: #291c36 !important;
  background: #fff;
  font-size: .82rem;
  font-weight: 780;
}

.cw-pagination span.page-numbers.current,
.cw-pagination a.page-numbers:hover {
  border-color: #ff5a0a;
  color: #fff !important;
  background: #ff5a0a;
}

.cw-category-empty {
  padding: 46px;
  border: 1px dashed rgba(25,17,37,.18);
  border-radius: 22px;
  text-align: center;
  background: #fffaf4;
}

.cw-category-empty h2 {
  font-size: 1.7rem;
}

.cw-category-empty p {
  margin-top: 8px !important;
  color: #665d6f;
}

.cw-category-cta {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(111,53,165,.45), transparent 34%),
    #171020;
}

.cw-category-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cw-category-cta__inner > div:first-child {
  max-width: 700px;
}

.cw-category-cta h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 880;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.cw-category-cta p:not(.cw-kicker) {
  margin-top: 13px !important;
  color: rgba(255,255,255,.68);
}

.cw-category-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .cw-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .cw-category .cw-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .cw-category-hero {
    padding: 48px 0 54px;
  }

  .cw-category-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .cw-category-listing {
    padding: 54px 0 66px;
  }

  .cw-category-listing__heading,
  .cw-category-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw-post-grid {
    grid-template-columns: 1fr;
  }

  .cw-category-cta__actions {
    width: 100%;
  }

  .cw-category-cta__actions .cw-button {
    width: 100%;
  }
}

/* ======================================================================
   CALCULADORA — /calculadora-de-custo-de-caneca-para-sublimacao/
   ====================================================================== */
body.cwhm-calculator-template {
  margin: 0 !important;
  background: #fff;
}

body.cwhm-calculator-template > header,
body.cwhm-calculator-template > footer,
body.cwhm-calculator-template .site-header,
body.cwhm-calculator-template #site-header,
body.cwhm-calculator-template #masthead,
body.cwhm-calculator-template .ct-header,
body.cwhm-calculator-template .main-header-bar-wrap,
body.cwhm-calculator-template .ast-above-header-wrap,
body.cwhm-calculator-template #top-bar-wrap,
body.cwhm-calculator-template .elementor-location-header,
body.cwhm-calculator-template .site-footer,
body.cwhm-calculator-template #colophon,
body.cwhm-calculator-template .elementor-location-footer {
  display: none !important;
}

.cw-calculator-page .cw-header {
  position: sticky;
  top: 0;
}

body.admin-bar .cw-calculator-page .cw-header {
  top: 32px;
}

.cw-nav__link.is-current {
  color: #ff5a0a !important;
  background: #fff0e7;
}

.cw-calculator-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 76px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    radial-gradient(circle at 83% 34%, rgba(111,53,165,.48), transparent 34%),
    #171020;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-calculator-hero::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -120px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255,90,10,.42);
  border-radius: 50%;
  content: "";
}

.cw-calculator-hero::after {
  position: absolute;
  z-index: -1;
  right: 12%;
  bottom: -205px;
  width: 420px;
  height: 350px;
  border-radius: 50%;
  background: #ff5a0a;
  content: "";
  filter: blur(120px);
  opacity: .17;
}

.cw-calculator-hero__grid {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) 210px;
}

.cw-calculator-hero__copy {
  max-width: 930px;
}

.cw-calculator-hero h1 {
  max-width: 950px;
  margin-top: 15px;
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.cw-calculator-hero__desc {
  max-width: 760px;
  margin-top: 22px !important;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.cw-calculator-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cw-calculator-hero__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.73);
  background: rgba(255,255,255,.06);
  font-size: .76rem;
  font-weight: 700;
}

.cw-calculator-hero__icon {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 42px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 25px 65px rgba(0,0,0,.22);
  transform: rotate(4deg);
}

.cw-calculator-hero__icon svg {
  width: 118px;
  height: 118px;
  stroke: #ff5a0a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cw-calculator-section {
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 94% 0%, rgba(199,164,243,.18), transparent 24%),
    #fdfcfe;
}

.cw-calculator-section__heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.cw-calculator-section__heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 880;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.cw-calculator-section__heading > p:last-child {
  margin-top: 12px !important;
  color: #665d6f;
  line-height: 1.7;
}

.cw-calculator-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 38px);
  border: 1px solid rgba(25,17,37,.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 75px rgba(35,19,48,.11);
}

.cw-calculator-shell::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5a0a, #7c3eb0, #ff5a0a);
  content: "";
}

.cw-calculator-content {
  min-width: 0;
  color: #24192f;
}

.cw-calculator-content > :first-child {
  margin-top: 0 !important;
}

.cw-calculator-content img,
.cw-calculator-content iframe,
.cw-calculator-content video,
.cw-calculator-content canvas {
  max-width: 100%;
}

.cw-calculator-content iframe {
  width: 100%;
}

.cw-calculator-content h1,
.cw-calculator-content h2,
.cw-calculator-content h3,
.cw-calculator-content h4 {
  color: #1d1426;
  font-weight: 850;
  letter-spacing: -.025em;
}

.cw-calculator-content input,
.cw-calculator-content select,
.cw-calculator-content textarea {
  max-width: 100%;
  border-radius: 10px;
}

.cw-calculator-content button,
.cw-calculator-content input[type="button"],
.cw-calculator-content input[type="submit"],
.cw-calculator-content .button {
  border-radius: 11px;
}

.cw-calculator-content table {
  width: 100%;
  max-width: 100%;
}

.cw-calculator-content .elementor,
.cw-calculator-content .elementor-section,
.cw-calculator-content .elementor-container,
.cw-calculator-content .elementor-widget-wrap {
  max-width: 100%;
}

.cw-calculator-help {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(111,53,165,.45), transparent 34%),
    #171020;
}

.cw-calculator-help__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cw-calculator-help__inner > div:first-child {
  max-width: 700px;
}

.cw-calculator-help h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 880;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.cw-calculator-help p:not(.cw-kicker) {
  margin-top: 13px !important;
  color: rgba(255,255,255,.68);
}

.cw-calculator-help__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .cw-calculator-hero__grid {
    grid-template-columns: 1fr;
  }

  .cw-calculator-hero__icon {
    display: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .cw-calculator-page .cw-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .cw-calculator-hero {
    padding: 48px 0 56px;
  }

  .cw-calculator-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.55rem);
  }

  .cw-calculator-section {
    padding: 54px 0 66px;
  }

  .cw-calculator-shell {
    padding: 17px;
    border-radius: 20px;
  }

  .cw-calculator-help__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw-calculator-help__actions {
    width: 100%;
  }

  .cw-calculator-help__actions .cw-button {
    width: 100%;
  }
}

/* ============================================================
   PRODUTO WOOCOMMERCE — PADRÃO VISUAL COMUNIDADEWEB
   ============================================================ */
body.cwhm-product-template {
  margin: 0 !important;
  background: #f7f4fb !important;
}

body.cwhm-product-template > :not(.cw-home):not(script):not(style) {
  max-width: none;
}

.cw-product-page {
  background: #f7f4fb;
}

.cw-product-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 66px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 82% 34%, rgba(111,53,165,.48), transparent 36%),
    #171020;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-product-hero::after {
  position: absolute;
  z-index: -1;
  right: -6%;
  bottom: -210px;
  width: 520px;
  height: 430px;
  border-radius: 50%;
  background: #ff5a0a;
  content: "";
  filter: blur(115px);
  opacity: .2;
}

.cw-product-hero__copy {
  max-width: 920px;
  padding-top: 24px;
}

.cw-product-hero h1 {
  max-width: 940px;
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: 1.01;
}

.cw-product-hero__desc {
  max-width: 820px;
  margin-top: 22px !important;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.cw-product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cw-product-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 720;
}

.cw-product-section {
  padding: 62px 0 72px;
}

.cw-product-shell {
  padding: clamp(20px, 3.2vw, 42px);
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(35,19,48,.12);
}

.cw-product-page .woocommerce-notices-wrapper {
  margin-bottom: 24px;
}

.cw-product-page .woocommerce-message,
.cw-product-page .woocommerce-info,
.cw-product-page .woocommerce-error {
  border: 1px solid rgba(25,17,37,.09) !important;
  border-top: 0 !important;
  border-radius: 14px !important;
  background: #f8f4fd !important;
  box-shadow: none !important;
}

.cw-product-page .woocommerce-message::before,
.cw-product-page .woocommerce-info::before {
  color: #6f35a5 !important;
}

.cw-product-page div.product {
  margin: 0 !important;
}

.cw-product-page div.product::after {
  display: table;
  clear: both;
  content: "";
}

.cw-product-page div.product .woocommerce-product-gallery {
  width: 48% !important;
  margin: 0 !important;
  float: left !important;
}

.cw-product-page div.product .woocommerce-product-gallery__wrapper,
.cw-product-page div.product .woocommerce-product-gallery__image {
  border-radius: 22px;
}

.cw-product-page div.product .woocommerce-product-gallery img {
  width: 100%;
  border-radius: 22px;
  background: #f7f4fb;
  box-shadow: 0 16px 38px rgba(25,17,37,.10);
}

.cw-product-page div.product .summary {
  width: 46% !important;
  margin: 0 !important;
  padding: 8px 4px 0 34px;
  float: right !important;
}

.cw-product-page div.product .summary > .product_title {
  display: none !important;
}

.cw-product-page div.product .summary .price {
  margin: 0 0 22px !important;
  color: #ff5a0a !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
  font-weight: 880 !important;
  letter-spacing: -.04em;
  line-height: 1 !important;
}

.cw-product-page div.product .summary .price del {
  margin-right: 10px;
  color: #8b8491 !important;
  font-size: .55em;
  opacity: 1 !important;
}

.cw-product-page div.product .summary .price ins {
  color: #ff5a0a !important;
  text-decoration: none !important;
}

.cw-product-page div.product .woocommerce-product-details__short-description {
  margin-bottom: 26px;
  color: #574f62;
  font-size: 1rem;
  line-height: 1.75;
}

.cw-product-page div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin: 26px 0 !important;
  padding: 18px;
  border: 1px solid rgba(255,90,10,.14);
  border-radius: 18px;
  background: #fff8f3;
}

.cw-product-page div.product form.cart .quantity {
  margin: 0 !important;
}

.cw-product-page div.product form.cart .qty {
  min-height: 54px;
  border: 1px solid rgba(25,17,37,.14);
  border-radius: 12px;
  background: #fff;
}

.cw-product-page div.product form.cart .single_add_to_cart_button,
.cw-product-page .woocommerce button.button.alt,
.cw-product-page .woocommerce a.button.alt {
  min-height: 54px !important;
  padding: 14px 28px !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: #ff5a0a !important;
  box-shadow: 0 14px 34px rgba(255,90,10,.24) !important;
  font-size: .95rem !important;
  font-weight: 820 !important;
  line-height: 1.2 !important;
  transition: transform .17s ease, box-shadow .17s ease, background .17s ease !important;
}

.cw-product-page div.product form.cart .single_add_to_cart_button:hover,
.cw-product-page .woocommerce button.button.alt:hover,
.cw-product-page .woocommerce a.button.alt:hover {
  background: #ff6a20 !important;
  box-shadow: 0 18px 42px rgba(255,90,10,.32) !important;
  transform: translateY(-2px);
}

.cw-product-page div.product .product_meta {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(25,17,37,.09);
  color: #6f6876;
  font-size: .84rem;
}

.cw-product-page div.product .product_meta a {
  color: #6f35a5 !important;
  font-weight: 700;
}

.cw-product-page div.product .woocommerce-tabs {
  clear: both;
  padding-top: 55px;
}

.cw-product-page div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px !important;
  padding: 0 !important;
}

.cw-product-page div.product .woocommerce-tabs ul.tabs::before,
.cw-product-page div.product .woocommerce-tabs ul.tabs li::before,
.cw-product-page div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.cw-product-page div.product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(25,17,37,.10) !important;
  border-radius: 12px !important;
  background: #f7f4fb !important;
}

.cw-product-page div.product .woocommerce-tabs ul.tabs li.active {
  border-color: rgba(255,90,10,.20) !important;
  background: #fff3ea !important;
}

.cw-product-page div.product .woocommerce-tabs ul.tabs li a {
  padding: 11px 17px !important;
  color: #191125 !important;
  font-size: .87rem !important;
  font-weight: 760 !important;
}

.cw-product-page div.product .woocommerce-tabs .panel {
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 20px;
  color: #574f62;
  background: #faf8fc;
  line-height: 1.75;
}

.cw-product-page div.product .woocommerce-tabs .panel h2,
.cw-product-page .related.products > h2,
.cw-product-page .upsells.products > h2 {
  margin: 0 0 20px;
  color: #191125;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 850;
  letter-spacing: -.035em;
}

.cw-product-page .related.products,
.cw-product-page .upsells.products {
  clear: both;
  padding-top: 55px;
}

.cw-product-page .related.products ul.products,
.cw-product-page .upsells.products ul.products {
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
}

.cw-product-page .related.products ul.products li.product,
.cw-product-page .upsells.products ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(35,19,48,.07);
}

.cw-product-page .related.products ul.products li.product img,
.cw-product-page .upsells.products ul.products li.product img {
  border-radius: 13px;
}

.cw-product-page .related.products ul.products li.product .woocommerce-loop-product__title,
.cw-product-page .upsells.products ul.products li.product .woocommerce-loop-product__title {
  color: #191125;
  font-size: 1rem !important;
  font-weight: 800;
  line-height: 1.35;
}

.cw-product-page .related.products ul.products li.product .price,
.cw-product-page .upsells.products ul.products li.product .price {
  color: #ff5a0a !important;
  font-weight: 820 !important;
}

.cw-product-trust {
  padding: 0 0 72px;
  background: #f7f4fb;
}

.cw-product-trust__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.cw-product-trust__item {
  display: flex;
  min-height: 140px;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(35,19,48,.07);
}

.cw-product-trust__item strong {
  color: #191125;
  font-size: 1.02rem;
  font-weight: 820;
}

.cw-product-trust__item span {
  margin-top: 7px;
  color: #6a6271;
  font-size: .88rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .cw-product-page div.product .woocommerce-product-gallery,
  .cw-product-page div.product .summary {
    width: 100% !important;
    float: none !important;
  }

  .cw-product-page div.product .summary {
    padding: 32px 0 0;
  }

  .cw-product-trust__grid {
    grid-template-columns: 1fr;
  }

  .cw-product-page .related.products ul.products,
  .cw-product-page .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}

@media (max-width: 620px) {
  .cw-product-hero {
    padding: 42px 0 50px;
  }

  .cw-product-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .cw-product-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .cw-product-page div.product form.cart {
    display: grid;
  }

  .cw-product-page div.product form.cart .single_add_to_cart_button {
    width: 100%;
  }

  .cw-product-page .related.products ul.products,
  .cw-product-page .upsells.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   v2.3.1 — acabamento dos produtos relacionados e revistas
   ============================================================ */
.cw-product-page .related.products ul.products,
.cw-product-page .upsells.products ul.products {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 22px !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.cw-product-page .related.products ul.products::before,
.cw-product-page .related.products ul.products::after,
.cw-product-page .upsells.products ul.products::before,
.cw-product-page .upsells.products ul.products::after {
  display: none !important;
  content: none !important;
}

.cw-product-page .related.products ul.products li.product,
.cw-product-page .upsells.products ul.products li.product {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 14px 14px 16px !important;
  float: none !important;
  clear: none !important;
  flex-direction: column !important;
  border: 1px solid rgba(25,17,37,.08) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(35,19,48,.08) !important;
  overflow: hidden;
}

.cw-product-page .related.products ul.products li.product > a.woocommerce-LoopProduct-link,
.cw-product-page .upsells.products ul.products li.product > a.woocommerce-LoopProduct-link {
  display: flex !important;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.cw-product-page .related.products ul.products li.product img,
.cw-product-page .upsells.products ul.products li.product img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10;
  margin: 0 0 16px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #f5f1f8;
}

.cw-product-page .related.products ul.products li.product .woocommerce-loop-product__title,
.cw-product-page .upsells.products ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #191125 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.cw-product-page .related.products ul.products li.product .star-rating,
.cw-product-page .upsells.products ul.products li.product .star-rating {
  margin: 0 0 10px !important;
}

.cw-product-page .related.products ul.products li.product .price,
.cw-product-page .upsells.products ul.products li.product .price {
  margin: auto 0 12px !important;
  color: #ff5a0a !important;
  font-size: 1.05rem !important;
  font-weight: 850 !important;
}

.cw-product-page .related.products ul.products li.product .button,
.cw-product-page .upsells.products ul.products li.product .button {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0 !important;
  padding: 11px 14px !important;
  border-radius: 12px !important;
  color: #fff !important;
  background: #191125 !important;
  font-size: .83rem !important;
  font-weight: 800 !important;
  text-align: center;
}

.cw-product-page .related.products ul.products li.product .button:hover,
.cw-product-page .upsells.products ul.products li.product .button:hover {
  background: #6f35a5 !important;
}

/* Bloco "Já escreveu para diversas revistas..." preparado pelo JS. */
.cw-product-page .cw-magazine-intro {
  margin-top: 34px !important;
  margin-bottom: 16px !important;
  color: #191125 !important;
  font-weight: 760;
}

.cw-product-page .cw-magazine-logos {
  display: grid;
  width: 100%;
  margin: 12px 0 30px;
  padding: 20px;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 18px;
  background: #fff;
}

.cw-product-page .cw-magazine-logo {
  display: flex;
  min-width: 0;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(25,17,37,.07);
  border-radius: 14px;
  background: #faf8fc;
}

.cw-product-page .cw-magazine-logo a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.cw-product-page .cw-magazine-logo img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 76px !important;
  margin: 0 !important;
  object-fit: contain !important;
  box-shadow: none !important;
}

@media (max-width: 960px) {
  .cw-product-page .related.products ul.products,
  .cw-product-page .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .cw-product-page .related.products ul.products,
  .cw-product-page .upsells.products ul.products {
    grid-template-columns: 1fr !important;
  }

  .cw-product-page .cw-magazine-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    gap: 10px;
  }
}

/* ============================================================
   v2.3.2 — correções mobile da HOME
   Foto maior no hero + rodapé compacto sem faixa branca alta
   ============================================================ */
@media (max-width: 767px) {
  .cw-home .cw-hero__visual {
    min-height: 485px !important;
    overflow: visible !important;
  }

  .cw-home .cw-hero__alex {
    right: 47% !important;
    bottom: -6px !important;
    width: min(520px, 124vw) !important;
    max-width: none !important;
    height: auto !important;
    transform: translateX(50%) !important;
  }

  .cw-home .cw-hero__signature {
    top: 50px !important;
    right: 2px !important;
    width: 122px !important;
  }

  .cw-home .cw-footer {
    padding: 0 !important;
    border-top: 0 !important;
    background: #171020 !important;
  }

  .cw-home .cw-footer__grid {
    display: none !important;
  }

  .cw-home .cw-footer__bottom {
    display: flex !important;
    width: min(100% - 28px, 1180px) !important;
    min-height: 64px;
    margin: 0 auto !important;
    padding: 16px 0 18px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-direction: column !important;
    border-top: 0 !important;
    color: rgba(255,255,255,.68) !important;
    text-align: center !important;
    font-size: .72rem !important;
  }

  .cw-home .cw-footer__bottom p {
    margin: 0 !important;
  }

  .cw-home .cw-footer__bottom a {
    color: #ff6a13 !important;
    font-size: .72rem !important;
  }
}

@media (max-width: 420px) {
  .cw-home .cw-hero__visual {
    min-height: 455px !important;
  }

  .cw-home .cw-hero__alex {
    width: min(500px, 132vw) !important;
    right: 46% !important;
  }
}

/* ============================================================
   v2.3.3 — refinamento mobile + Instagram + rodapé de marca
   ============================================================ */

/* Instagram — faixa integrada ao novo visual */
.cw-instagram {
  position: relative;
  overflow: hidden;
  padding: 68px 0 62px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.17), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(255,170,105,.20), transparent 28%),
    linear-gradient(118deg, #ff5a0a 0%, #f15a24 28%, #9b4fc4 67%, #6f35a5 100%);
}

.cw-instagram::before,
.cw-instagram::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 34px;
  transform: rotate(12deg);
}

.cw-instagram::before {
  top: -110px;
  right: -75px;
  width: 330px;
  height: 250px;
}

.cw-instagram::after {
  bottom: -120px;
  left: -80px;
  width: 290px;
  height: 230px;
}

.cw-instagram__inner {
  position: relative;
  z-index: 2;
}

.cw-instagram__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.cw-instagram__heading > div {
  max-width: 720px;
}

.cw-instagram__eyebrow {
  margin: 0 0 9px !important;
  color: #ffe8d9;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cw-instagram h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.cw-instagram__heading p:last-child {
  max-width: 650px;
  margin-top: 13px !important;
  color: rgba(255,255,255,.83);
  font-size: .98rem;
}

.cw-instagram__heading strong {
  color: #fff;
}

.cw-instagram__button {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.50);
  border-radius: 14px;
  color: #fff !important;
  background: rgba(26,12,35,.22);
  backdrop-filter: blur(10px);
  font-size: .88rem;
  font-weight: 820;
  transition: transform .18s ease, background-color .18s ease;
}

.cw-instagram__button:hover {
  color: #fff !important;
  background: rgba(26,12,35,.38);
  transform: translateY(-2px);
}

.cw-instagram__button-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
}

.cw-instagram__button-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cw-instagram__embed {
  width: min(100%, 780px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 26px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 28px 65px rgba(45, 12, 63, .22);
  backdrop-filter: blur(14px);
}

.cw-instagram__embed .instagram-media {
  margin: 0 auto !important;
  max-width: 720px !important;
  min-width: 280px !important;
  width: 100% !important;
}

.cw-instagram__embed noscript p {
  margin: 0;
  padding: 32px 18px;
  text-align: center;
}

.cw-instagram__embed noscript a {
  color: #fff !important;
  font-weight: 800;
}

/* Rodapé: sem faixa branca grande, usando as cores da identidade */
.cw-home .cw-footer.cw-footer--brand,
.cw-footer.cw-footer--brand {
  padding: 46px 0 22px !important;
  border-top: 0 !important;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,90,10,.16), transparent 23%),
    linear-gradient(135deg, #25152f 0%, #361947 45%, #51226f 100%) !important;
}

.cw-footer--brand .cw-footer__grid {
  gap: 38px;
}

.cw-footer--brand .cw-footer__brand img {
  width: 230px !important;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.13));
}

.cw-footer--brand .cw-footer__brand p {
  margin-top: 13px;
  color: rgba(255,255,255,.69);
}

.cw-footer--brand h2 {
  color: #ff9b64;
}

.cw-footer--brand li,
.cw-footer--brand li a {
  color: rgba(255,255,255,.72) !important;
}

.cw-footer--brand li a:hover {
  color: #fff !important;
}

.cw-footer--brand .cw-footer__bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}

.cw-footer--brand .cw-footer__bottom a {
  color: #ff9b64 !important;
}

/* Evita sobras de layout do tema abaixo do rodapé nos templates customizados. */
body.cwhm-landing-page,
body.cwhm-category-page,
body.cwhm-calculator-template,
body.cwhm-product-template {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  background: #361947 !important;
}

body.cwhm-landing-page .cw-home,
body.cwhm-category-page .cw-home,
body.cwhm-calculator-template .cw-home,
body.cwhm-product-template .cw-home {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* MOBILE: Alex menor e começando ~20px abaixo do último diferencial. */
@media (max-width: 767px) {
  .cw-home .cw-hero__visual {
    width: 100% !important;
    min-height: 405px !important;
    margin-top: 20px !important;
    overflow: visible !important;
  }

  .cw-home .cw-hero__alex {
    right: 50% !important;
    bottom: 0 !important;
    width: min(440px, 106vw) !important;
    max-width: none !important;
    height: auto !important;
    transform: translateX(50%) !important;
  }

  .cw-home .cw-hero__signature {
    top: 48px !important;
    right: 2px !important;
    width: 114px !important;
  }

  .cw-instagram {
    padding: 48px 0 42px;
  }

  .cw-instagram__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .cw-instagram h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .cw-instagram__heading p:last-child {
    font-size: .92rem;
  }

  .cw-instagram__button {
    width: 100%;
  }

  .cw-instagram__embed {
    padding: 8px;
    border-radius: 19px;
  }

  .cw-home .cw-footer.cw-footer--brand,
  .cw-footer.cw-footer--brand {
    padding: 38px 0 18px !important;
    background:
      radial-gradient(circle at 85% 12%, rgba(255,90,10,.22), transparent 28%),
      linear-gradient(145deg, #25152f 0%, #4b2066 100%) !important;
  }

  .cw-footer--brand .cw-footer__grid {
    display: grid !important;
    gap: 26px 20px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cw-footer--brand .cw-footer__brand {
    grid-column: 1 / -1;
  }

  .cw-footer--brand .cw-footer__brand img {
    width: 215px !important;
  }

  .cw-footer--brand .cw-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .cw-footer--brand .cw-footer__bottom {
    display: flex !important;
    width: min(100% - 28px, 1180px) !important;
    min-height: 0 !important;
    margin: 28px auto 0 !important;
    padding: 15px 0 0 !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-direction: column !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.55) !important;
    text-align: left !important;
    font-size: .70rem !important;
  }

  .cw-footer--brand .cw-footer__bottom p {
    margin: 0 !important;
  }

  .cw-footer--brand .cw-footer__bottom a {
    color: #ff9b64 !important;
    font-size: .70rem !important;
  }
}

@media (max-width: 420px) {
  .cw-home .cw-hero__visual {
    min-height: 385px !important;
    margin-top: 20px !important;
  }

  .cw-home .cw-hero__alex {
    width: min(420px, 108vw) !important;
  }

  .cw-footer--brand .cw-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .cw-footer--brand .cw-footer__grid > div,
  .cw-footer--brand .cw-footer__grid > div:last-child,
  .cw-footer--brand .cw-footer__brand {
    grid-column: auto !important;
  }
}

/* ============================================================
   v2.3.4 — rodapé compacto, carrossel de Reels e correção real
   do espaço branco do Elementor no mobile.
   ============================================================ */

/* Evita qualquer branco residual depois do conteúdo customizado. */
html.cwhm-page-mounted,
html.cwhm-page-mounted body,
body.cwhm-landing-page,
body.cwhm-category-page,
body.cwhm-calculator-template,
body.cwhm-product-template {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
  background: #25152f !important;
}

body.cwhm-landing-page #page,
body.cwhm-landing-page #content,
body.cwhm-landing-page #primary,
body.cwhm-landing-page #main,
body.cwhm-landing-page .site,
body.cwhm-landing-page .site-content,
body.cwhm-landing-page .content-area,
body.cwhm-landing-page .site-main,
body.cwhm-landing-page .elementor,
body.cwhm-landing-page .elementor-page,
body.cwhm-landing-page .cw-host-clean {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-color: transparent !important;
}

/* Navegadores modernos: remove min-height/padding dos wrappers Elementor
   que contêm a home, sem mexer nos outros widgets do site. */
body.cwhm-landing-page .elementor-element:has(.cw-home),
body.cwhm-landing-page .e-con:has(.cw-home),
body.cwhm-landing-page .elementor-widget-container:has(.cw-home) {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Instagram: faixa baixa e elegante, sem embed gigante. */
.cw-social-strip {
  position: relative;
  overflow: hidden;
  padding: 30px 0 32px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 144, 74, .22), transparent 26%),
    linear-gradient(115deg, #6f35a5 0%, #472064 48%, #ff5a0a 125%);
}

.cw-social-strip::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cw-social-strip__inner {
  position: relative;
  z-index: 1;
}

.cw-social-strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.cw-social-strip__eyebrow {
  margin: 0 0 4px !important;
  color: #ffb17f;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cw-social-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.cw-social-strip__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cw-social-strip__profile {
  margin-left: 4px;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 780;
  white-space: nowrap;
}

.cw-ig-arrow {
  display: inline-grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .16s ease, transform .16s ease, opacity .16s ease;
}

.cw-ig-arrow:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.cw-ig-arrow:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

.cw-ig-carousel {
  position: relative;
}

.cw-ig-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(108px, 10.5vw, 138px);
  gap: 10px;
  overflow-x: auto;
  padding: 1px 1px 7px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.28) transparent;
}

.cw-ig-track::-webkit-scrollbar {
  height: 4px;
}

.cw-ig-track::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(255,255,255,.28);
}

.cw-ig-card {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: #281736;
  box-shadow: 0 9px 24px rgba(22,8,31,.18);
  scroll-snap-align: start;
  transform: translateZ(0);
}

.cw-ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.cw-ig-card:hover img {
  transform: scale(1.035);
}

.cw-ig-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(21,9,29,.36));
}

.cw-ig-card__play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  color: #fff;
  background: rgba(21,9,29,.48);
  backdrop-filter: blur(7px);
}

.cw-ig-card__play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cw-social-strip__fallback {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.cw-social-strip__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,90,10,.86);
}

.cw-social-strip__icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cw-social-strip__fallback > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.cw-social-strip__fallback strong {
  color: #fff;
  font-size: .91rem;
}

.cw-social-strip__fallback span {
  color: rgba(255,255,255,.68);
  font-size: .76rem;
}

.cw-social-strip__fallback > a {
  color: #fff !important;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.cw-social-strip__admin-note {
  margin: 8px 0 0 !important;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
}

/* Rodapé principal bem menor que a versão anterior. */
.cw-footer.cw-footer--compact {
  padding: 25px 0 14px !important;
  border: 0 !important;
  color: #fff;
  background: #1c1025 !important;
}

.cw-footer__compact-grid {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: minmax(250px, 1fr) auto;
}

.cw-footer__compact-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 17px;
}

.cw-footer__compact-brand img {
  width: 188px !important;
  max-width: 100%;
  height: auto;
}

.cw-footer__compact-brand p {
  max-width: 420px;
  margin: 0 !important;
  color: rgba(255,255,255,.56);
  font-size: .74rem;
  line-height: 1.45;
}

.cw-footer__compact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 17px;
}

.cw-footer__compact-links a {
  color: rgba(255,255,255,.72) !important;
  font-size: .74rem;
  font-weight: 700;
}

.cw-footer__compact-links a:hover {
  color: #ff8a47 !important;
}

.cw-footer__bottom--compact {
  display: flex;
  margin-top: 18px !important;
  padding-top: 11px !important;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.42) !important;
  font-size: .66rem !important;
}

.cw-footer__bottom--compact p {
  margin: 0 !important;
}

.cw-footer__bottom--compact a {
  color: #ff8a47 !important;
  font-size: .66rem !important;
}

/* MOBILE HOME: foto menor e o topo da foto começa cerca de 20px
   depois de “FÁCIL ACESSO”. A imagem deixa de ser absoluta, então não
   precisa de um bloco artificial alto que criava sobra de espaço. */
@media (max-width: 767px) {
  .cw-home .cw-hero__visual {
    display: flex !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin-top: 20px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .cw-home .cw-hero__alex {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: min(480px, 86vw) !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .cw-home .cw-hero__signature {
    top: 38% !important;
    right: 3% !important;
    width: 104px !important;
  }

  .cw-social-strip {
    padding: 24px 0 25px;
  }

  .cw-social-strip__head {
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .cw-social-strip__eyebrow {
    font-size: .61rem;
  }

  .cw-social-strip h2 {
    font-size: 1.35rem;
  }

  .cw-social-strip__profile {
    display: none;
  }

  .cw-ig-track {
    grid-auto-columns: min(31vw, 118px);
    gap: 8px;
    padding-bottom: 5px;
  }

  .cw-ig-card {
    border-radius: 12px;
  }

  .cw-social-strip__fallback {
    min-height: 66px;
    padding: 11px 12px;
  }

  .cw-social-strip__fallback span {
    font-size: .70rem;
  }

  .cw-social-strip__fallback > a {
    font-size: .70rem;
  }

  .cw-footer.cw-footer--compact {
    padding: 20px 0 11px !important;
  }

  .cw-footer__compact-grid {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .cw-footer__compact-brand {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .cw-footer__compact-brand img {
    width: 174px !important;
  }

  .cw-footer__compact-brand p {
    max-width: 330px;
    font-size: .69rem;
  }

  .cw-footer__compact-links {
    justify-content: flex-start;
    gap: 7px 14px;
  }

  .cw-footer__compact-links a {
    font-size: .70rem;
  }

  .cw-footer__bottom--compact {
    min-height: 0 !important;
    margin-top: 14px !important;
    padding: 9px 0 0 !important;
    gap: 5px !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    font-size: .62rem !important;
  }

  .cw-footer__bottom--compact a {
    font-size: .62rem !important;
  }

  /* Garante que o próprio wrapper da home termine exatamente no rodapé. */
  body.cwhm-landing-page .cw-home {
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #1c1025 !important;
  }
}

@media (max-width: 420px) {
  .cw-home .cw-hero__alex {
    width: min(420px, 88vw) !important;
  }

  .cw-home .cw-hero__signature {
    width: 94px !important;
  }

  .cw-social-strip__actions .cw-ig-arrow {
    width: 31px;
    height: 31px;
  }
}

/* ===== v2.3.5 — desktop usa o mesmo rodapé compacto do mobile ===== */
@media (min-width: 768px) {
  .cw-social-strip {
    padding: 24px 0 25px !important;
  }

  .cw-social-strip__head {
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  .cw-social-strip__eyebrow {
    font-size: .61rem !important;
  }

  .cw-social-strip h2 {
    font-size: 1.35rem !important;
  }

  .cw-social-strip__profile {
    font-size: .70rem !important;
  }

  .cw-ig-track {
    grid-auto-columns: 118px !important;
    gap: 8px !important;
    padding-bottom: 5px !important;
  }

  .cw-ig-card {
    border-radius: 12px !important;
  }

  .cw-social-strip__fallback {
    min-height: 66px !important;
    max-width: 760px;
    padding: 11px 12px !important;
  }

  .cw-social-strip__fallback span {
    font-size: .70rem !important;
  }

  .cw-social-strip__fallback > a {
    font-size: .70rem !important;
  }

  .cw-footer.cw-footer--compact {
    padding: 20px 0 11px !important;
  }

  .cw-footer__compact-grid {
    gap: 15px !important;
    grid-template-columns: 1fr !important;
  }

  .cw-footer__compact-brand {
    align-items: flex-start !important;
    gap: 12px !important;
    flex-direction: column !important;
  }

  .cw-footer__compact-brand img {
    width: 174px !important;
  }

  .cw-footer__compact-brand p {
    max-width: 330px !important;
    font-size: .69rem !important;
  }

  .cw-footer__compact-links {
    justify-content: flex-start !important;
    gap: 7px 14px !important;
  }

  .cw-footer__compact-links a {
    font-size: .70rem !important;
  }

  .cw-footer__bottom--compact {
    min-height: 0 !important;
    margin-top: 14px !important;
    padding: 9px 0 0 !important;
    gap: 5px !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    font-size: .62rem !important;
  }

  .cw-footer__bottom--compact a {
    font-size: .62rem !important;
  }
}

/* ============================================================
   v2.3.6 — ajustes SOMENTE MOBILE
   • assinatura mais à direita, fora do rosto
   • quebra controlada do título principal
   • remove o grande intervalo antes do bloco do Instagram
   ============================================================ */
.cw-hero-title-mobile {
  display: none;
}

@media (max-width: 767px) {
  /* Título exatamente nas quatro linhas solicitadas. */
  .cw-home .cw-hero-title-desktop {
    display: none !important;
  }

  .cw-home .cw-hero-title-mobile {
    display: block !important;
  }

  .cw-home .cw-hero-title-mobile > span {
    display: block !important;
    white-space: nowrap;
  }

  /* Assinatura fica na borda direita, na área roxa/lilás,
     evitando ficar sobre o rosto. */
  .cw-home .cw-hero__signature {
    top: 35% !important;
    right: -34px !important;
    width: 96px !important;
    z-index: 4 !important;
  }

  /* A sobra que parecia um rodapé gigante vinha do padding
     inferior da CTA. No celular o Instagram começa logo após ela. */
  .cw-home .cw-cta {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .cw-home .cw-cta__inner {
    margin-bottom: 0 !important;
  }

  .cw-home .cw-social-strip {
    margin-top: 0 !important;
  }

  /* Evita que wrappers flex do Elementor estiquem verticalmente
     depois do conteúdo da home em telas pequenas. */
  body.cwhm-landing-page .cw-host-clean {
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    align-self: auto !important;
  }
}

@media (max-width: 420px) {
  .cw-home .cw-hero__signature {
    right: -30px !important;
    width: 90px !important;
  }

  .cw-home .cw-hero-title-mobile > span {
    white-space: nowrap;
  }
}

/* ============================================================
   v2.3.7 — MOBILE: espaçamento uniforme de 22px e fim da página
   logo após o bloco do Instagram.
   O desktop permanece inalterado.
   ============================================================ */
@media (max-width: 767px) {
  /* Usa a mesma distância que já existe entre os dois cards
     Ferramenta gratuita / Biblioteca de conteúdo. */
  .cw-home .cw-resources {
    padding-bottom: 22px !important;
    margin-bottom: 0 !important;
  }

  .cw-home .cw-resources__grid {
    gap: 22px !important;
  }

  /* 22px entre Vídeo aulas gratuitas e Atendimento direto. */
  .cw-home .cw-cta {
    padding-top: 0 !important;
    padding-bottom: 22px !important;
    margin: 0 !important;
  }

  .cw-home .cw-cta__inner {
    margin: 0 !important;
  }

  /* Instagram vem após exatamente os mesmos 22px de respiro. */
  .cw-home .cw-social-strip {
    margin: 0 !important;
  }

  /* No celular o Instagram é o fechamento visual da página.
     Remove o rodapé escuro extra que estava criando a área enorme. */
  .cw-home .cw-footer.cw-footer--compact {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  /* Evita que qualquer wrapper do tema/Elementor reserve espaço
     depois do bloco do Instagram. */
  body.cwhm-landing-page,
  body.cwhm-landing-page #page,
  body.cwhm-landing-page #content,
  body.cwhm-landing-page #primary,
  body.cwhm-landing-page #main,
  body.cwhm-landing-page .site,
  body.cwhm-landing-page .site-content,
  body.cwhm-landing-page .content-area,
  body.cwhm-landing-page .site-main,
  body.cwhm-landing-page .elementor,
  body.cwhm-landing-page .elementor-page,
  body.cwhm-landing-page .cw-host-clean,
  body.cwhm-landing-page .elementor-element:has(.cw-home),
  body.cwhm-landing-page .e-con:has(.cw-home),
  body.cwhm-landing-page .elementor-widget-container:has(.cw-home) {
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    align-self: auto !important;
  }

  .cw-home {
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ============================================================
   v2.3.8 — ajustes pontuais aprovados
   MOBILE: alinhamento do Atendimento direto + assinatura
   DESKTOP: logo centralizada verticalmente no cabeçalho
   ============================================================ */

/* Desktop: respiro equilibrado acima e abaixo da marca. */
@media (min-width: 961px) {
  .cw-header__inner {
    min-height: 94px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    align-items: center !important;
  }

  .cw-brand,
  .cw-brand img {
    align-self: center !important;
  }
}

@media (max-width: 767px) {
  /* Recupera a centralização que foi perdida pelo margin:0 da v2.3.7.
     Fica exatamente na mesma largura/lateral dos cards de Recursos. */
  .cw-home .cw-cta__inner.cw-container,
  .cw-home .cw-cta__inner {
    width: min(100% - 28px, 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Sobe a assinatura e mantém ela no lado lilás, afastada do rosto. */
  .cw-home .cw-hero__signature {
    top: 27% !important;
    right: -18px !important;
    width: 94px !important;
    z-index: 4 !important;
  }
}

@media (max-width: 420px) {
  .cw-home .cw-hero__signature {
    top: 26% !important;
    right: -16px !important;
    width: 90px !important;
  }
}

/* ========================================================================
   CHECKOUT WOOCOMMERCE — v2.4.0
   ======================================================================== */
.cw-checkout-page {
  background: #f7f4fa;
}

.cw-checkout-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 62px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(126,62,176,.48), transparent 34%),
    linear-gradient(115deg, #160c20 0%, #21102f 52%, #31154b 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-checkout-hero::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 420px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,90,10,.18);
  content: "";
  filter: blur(80px);
  pointer-events: none;
}

.cw-checkout-hero__inner {
  position: relative;
  z-index: 1;
}

.cw-checkout-hero__copy {
  max-width: 880px;
  margin-top: 22px;
}

.cw-checkout-hero h1 {
  margin-top: 10px !important;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: .98;
}

.cw-checkout-hero__copy > p:not(.cw-kicker) {
  max-width: 720px;
  margin-top: 18px !important;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cw-checkout-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cw-checkout-hero__meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.055);
  font-size: .78rem;
  font-weight: 720;
}

.cw-checkout-section {
  padding: 54px 0 58px;
}

.cw-checkout-shell {
  color: var(--cw-ink);
}

.cw-checkout-page .woocommerce-notices-wrapper,
.cw-checkout-page .woocommerce-form-coupon-toggle,
.cw-checkout-page .woocommerce-form-login-toggle {
  margin-bottom: 18px;
}

.cw-checkout-page .woocommerce-message,
.cw-checkout-page .woocommerce-info,
.cw-checkout-page .woocommerce-error {
  margin: 0 0 18px !important;
  padding: 17px 20px 17px 52px !important;
  border: 0 !important;
  border-radius: 16px;
  color: var(--cw-ink) !important;
  background: #fff !important;
  box-shadow: 0 12px 35px rgba(37,21,50,.08);
  font-size: .92rem;
}

.cw-checkout-page .woocommerce-info {
  border-left: 4px solid var(--cw-purple) !important;
}

.cw-checkout-page .woocommerce-message {
  border-left: 4px solid #72b13b !important;
}

.cw-checkout-page .woocommerce-error {
  border-left: 4px solid #d94a4a !important;
}

.cw-checkout-page .woocommerce-info::before,
.cw-checkout-page .woocommerce-message::before,
.cw-checkout-page .woocommerce-error::before {
  top: 17px !important;
  left: 20px !important;
}

.cw-checkout-page form.checkout_coupon,
.cw-checkout-page form.login {
  margin: 0 0 24px !important;
  padding: 22px !important;
  border: 1px solid rgba(39,23,49,.08) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 12px 35px rgba(37,21,50,.07);
}

.cw-checkout-page form.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  gap: 28px 30px;
  align-items: start;
}

.cw-checkout-page #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0 !important;
  padding: 30px;
  border: 1px solid rgba(38,22,50,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(37,21,50,.09);
}

.cw-checkout-page #customer_details::before,
.cw-checkout-page #customer_details::after {
  display: none !important;
}

.cw-checkout-page #customer_details .col-1,
.cw-checkout-page #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
}

.cw-checkout-page #customer_details .col-2 {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(38,22,50,.09);
}

.cw-checkout-page #customer_details h3,
.cw-checkout-page #order_review_heading {
  margin: 0 0 22px !important;
  color: var(--cw-ink);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.cw-checkout-page #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
  padding: 25px 28px 18px;
  border: 1px solid rgba(38,22,50,.08);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
}

.cw-checkout-page #order_review {
  grid-column: 2;
  grid-row: 2;
  margin-top: -28px;
  padding: 0 28px 28px;
  border: 1px solid rgba(38,22,50,.08);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(37,21,50,.09);
}

.cw-checkout-page .form-row {
  margin: 0 0 17px !important;
  padding: 0 !important;
}

.cw-checkout-page .form-row label {
  margin-bottom: 7px;
  color: var(--cw-ink);
  font-size: .83rem;
  font-weight: 760;
}

.cw-checkout-page .form-row .required {
  color: var(--cw-orange);
}

.cw-checkout-page .input-text,
.cw-checkout-page input[type="text"],
.cw-checkout-page input[type="email"],
.cw-checkout-page input[type="tel"],
.cw-checkout-page input[type="password"],
.cw-checkout-page select,
.cw-checkout-page textarea,
.cw-checkout-page .select2-container .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(38,22,50,.15) !important;
  border-radius: 11px !important;
  outline: 0;
  color: var(--cw-ink) !important;
  background: #fbfafc !important;
  box-shadow: none !important;
  font: inherit;
  font-size: .92rem;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.cw-checkout-page textarea {
  min-height: 112px;
  resize: vertical;
}

.cw-checkout-page .input-text:focus,
.cw-checkout-page input:focus,
.cw-checkout-page select:focus,
.cw-checkout-page textarea:focus,
.cw-checkout-page .select2-container--focus .select2-selection--single {
  border-color: var(--cw-purple) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(111,53,165,.11) !important;
}

.cw-checkout-page .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}

.cw-checkout-page .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  color: var(--cw-ink) !important;
  line-height: 1.3 !important;
}

.cw-checkout-page .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%);
}

.cw-checkout-page table.shop_table {
  margin: 0 0 22px !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 0 !important;
}

.cw-checkout-page table.shop_table th,
.cw-checkout-page table.shop_table td {
  padding: 14px 0 !important;
  border-top: 1px solid rgba(38,22,50,.08) !important;
  color: var(--cw-ink);
  font-size: .88rem;
}

.cw-checkout-page table.shop_table thead th {
  padding-top: 0 !important;
  border-top: 0 !important;
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cw-checkout-page table.shop_table th:last-child,
.cw-checkout-page table.shop_table td:last-child {
  text-align: right;
}

.cw-checkout-page table.shop_table .order-total th,
.cw-checkout-page table.shop_table .order-total td {
  padding-top: 18px !important;
  color: var(--cw-ink);
  font-size: 1rem;
  font-weight: 850;
}

.cw-checkout-page table.shop_table .order-total .amount {
  color: var(--cw-orange);
  font-size: 1.28rem;
}

.cw-checkout-page #payment {
  border-radius: 17px !important;
  background: #f7f2fb !important;
}

.cw-checkout-page #payment ul.payment_methods {
  padding: 18px !important;
  border-bottom: 1px solid rgba(38,22,50,.08) !important;
}

.cw-checkout-page #payment ul.payment_methods li {
  margin: 0 0 10px !important;
  color: var(--cw-ink);
  font-size: .9rem;
}

.cw-checkout-page #payment div.payment_box {
  margin: 10px 0 12px !important;
  border-radius: 12px;
  color: var(--cw-ink) !important;
  background: #fff !important;
  font-size: .84rem;
}

.cw-checkout-page #payment div.payment_box::before {
  border-bottom-color: #fff !important;
}

.cw-checkout-page #payment .place-order {
  margin: 0 !important;
  padding: 18px !important;
}

.cw-checkout-page #payment #place_order,
.cw-checkout-page .woocommerce button.button.alt,
.cw-checkout-page .woocommerce a.button.alt,
.cw-checkout-page .woocommerce button.button {
  min-height: 54px;
  padding: 14px 22px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: var(--cw-orange) !important;
  box-shadow: 0 13px 28px rgba(255,90,10,.25);
  font-size: .92rem !important;
  font-weight: 840 !important;
  line-height: 1.2 !important;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.cw-checkout-page #payment #place_order {
  float: none !important;
  width: 100% !important;
  margin-top: 12px !important;
}

.cw-checkout-page #payment #place_order:hover,
.cw-checkout-page .woocommerce button.button:hover,
.cw-checkout-page .woocommerce a.button:hover {
  background: #ff6a21 !important;
  box-shadow: 0 16px 36px rgba(255,90,10,.34);
  transform: translateY(-1px);
}

.cw-checkout-page .woocommerce-privacy-policy-text,
.cw-checkout-page .woocommerce-terms-and-conditions-wrapper {
  color: #6b6271;
  font-size: .79rem;
  line-height: 1.55;
}

.cw-checkout-page .woocommerce-privacy-policy-text a,
.cw-checkout-page .woocommerce-terms-and-conditions-wrapper a,
.cw-checkout-page .woocommerce-info a,
.cw-checkout-page .woocommerce-message a {
  color: var(--cw-purple-dark) !important;
  font-weight: 760;
}

.cw-checkout-page .woocommerce-order {
  padding: 30px;
  border: 1px solid rgba(38,22,50,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(37,21,50,.09);
}

.cw-checkout-page .woocommerce-order .woocommerce-notice--success {
  margin-bottom: 24px !important;
  color: var(--cw-purple-dark);
  font-size: 1.25rem;
  font-weight: 850;
}

.cw-checkout-page .woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px !important;
}

.cw-checkout-page .woocommerce-order-overview li {
  float: none !important;
  margin: 0 !important;
  padding: 15px !important;
  border: 1px solid rgba(38,22,50,.08) !important;
  border-radius: 13px;
  background: #faf8fc;
}

.cw-checkout-trust {
  padding: 0 0 58px;
}

.cw-checkout-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cw-checkout-trust__grid > div {
  padding: 20px 22px;
  border: 1px solid rgba(38,22,50,.08);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(37,21,50,.06);
}

.cw-checkout-trust__grid strong,
.cw-checkout-trust__grid span {
  display: block;
}

.cw-checkout-trust__grid strong {
  color: var(--cw-ink);
  font-size: .95rem;
  font-weight: 820;
}

.cw-checkout-trust__grid span {
  margin-top: 5px;
  color: #6c6471;
  font-size: .8rem;
  line-height: 1.45;
}

/* Checkout em blocos do WooCommerce, caso seja ativado futuramente. */
.cw-checkout-page .wc-block-checkout,
.cw-checkout-page .wc-block-components-sidebar-layout {
  max-width: none !important;
}

.cw-checkout-page .wc-block-components-sidebar,
.cw-checkout-page .wc-block-components-main {
  border-radius: 22px;
}

@media (max-width: 960px) {
  .cw-checkout-page form.woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  .cw-checkout-page #customer_details,
  .cw-checkout-page #order_review_heading,
  .cw-checkout-page #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .cw-checkout-page #order_review_heading {
    margin-top: 2px !important;
  }

  .cw-checkout-page #order_review {
    margin-top: -28px;
  }

  .cw-checkout-trust__grid {
    grid-template-columns: 1fr;
  }

  .cw-checkout-page .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cw-checkout-hero {
    padding: 38px 0 42px;
  }

  .cw-checkout-hero__copy {
    margin-top: 14px;
  }

  .cw-checkout-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .cw-checkout-hero__copy > p:not(.cw-kicker) {
    margin-top: 14px !important;
    font-size: .95rem;
  }

  .cw-checkout-hero__meta {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .cw-checkout-hero__meta span {
    width: fit-content;
  }

  .cw-checkout-section {
    padding: 28px 0 32px;
  }

  .cw-checkout-page #customer_details {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .cw-checkout-page #customer_details h3,
  .cw-checkout-page #order_review_heading {
    font-size: 1.22rem;
  }

  .cw-checkout-page #order_review_heading {
    padding: 21px 18px 16px;
    border-radius: 18px 18px 0 0;
  }

  .cw-checkout-page #order_review {
    padding: 0 18px 18px;
    border-radius: 0 0 18px 18px;
  }

  .cw-checkout-page .form-row-first,
  .cw-checkout-page .form-row-last {
    float: none !important;
    width: 100% !important;
  }

  .cw-checkout-page .input-text,
  .cw-checkout-page input[type="text"],
  .cw-checkout-page input[type="email"],
  .cw-checkout-page input[type="tel"],
  .cw-checkout-page input[type="password"],
  .cw-checkout-page select,
  .cw-checkout-page textarea,
  .cw-checkout-page .select2-container .select2-selection--single {
    min-height: 50px;
    font-size: 16px; /* evita zoom automático no iPhone */
  }

  .cw-checkout-page .woocommerce-message,
  .cw-checkout-page .woocommerce-info,
  .cw-checkout-page .woocommerce-error {
    padding: 15px 15px 15px 45px !important;
    border-radius: 13px;
    font-size: .84rem;
  }

  .cw-checkout-page .woocommerce-info::before,
  .cw-checkout-page .woocommerce-message::before,
  .cw-checkout-page .woocommerce-error::before {
    top: 15px !important;
    left: 15px !important;
  }

  .cw-checkout-page table.shop_table th,
  .cw-checkout-page table.shop_table td {
    font-size: .82rem;
  }

  .cw-checkout-page #payment ul.payment_methods,
  .cw-checkout-page #payment .place-order {
    padding: 15px !important;
  }

  .cw-checkout-page #payment #place_order {
    min-height: 58px;
    font-size: 1rem !important;
  }

  .cw-checkout-page .woocommerce-order {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .cw-checkout-page .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .cw-checkout-trust {
    padding-bottom: 28px;
  }
}

/* ===== v2.4.1 — ajuste de espaçamento do resumo + campos mobile maiores ===== */
@media (min-width: 961px) {
  .cw-checkout-page form.woocommerce-checkout {
    grid-template-rows: 70px auto !important;
    column-gap: 30px !important;
    row-gap: 22px !important;
  }

  .cw-checkout-page #customer_details {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
  }

  .cw-checkout-page #order_review_heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 70px !important;
    margin: 0 !important;
    padding: 0 28px !important;
    border: 1px solid rgba(38,22,50,.08) !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 12px 35px rgba(37,21,50,.06) !important;
  }

  .cw-checkout-page #order_review {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding: 26px 28px 28px !important;
    border: 1px solid rgba(38,22,50,.08) !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 20px 55px rgba(37,21,50,.09) !important;
  }
}

@media (max-width: 960px) {
  .cw-checkout-page form.woocommerce-checkout {
    grid-template-rows: auto !important;
    row-gap: 22px !important;
  }

  .cw-checkout-page #customer_details,
  .cw-checkout-page #order_review_heading,
  .cw-checkout-page #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .cw-checkout-page #order_review_heading {
    margin: 0 !important;
  }

  .cw-checkout-page #order_review {
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .cw-checkout-page #customer_details {
    padding: 22px 16px !important;
  }

  .cw-checkout-page .form-row,
  .cw-checkout-page .form-row-first,
  .cw-checkout-page .form-row-last,
  .cw-checkout-page .form-row-wide {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #billing_address_1_field,
  .cw-checkout-page #billing_address_2_field,
  .cw-checkout-page #billing_cpf_field,
  .cw-checkout-page #billing_neighborhood_field,
  .cw-checkout-page #billing_bairro_field,
  .cw-checkout-page #billing_email_field,
  .cw-checkout-page #billing_phone_field,
  .cw-checkout-page #account_username_field,
  .cw-checkout-page #account_password_field {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: none !important;
    display: block !important;
  }

  .cw-checkout-page .input-text,
  .cw-checkout-page input[type="text"],
  .cw-checkout-page input[type="email"],
  .cw-checkout-page input[type="tel"],
  .cw-checkout-page input[type="password"],
  .cw-checkout-page select,
  .cw-checkout-page .select2-container,
  .cw-checkout-page .select2-container .select2-selection--single {
    width: 100% !important;
    max-width: none !important;
    min-height: 58px !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page .input-text,
  .cw-checkout-page input[type="text"],
  .cw-checkout-page input[type="email"],
  .cw-checkout-page input[type="tel"],
  .cw-checkout-page input[type="password"],
  .cw-checkout-page select {
    padding: 15px 16px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .cw-checkout-page #billing_address_1,
  .cw-checkout-page #billing_address_2,
  .cw-checkout-page #billing_cpf,
  .cw-checkout-page #billing_neighborhood,
  .cw-checkout-page #billing_bairro,
  .cw-checkout-page #billing_email,
  .cw-checkout-page #billing_phone,
  .cw-checkout-page #account_username,
  .cw-checkout-page #account_password {
    width: 100% !important;
    min-height: 60px !important;
    padding: 16px !important;
    font-size: 16px !important;
  }

  .cw-checkout-page .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    padding: 0 16px !important;
  }

  .cw-checkout-page textarea {
    width: 100% !important;
    min-height: 120px !important;
    padding: 15px 16px !important;
    box-sizing: border-box !important;
  }
}

/* ===== v2.4.2 — mobile: campos mais compridos, altura normal ===== */
@media (max-width: 767px) {
  /* Usa praticamente toda a largura da tela no checkout. */
  .cw-checkout-section > .cw-container,
  .cw-checkout-page .cw-container {
    width: calc(100% - 12px) !important;
    max-width: none !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
  }

  .cw-checkout-page #customer_details {
    width: 100% !important;
    max-width: none !important;
    padding: 18px 12px !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #customer_details .col-1,
  .cw-checkout-page #customer_details .col-2,
  .cw-checkout-page .woocommerce-billing-fields,
  .cw-checkout-page .woocommerce-billing-fields__field-wrapper,
  .cw-checkout-page .woocommerce-account-fields,
  .cw-checkout-page .create-account {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page .form-row,
  .cw-checkout-page .form-row-first,
  .cw-checkout-page .form-row-last,
  .cw-checkout-page .form-row-wide,
  .cw-checkout-page #billing_address_1_field,
  .cw-checkout-page #billing_address_2_field,
  .cw-checkout-page #billing_cpf_field,
  .cw-checkout-page #billing_neighborhood_field,
  .cw-checkout-page #billing_bairro_field,
  .cw-checkout-page #billing_email_field,
  .cw-checkout-page #billing_phone_field,
  .cw-checkout-page #account_username_field,
  .cw-checkout-page #account_password_field {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Volta à altura normal; mantém apenas largura total. */
  .cw-checkout-page .input-text,
  .cw-checkout-page input[type="text"],
  .cw-checkout-page input[type="email"],
  .cw-checkout-page input[type="tel"],
  .cw-checkout-page input[type="password"],
  .cw-checkout-page select,
  .cw-checkout-page .select2-container,
  .cw-checkout-page .select2-container .select2-selection--single {
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 11px 13px !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #billing_address_1,
  .cw-checkout-page #billing_address_2,
  .cw-checkout-page #billing_cpf,
  .cw-checkout-page #billing_neighborhood,
  .cw-checkout-page #billing_bairro,
  .cw-checkout-page #billing_email,
  .cw-checkout-page #billing_phone,
  .cw-checkout-page #account_username,
  .cw-checkout-page #account_password {
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 11px 13px !important;
  }

  .cw-checkout-page .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    padding: 0 13px !important;
  }
}

/* ===== v2.4.3 — checkout mobile: campos ~80% e alinhados à esquerda ===== */
@media (max-width: 767px) {
  .cw-checkout-page #billing_address_1_field,
  .cw-checkout-page #billing_address_2_field,
  .cw-checkout-page #billing_cpf_field,
  .cw-checkout-page #billing_neighborhood_field,
  .cw-checkout-page #billing_bairro_field,
  .cw-checkout-page #billing_email_field,
  .cw-checkout-page #billing_phone_field,
  .cw-checkout-page #account_username_field,
  .cw-checkout-page #account_password_field {
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 80% !important;
    max-width: 80% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #billing_address_1_field label,
  .cw-checkout-page #billing_address_2_field label,
  .cw-checkout-page #billing_cpf_field label,
  .cw-checkout-page #billing_neighborhood_field label,
  .cw-checkout-page #billing_bairro_field label,
  .cw-checkout-page #billing_email_field label,
  .cw-checkout-page #billing_phone_field label,
  .cw-checkout-page #account_username_field label,
  .cw-checkout-page #account_password_field label {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin-left: 0 !important;
  }

  .cw-checkout-page #billing_address_1,
  .cw-checkout-page #billing_address_2,
  .cw-checkout-page #billing_cpf,
  .cw-checkout-page #billing_neighborhood,
  .cw-checkout-page #billing_bairro,
  .cw-checkout-page #billing_email,
  .cw-checkout-page #billing_phone,
  .cw-checkout-page #account_username,
  .cw-checkout-page #account_password {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 11px 13px !important;
    text-align: left !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }
}

/* ===== v2.4.4 — checkout: campos mobile alinhados + edição do pedido ===== */
.cw-checkout-page .cwhm-checkout-item-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 10px;
  font-size: 0.78rem;
}

.cw-checkout-page .cwhm-checkout-item-controls__label {
  width: 100%;
  color: #716879;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cw-checkout-page .cwhm-checkout-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(36, 22, 48, .16);
  border-radius: 10px;
  background: #fff;
}

.cw-checkout-page .cwhm-checkout-qty__button,
.cw-checkout-page .cwhm-checkout-qty__input,
.cw-checkout-page .cwhm-checkout-remove {
  appearance: none;
  border: 0;
  font: inherit;
  box-sizing: border-box;
}

.cw-checkout-page .cwhm-checkout-qty__button {
  width: 34px;
  height: 34px;
  padding: 0;
  color: #4c255f;
  background: #f5effa;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
}

.cw-checkout-page .cwhm-checkout-qty__button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.cw-checkout-page .cwhm-checkout-qty__input {
  width: 44px !important;
  min-width: 44px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 4px !important;
  border-inline: 1px solid rgba(36, 22, 48, .12) !important;
  border-radius: 0 !important;
  color: #211628;
  background: #fff !important;
  text-align: center !important;
  font-size: .86rem !important;
  font-weight: 780;
  box-shadow: none !important;
}

.cw-checkout-page .cwhm-checkout-remove {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 10px;
  color: #b02d1f;
  background: #fff0ed;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
}

.cw-checkout-page .cwhm-checkout-item-controls.is-loading {
  opacity: .48;
  pointer-events: none;
}

@media (max-width: 767px) {
  /* Vence as colunas first/last do WooCommerce e alinha todos os dados à esquerda. */
  .cw-checkout-page #customer_details .woocommerce-billing-fields__field-wrapper > .form-row,
  .cw-checkout-page #customer_details .woocommerce-account-fields .form-row,
  .cw-checkout-page #customer_details .create-account .form-row,
  .cw-checkout-page #billing_address_1_field,
  .cw-checkout-page #billing_address_2_field,
  .cw-checkout-page #billing_cpf_field,
  .cw-checkout-page #billing_neighborhood_field,
  .cw-checkout-page #billing_bairro_field,
  .cw-checkout-page #billing_email_field,
  .cw-checkout-page #billing_phone_field,
  .cw-checkout-page #account_username_field,
  .cw-checkout-page #account_password_field {
    float: none !important;
    clear: both !important;
    display: block !important;
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 82% !important;
    margin: 0 0 16px 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #customer_details .woocommerce-input-wrapper,
  .cw-checkout-page #customer_details .password-input,
  .cw-checkout-page #customer_details .select2-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .form-row label {
    display: block !important;
    width: 100% !important;
    margin: 0 0 6px 0 !important;
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .form-row input.input-text,
  .cw-checkout-page #customer_details .form-row input[type="text"],
  .cw-checkout-page #customer_details .form-row input[type="email"],
  .cw-checkout-page #customer_details .form-row input[type="tel"],
  .cw-checkout-page #customer_details .form-row input[type="password"],
  .cw-checkout-page #customer_details .form-row select,
  .cw-checkout-page #customer_details .select2-selection--single {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 11px 13px !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page .cwhm-checkout-item-controls {
    align-items: flex-start;
    gap: 8px;
  }

  .cw-checkout-page .cwhm-checkout-item-controls__label {
    margin-bottom: 1px;
  }
}


/* =========================================================
   v2.4.5 — Total da compra visível no topo do checkout
   ========================================================= */
.cw-checkout-page .cw-checkout-top-total {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.085);
  box-shadow: 0 12px 34px rgba(10,5,20,.16);
  backdrop-filter: blur(8px);
}

.cw-checkout-page .cw-checkout-top-total__label {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cw-checkout-page .cw-checkout-top-total__amount {
  color: #ffb08a;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.cw-checkout-page .cw-checkout-top-total__amount .woocommerce-Price-currencySymbol {
  font-size: .72em;
}

@media (max-width: 767px) {
  .cw-checkout-page .cw-checkout-top-total {
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    padding: 11px 15px;
    gap: 11px;
    border-radius: 14px;
  }

  .cw-checkout-page .cw-checkout-top-total__label {
    font-size: .7rem;
  }

  .cw-checkout-page .cw-checkout-top-total__amount {
    font-size: 1.45rem;
  }
}

/* ===== v2.5.0 — Pix ComunidadeWEB: QR Code + Copia e Cola ===== */
.cw-checkout-page .payment_method_cwhm_pix .payment_box {
  margin-top: 14px !important;
  padding: 0 !important;
  background: transparent !important;
}

.cw-checkout-page .payment_method_cwhm_pix .payment_box::before {
  display: none !important;
}

.cw-checkout-page .cwhm-pix-box {
  margin-top: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 90, 10, .16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(111,53,165,.10), transparent 42%),
    #fff;
  box-shadow: 0 14px 34px rgba(37, 21, 50, .07);
}

.cw-checkout-page .cwhm-pix-box__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cw-checkout-page .cwhm-pix-box__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--cw-orange);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cw-checkout-page .cwhm-pix-box h3 {
  margin: 0 !important;
  color: var(--cw-ink);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.15;
}

.cw-checkout-page .cwhm-pix-box__amount {
  flex: 0 0 auto;
  text-align: right;
}

.cw-checkout-page .cwhm-pix-box__amount span,
.cw-checkout-page .cwhm-pix-box__amount strong {
  display: block;
}

.cw-checkout-page .cwhm-pix-box__amount span {
  color: #746b7a;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cw-checkout-page .cwhm-pix-box__amount strong {
  margin-top: 2px;
  color: var(--cw-orange);
  font-size: 1.22rem;
  font-weight: 900;
}

.cw-checkout-page .cwhm-pix-box__intro {
  margin: 15px 0 0 !important;
  color: #62596a;
  font-size: .86rem;
  line-height: 1.55;
}

.cw-checkout-page .cwhm-pix-box__account {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 15px;
  color: #574f60;
  font-size: .78rem;
  line-height: 1.45;
}

.cw-checkout-page .cwhm-pix-box__account span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f6f1fa;
}

.cw-checkout-page .cwhm-pix-box__pay {
  display: grid;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.cw-checkout-page .cwhm-pix-qr {
  display: grid;
  width: 220px;
  aspect-ratio: 1;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(37, 21, 50, .11);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(37, 21, 50, .08);
}

.cw-checkout-page .cwhm-pix-qr svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cw-checkout-page .cwhm-pix-qr__error {
  padding: 14px;
  color: #695f70;
  font-size: .82rem;
  text-align: center;
}

.cw-checkout-page .cwhm-pix-copy {
  min-width: 0;
}

.cw-checkout-page .cwhm-pix-copy label {
  display: block;
  margin-bottom: 7px;
  color: var(--cw-ink);
  font-size: .82rem;
  font-weight: 820;
}

.cw-checkout-page .cwhm-pix-copy textarea {
  display: block;
  width: 100% !important;
  min-height: 112px !important;
  padding: 12px 13px !important;
  border: 1px solid rgba(37, 21, 50, .13) !important;
  border-radius: 12px !important;
  color: #332a39 !important;
  background: #faf8fc !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: .72rem !important;
  line-height: 1.45 !important;
  resize: none !important;
  word-break: break-all;
}

.cw-checkout-page .cwhm-pix-copy__button {
  width: 100%;
  margin-top: 10px;
  min-height: 46px;
}

.cw-checkout-page .cwhm-pix-copy small {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #4c7a35;
  font-size: .74rem;
  font-weight: 700;
}

.cw-checkout-page .cwhm-pix-box__notice {
  margin: 15px 0 0 !important;
  padding: 11px 12px;
  border-left: 3px solid var(--cw-orange);
  border-radius: 8px;
  color: #655b6d;
  background: #fff8f3;
  font-size: .78rem;
  line-height: 1.5;
}

.cw-checkout-page .woocommerce-order .cwhm-pix-box {
  margin: 24px 0;
}

@media (max-width: 767px) {
  .cw-checkout-page .cwhm-pix-box {
    padding: 16px;
    border-radius: 15px;
  }

  .cw-checkout-page .cwhm-pix-box__head {
    align-items: flex-start;
  }

  .cw-checkout-page .cwhm-pix-box__amount strong {
    font-size: 1.05rem;
  }

  .cw-checkout-page .cwhm-pix-box__pay {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cw-checkout-page .cwhm-pix-qr {
    width: min(260px, 84vw);
    margin-inline: auto;
  }

  .cw-checkout-page .cwhm-pix-copy textarea {
    min-height: 100px !important;
    font-size: .69rem !important;
  }

  .cw-checkout-page .cwhm-pix-box__account {
    display: grid;
    gap: 7px;
  }

  .cw-checkout-page .cwhm-pix-box__account span {
    width: 100%;
    border-radius: 10px;
  }
}

/* ===== v2.5.2 — CTA WhatsApp para envio do comprovante Pix ===== */
.cw-checkout-page .cwhm-pix-whatsapp {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(111, 53, 165, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 90, 10, 0.07), rgba(199, 164, 243, 0.16));
}

.cw-checkout-page .cwhm-pix-whatsapp p {
  margin: 0 0 12px !important;
  color: var(--cw-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cw-checkout-page .cwhm-pix-whatsapp__button {
  width: auto;
  min-height: 46px;
  padding: 11px 18px;
}

@media (max-width: 767px) {
  .cw-checkout-page .cwhm-pix-whatsapp {
    padding: 14px;
  }

  .cw-checkout-page .cwhm-pix-whatsapp__button {
    width: 100%;
  }
}

/* ===== v2.5.3 — checkout mobile: labels em 1 linha + campos realmente mais compridos ===== */
@media (max-width: 767px) {
  /* Mantém todo o bloco de cobrança alinhado pela esquerda. */
  .cw-checkout-page #customer_details .woocommerce-billing-fields__field-wrapper,
  .cw-checkout-page #customer_details .woocommerce-account-fields,
  .cw-checkout-page #customer_details .create-account {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Largura concreta: ~300px em celulares comuns, sem ultrapassar a tela. */
  .cw-checkout-page #customer_details .woocommerce-billing-fields__field-wrapper > .form-row,
  .cw-checkout-page #customer_details .woocommerce-account-fields .form-row,
  .cw-checkout-page #customer_details .create-account .form-row,
  .cw-checkout-page #billing_address_1_field,
  .cw-checkout-page #billing_address_2_field,
  .cw-checkout-page #billing_cpf_field,
  .cw-checkout-page #billing_neighborhood_field,
  .cw-checkout-page #billing_bairro_field,
  .cw-checkout-page #billing_email_field,
  .cw-checkout-page #billing_phone_field,
  .cw-checkout-page #account_username_field,
  .cw-checkout-page #account_password_field {
    float: none !important;
    clear: both !important;
    display: block !important;
    flex: 0 0 auto !important;
    width: min(300px, calc(100vw - 70px)) !important;
    min-width: min(260px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  /* Labels sempre em uma única linha no mobile. */
  .cw-checkout-page #customer_details .form-row label,
  .cw-checkout-page #customer_details .woocommerce-billing-fields label,
  .cw-checkout-page #customer_details .woocommerce-account-fields label {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 0.79rem !important;
    line-height: 1.2 !important;
  }

  /* Inputs e wrappers acompanham exatamente a largura do campo. */
  .cw-checkout-page #customer_details .woocommerce-input-wrapper,
  .cw-checkout-page #customer_details .password-input,
  .cw-checkout-page #customer_details .select2-container,
  .cw-checkout-page #customer_details input.input-text,
  .cw-checkout-page #customer_details input[type="text"],
  .cw-checkout-page #customer_details input[type="email"],
  .cw-checkout-page #customer_details input[type="tel"],
  .cw-checkout-page #customer_details input[type="password"],
  .cw-checkout-page #customer_details select,
  .cw-checkout-page #customer_details .select2-selection--single {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
  }
}

/* ===== v2.5.4 — mobile: adicional após senha + selects alinhados + botão da conta legível ===== */
@media (max-width: 767px) {
  /* Gênero, País e Estado seguem o mesmo eixo esquerdo dos demais campos. */
  .cw-checkout-page #billing_gender_field,
  .cw-checkout-page #billing_sex_field,
  .cw-checkout-page #billing_country_field,
  .cw-checkout-page #billing_state_field {
    float: none !important;
    clear: both !important;
    display: block !important;
    width: min(300px, calc(100vw - 70px)) !important;
    min-width: min(260px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .cw-checkout-page #billing_gender_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_sex_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_country_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_state_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_gender_field .select2-container,
  .cw-checkout-page #billing_sex_field .select2-container,
  .cw-checkout-page #billing_country_field .select2-container,
  .cw-checkout-page #billing_state_field .select2-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .cw-checkout-page #billing_gender_field label,
  .cw-checkout-page #billing_sex_field label,
  .cw-checkout-page #billing_country_field label,
  .cw-checkout-page #billing_state_field label {
    display: block !important;
    width: auto !important;
    margin: 0 0 6px 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  /* Informação adicional passa a fazer parte do fim da coluna de cobrança no mobile. */
  .cw-checkout-page #customer_details .col-1 > .col-2 {
    width: min(300px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 4px 0 0 0 !important;
    padding: 18px 0 0 0 !important;
    border-top: 1px solid rgba(38,22,50,.09) !important;
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .col-1 > .col-2 h3 {
    margin: 0 0 12px !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .cw-checkout-page #order_comments_field {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .cw-checkout-page #order_comments_field label {
    display: block !important;
    width: auto !important;
    margin: 0 0 6px !important;
    white-space: nowrap !important;
    text-align: left !important;
    font-size: .79rem !important;
  }

  .cw-checkout-page #order_comments {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 88px !important;
    margin: 0 !important;
    padding: 11px 13px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    font-size: 16px !important;
  }

  /* Botão amarelo/ação associado à criação da conta, logo após a senha. */
  .cw-checkout-page #customer_details .woocommerce-account-fields .button:not(.show-password-input),
  .cw-checkout-page #customer_details .create-account .button:not(.show-password-input),
  .cw-checkout-page #customer_details .woocommerce-form-register__submit,
  .cw-checkout-page #customer_details button[type="button"].button:not(.show-password-input) {
    display: inline-flex !important;
    min-width: 220px !important;
    min-height: 46px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 2px 0 16px 0 !important;
    padding: 11px 16px !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: .88rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }
}

/* ===== v2.5.5 — correção real do checkout mobile ===== */
@media (max-width: 767px) {
  /* Mantém a coluna inteira no eixo esquerdo. */
  .cw-checkout-page #customer_details,
  .cw-checkout-page #customer_details .col-1,
  .cw-checkout-page #customer_details .woocommerce-billing-fields,
  .cw-checkout-page #customer_details .woocommerce-billing-fields__field-wrapper,
  .cw-checkout-page #customer_details .woocommerce-account-fields,
  .cw-checkout-page #customer_details .create-account {
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .woocommerce-billing-fields__field-wrapper,
  .cw-checkout-page #customer_details .woocommerce-account-fields,
  .cw-checkout-page #customer_details .create-account {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  /* Gênero, País e Estado: mesmo eixo esquerdo e mesma largura dos campos aprovados. */
  .cw-checkout-page #billing_gender_field,
  .cw-checkout-page #billing_sex_field,
  .cw-checkout-page #billing_country_field,
  .cw-checkout-page #billing_state_field {
    float: none !important;
    clear: both !important;
    display: block !important;
    align-self: flex-start !important;
    width: min(300px, calc(100vw - 70px)) !important;
    min-width: min(260px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-align: left !important;
  }

  .cw-checkout-page #billing_gender_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_sex_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_country_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_state_field .woocommerce-input-wrapper,
  .cw-checkout-page #billing_gender_field .select2-container,
  .cw-checkout-page #billing_sex_field .select2-container,
  .cw-checkout-page #billing_country_field .select2-container,
  .cw-checkout-page #billing_state_field .select2-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    text-align: left !important;
  }

  /* Informação adicional movida via JS para logo depois da área de conta/senha. */
  .cw-checkout-page #customer_details .woocommerce-additional-fields {
    float: none !important;
    clear: both !important;
    display: block !important;
    align-self: flex-start !important;
    width: min(300px, calc(100vw - 70px)) !important;
    min-width: min(260px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 4px 0 0 0 !important;
    padding: 18px 0 0 0 !important;
    border-top: 1px solid rgba(38,22,50,.09) !important;
    text-align: left !important;
  }

  .cw-checkout-page #customer_details .woocommerce-additional-fields > h3 {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
  }

  .cw-checkout-page #customer_details .woocommerce-additional-fields__field-wrapper,
  .cw-checkout-page #order_comments_field {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .cw-checkout-page #order_comments_field label {
    display: block !important;
    width: auto !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    text-align: left !important;
    font-size: .79rem !important;
  }

  .cw-checkout-page #order_comments {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 88px !important;
    margin: 0 !important;
    padding: 11px 13px !important;
    text-align: left !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  /* O amarelo abaixo da senha é o medidor de força do WooCommerce. */
  .cw-checkout-page .woocommerce-password-strength {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: min(300px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    min-height: 44px !important;
    margin: 8px 0 6px 0 !important;
    padding: 10px 13px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    font-size: .86rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  .cw-checkout-page .woocommerce-password-hint {
    display: block !important;
    width: min(300px, calc(100vw - 70px)) !important;
    max-width: min(300px, calc(100vw - 70px)) !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    color: #6d6373 !important;
    text-align: left !important;
    font-size: .76rem !important;
    line-height: 1.4 !important;
  }
}

/* ============================================================
   v2.6.0 — CARRINHO + SHOP/CATÁLOGO DE CURSOS
   ============================================================ */
body.cwhm-cart-template,
body.cwhm-shop-template {
  margin: 0 !important;
  background: #f7f4fb !important;
}

.cw-cart-page,
.cw-shop-page {
  background: #f7f4fb;
}

.cw-commerce-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 0 58px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 83% 30%, rgba(111,53,165,.5), transparent 34%),
    #171020;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.cw-commerce-hero::after {
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: -220px;
  width: 500px;
  height: 410px;
  border-radius: 50%;
  background: #ff5a0a;
  content: "";
  filter: blur(112px);
  opacity: .2;
}

.cw-commerce-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-top: 18px;
}

.cw-commerce-hero h1 {
  margin: 13px 0 0;
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 4.4rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: 1;
}

.cw-commerce-hero__row > div:first-child > p:last-child {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cw-cart-hero__summary,
.cw-shop-hero__count {
  display: grid;
  min-width: 190px;
  gap: 2px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.cw-cart-hero__summary span,
.cw-shop-hero__count span {
  color: rgba(255,255,255,.62);
  font-size: .75rem;
  font-weight: 720;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cw-cart-hero__summary strong,
.cw-shop-hero__count strong {
  color: #ff7a35;
  font-size: 1.45rem;
  font-weight: 880;
}

/* Carrinho */
.cw-cart-section {
  padding: 54px 0 72px;
}

.cw-cart-shell {
  min-height: 300px;
}

.cw-cart-page .woocommerce {
  color: #191125;
}

.cw-cart-page .woocommerce-notices-wrapper,
.cw-cart-page .woocommerce-message,
.cw-cart-page .woocommerce-info,
.cw-cart-page .woocommerce-error {
  grid-column: 1 / -1;
}

.cw-cart-page .woocommerce-message,
.cw-cart-page .woocommerce-info,
.cw-cart-page .woocommerce-error {
  margin-bottom: 20px !important;
  border: 1px solid rgba(25,17,37,.08) !important;
  border-top: 0 !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(35,19,48,.06);
}

.cw-cart-page .woocommerce-cart-form {
  width: calc(66% - 13px) !important;
  margin: 0 !important;
  float: left !important;
  padding: 22px !important;
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(35,19,48,.08);
}

.cw-cart-page .cart-collaterals {
  width: calc(34% - 13px) !important;
  margin: 0 !important;
  float: right !important;
}

.cw-cart-page .cart-collaterals .cart_totals {
  width: 100% !important;
  padding: 24px !important;
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(35,19,48,.08);
}

.cw-cart-page .cart-collaterals .cart_totals > h2 {
  margin: 0 0 18px !important;
  color: #191125;
  font-size: 1.25rem;
  font-weight: 850;
}

.cw-cart-page table.shop_table {
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.cw-cart-page table.shop_table th {
  padding: 13px 10px !important;
  border-bottom: 1px solid rgba(25,17,37,.08) !important;
  color: #706879;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cw-cart-page table.shop_table td {
  padding: 16px 10px !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(25,17,37,.07) !important;
  vertical-align: middle !important;
}

.cw-cart-page td.product-thumbnail img {
  width: 76px !important;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(35,19,48,.08);
}

.cw-cart-page td.product-name a {
  color: #191125 !important;
  font-weight: 760;
}

.cw-cart-page a.remove {
  display: inline-flex !important;
  width: 34px !important;
  height: 34px !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ff5a0a !important;
  background: #fff1e8 !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
}

.cw-cart-page a.remove:hover {
  color: #fff !important;
  background: #ff5a0a !important;
}

.cw-cart-page .quantity .qty {
  width: 74px !important;
  min-height: 44px;
  border: 1px solid rgba(25,17,37,.14) !important;
  border-radius: 10px !important;
  background: #faf8fc !important;
  text-align: center;
}

.cw-cart-page .coupon {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.cw-cart-page .coupon #coupon_code {
  width: 190px !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 13px !important;
  border: 1px solid rgba(25,17,37,.13) !important;
  border-radius: 11px !important;
}

.cw-cart-page .button,
.cw-cart-page .checkout-button {
  min-height: 46px !important;
  padding: 12px 18px !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: #ff5a0a !important;
  font-weight: 800 !important;
}

.cw-cart-page .button:hover,
.cw-cart-page .checkout-button:hover {
  background: #ff6b22 !important;
}

.cw-cart-page .cart_totals table td,
.cw-cart-page .cart_totals table th {
  padding: 14px 0 !important;
}

.cw-cart-page .cart_totals .order-total strong,
.cw-cart-page .cart_totals .order-total .amount {
  color: #ff5a0a !important;
  font-size: 1.35rem;
  font-weight: 880 !important;
}

.cw-cart-page .wc-proceed-to-checkout {
  padding: 18px 0 0 !important;
}

.cw-cart-page .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  min-height: 54px !important;
  margin: 0 !important;
  font-size: .96rem !important;
}

/* Shop / catálogo */
.cw-shop-section {
  padding: 58px 0 78px;
}

.cw-shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.cw-shop-toolbar h2 {
  margin: 7px 0 0;
  color: #191125;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 860;
  letter-spacing: -.045em;
}

.cw-shop-toolbar__native {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cw-shop-page .woocommerce-result-count {
  margin: 0 !important;
  color: #6d6574;
  font-size: .86rem;
}

.cw-shop-page .woocommerce-ordering {
  margin: 0 !important;
}

.cw-shop-page .woocommerce-ordering select {
  min-height: 44px;
  padding: 0 38px 0 13px;
  border: 1px solid rgba(25,17,37,.11);
  border-radius: 11px;
  background: #fff;
  color: #191125;
}

.cw-shop-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.cw-shop-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(25,17,37,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(35,19,48,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cw-shop-card:hover {
  box-shadow: 0 24px 60px rgba(35,19,48,.13);
  transform: translateY(-4px);
}

.cw-shop-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eee9f4;
}

.cw-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.cw-shop-card:hover .cw-shop-card__media img {
  transform: scale(1.035);
}

.cw-shop-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #6f35a5;
  font-weight: 850;
}

.cw-shop-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: #6f35a5;
  box-shadow: 0 8px 24px rgba(35,19,48,.15);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cw-shop-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 20px;
}

.cw-shop-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 830;
  line-height: 1.3;
}

.cw-shop-card h3 a {
  color: #191125 !important;
}

.cw-shop-card__body > p {
  margin: 11px 0 18px;
  color: #706879;
  font-size: .9rem;
  line-height: 1.58;
}

.cw-shop-card__bottom {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(25,17,37,.07);
}

.cw-shop-card__price {
  color: #ff5a0a;
  font-size: 1.2rem;
  font-weight: 860;
}

.cw-shop-card__price del {
  display: block;
  color: #9a939e;
  font-size: .72em;
}

.cw-shop-card__price ins {
  color: #ff5a0a;
  text-decoration: none;
}

.cw-shop-card__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 11px;
  color: #fff !important;
  background: #ff5a0a;
  font-size: .84rem;
  font-weight: 800;
}

.cw-shop-card__button:hover {
  background: #ff6b22;
}

.cw-shop-pagination {
  margin-top: 38px;
}

.cw-shop-page nav.woocommerce-pagination ul {
  display: flex !important;
  gap: 7px;
  justify-content: center;
  border: 0 !important;
}

.cw-shop-page nav.woocommerce-pagination ul li {
  border: 0 !important;
}

.cw-shop-page nav.woocommerce-pagination ul li a,
.cw-shop-page nav.woocommerce-pagination ul li span {
  display: grid !important;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(25,17,37,.09);
  border-radius: 10px;
  background: #fff;
  color: #191125;
}

.cw-shop-page nav.woocommerce-pagination ul li span.current {
  color: #fff;
  background: #6f35a5;
}

@media (max-width: 960px) {
  .cw-commerce-hero__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw-cart-hero__summary,
  .cw-shop-hero__count {
    min-width: 0;
  }

  .cw-cart-page .woocommerce-cart-form,
  .cw-cart-page .cart-collaterals {
    width: 100% !important;
    float: none !important;
  }

  .cw-cart-page .cart-collaterals {
    margin-top: 22px !important;
  }

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

@media (max-width: 620px) {
  .cw-commerce-hero {
    padding: 38px 0 46px;
  }

  .cw-commerce-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .cw-cart-section,
  .cw-shop-section {
    padding: 32px 0 46px;
  }

  .cw-cart-page .woocommerce-cart-form,
  .cw-cart-page .cart-collaterals .cart_totals {
    padding: 14px !important;
    border-radius: 18px;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item {
    display: grid !important;
    margin-bottom: 14px;
    padding: 13px !important;
    border: 1px solid rgba(25,17,37,.08) !important;
    border-radius: 14px;
    background: #fff;
    grid-template-columns: auto 72px 1fr;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td {
    padding: 8px 5px !important;
    border: 0 !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-remove {
    grid-column: 1;
    grid-row: 1;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-thumbnail {
    display: block !important;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-name {
    grid-column: 3;
    grid-row: 1;
    text-align: left !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-price,
  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-quantity,
  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-subtotal {
    grid-column: 3;
    text-align: left !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td::before {
    display: none !important;
  }

  .cw-cart-page .actions {
    display: grid !important;
    gap: 10px;
    text-align: left !important;
  }

  .cw-cart-page .coupon {
    display: grid !important;
    grid-template-columns: 1fr auto;
  }

  .cw-cart-page .coupon #coupon_code {
    width: 100% !important;
  }

  .cw-cart-page .actions > .button {
    width: 100% !important;
    margin: 0 !important;
  }

  .cw-shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .cw-shop-toolbar__native {
    align-items: stretch;
    flex-direction: column;
  }

  .cw-shop-page .woocommerce-ordering,
  .cw-shop-page .woocommerce-ordering select {
    width: 100%;
  }

  .cw-shop-grid {
    grid-template-columns: 1fr;
  }

  .cw-shop-card__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cw-shop-card__button {
    justify-content: center;
  }
}

/* ============================================================
   v2.6.1 — CORREÇÃO ESTRUTURAL DO CARRINHO (PC + MOBILE)
   ============================================================ */

/* Desktop: duas colunas reais. Impede o WooCommerce/tema de esmagar os totais. */
@media (min-width: 961px) {
  .cw-cart-page .cw-cart-shell > .woocommerce {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    column-gap: 32px !important;
    row-gap: 20px !important;
    align-items: start !important;
  }

  .cw-cart-page .cw-cart-shell > .woocommerce > .woocommerce-notices-wrapper,
  .cw-cart-page .cw-cart-shell > .woocommerce > .woocommerce-message,
  .cw-cart-page .cw-cart-shell > .woocommerce > .woocommerce-info,
  .cw-cart-page .cw-cart-shell > .woocommerce > .woocommerce-error {
    grid-column: 1 / -1 !important;
  }

  .cw-cart-page .woocommerce-cart-form {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
  }

  .cw-cart-page .cart-collaterals {
    grid-column: 2 !important;
    width: 360px !important;
    min-width: 360px !important;
    max-width: 360px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    align-self: start !important;
  }

  .cw-cart-page .cart-collaterals::before,
  .cw-cart-page .cart-collaterals::after {
    display: none !important;
    content: none !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals,
  .cw-cart-page .cart-collaterals .cross-sells {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals {
    position: sticky;
    top: 104px;
    padding: 26px !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals > h2 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
    white-space: normal !important;
    word-break: normal !important;
  }

  .cw-cart-page .cart_totals table,
  .cw-cart-page .cart_totals tbody,
  .cw-cart-page .cart_totals tr {
    width: 100% !important;
  }

  .cw-cart-page .cart_totals th {
    width: 44% !important;
    text-align: left !important;
  }

  .cw-cart-page .cart_totals td {
    width: 56% !important;
    text-align: right !important;
  }

  .cw-cart-page .wc-proceed-to-checkout,
  .cw-cart-page .wc-proceed-to-checkout .checkout-button {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .cw-cart-page .wc-proceed-to-checkout .checkout-button {
    display: flex !important;
    min-height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 18px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.25 !important;
  }

  /* Cupom no PC: campo realmente utilizável. */
  .cw-cart-page .actions .coupon {
    display: grid !important;
    width: min(100%, 430px) !important;
    grid-template-columns: minmax(220px, 1fr) auto !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .cw-cart-page .actions .coupon #coupon_code {
    width: 100% !important;
    min-width: 220px !important;
    max-width: none !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
  }
}

/* Tablet e mobile: carrinho empilhado, sem floats nem larguras herdadas. */
@media (max-width: 960px) {
  .cw-cart-page .cw-cart-shell > .woocommerce {
    display: block !important;
    width: 100% !important;
  }

  .cw-cart-page .woocommerce-cart-form,
  .cw-cart-page .cart-collaterals,
  .cw-cart-page .cart-collaterals .cart_totals,
  .cw-cart-page .cart-collaterals .cross-sells {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
  }

  .cw-cart-page .cart-collaterals {
    margin-top: 22px !important;
    padding: 0 !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals {
    position: static !important;
    top: auto !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals > h2 {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    white-space: normal !important;
  }

  .cw-cart-page .cart_totals table,
  .cw-cart-page .wc-proceed-to-checkout,
  .cw-cart-page .wc-proceed-to-checkout .checkout-button {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 620px) {
  .cw-cart-section .cw-container {
    width: min(100% - 24px, 1180px) !important;
  }

  .cw-cart-page .woocommerce-cart-form,
  .cw-cart-page .cart-collaterals .cart_totals {
    width: 100% !important;
    padding: 15px !important;
  }

  /* Cada item vira um card vertical legível. */
  .cw-cart-page table.shop_table_responsive thead {
    display: none !important;
  }

  .cw-cart-page table.shop_table_responsive,
  .cw-cart-page table.shop_table_responsive tbody {
    display: block !important;
    width: 100% !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item {
    display: grid !important;
    width: 100% !important;
    box-sizing: border-box !important;
    grid-template-columns: 38px 68px minmax(0, 1fr) !important;
    gap: 5px 9px !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-name,
  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-price,
  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-quantity,
  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-subtotal {
    min-width: 0 !important;
    width: auto !important;
  }

  .cw-cart-page table.shop_table_responsive tr.cart_item td.product-name {
    overflow-wrap: anywhere !important;
  }

  .cw-cart-page td.product-thumbnail img {
    width: 64px !important;
    height: 64px !important;
    object-fit: cover !important;
  }

  .cw-cart-page .quantity .qty {
    width: 82px !important;
    max-width: 82px !important;
  }

  /* Área de ações: cupom grande em linha própria. */
  .cw-cart-page table.shop_table_responsive tr:last-child td.actions,
  .cw-cart-page .actions {
    display: grid !important;
    width: 100% !important;
    gap: 10px !important;
    box-sizing: border-box !important;
  }

  .cw-cart-page .actions .coupon,
  .cw-cart-page .coupon {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    float: none !important;
  }

  .cw-cart-page .actions .coupon #coupon_code,
  .cw-cart-page .coupon #coupon_code {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
  }

  .cw-cart-page .actions .coupon .button,
  .cw-cart-page .coupon .button,
  .cw-cart-page .actions > .button {
    display: flex !important;
    width: 100% !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .cw-cart-page .cart_totals table.shop_table,
  .cw-cart-page .cart_totals table.shop_table tbody,
  .cw-cart-page .cart_totals table.shop_table tr {
    display: table !important;
    width: 100% !important;
  }

  .cw-cart-page .cart_totals table.shop_table tbody {
    display: table-row-group !important;
  }

  .cw-cart-page .cart_totals table.shop_table tr {
    display: table-row !important;
  }

  .cw-cart-page .cart_totals table.shop_table th,
  .cw-cart-page .cart_totals table.shop_table td {
    display: table-cell !important;
    width: 50% !important;
    vertical-align: middle !important;
  }

  .cw-cart-page .cart_totals table.shop_table td {
    text-align: right !important;
  }

  .cw-cart-page .wc-proceed-to-checkout .checkout-button {
    display: flex !important;
    width: 100% !important;
    min-height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 16px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.25 !important;
  }
}

/* ============================================================
   v2.6.2 — AJUSTE FINO DO CARRINHO NO DESKTOP
   ============================================================ */
@media (min-width: 961px) {
  /* Mantém os dois cards começando exatamente na mesma linha. */
  .cw-cart-page .cw-cart-shell > .woocommerce {
    align-items: start !important;
  }

  .cw-cart-page .woocommerce-cart-form,
  .cw-cart-page .cart-collaterals {
    align-self: start !important;
    margin-top: 0 !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals {
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
  }

  /* Ações do carrinho: cupom e, logo abaixo, Atualizar carrinho. */
  .cw-cart-page table.cart td.actions,
  .cw-cart-page .actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
  }

  .cw-cart-page .actions .coupon {
    display: grid !important;
    width: min(100%, 430px) !important;
    grid-template-columns: minmax(220px, 1fr) auto !important;
    gap: 10px !important;
    align-items: center !important;
    float: none !important;
    margin: 0 !important;
  }

  .cw-cart-page .actions > .button,
  .cw-cart-page table.cart td.actions > .button {
    position: static !important;
    float: none !important;
    clear: both !important;
    width: auto !important;
    min-width: 185px !important;
    margin: 0 !important;
    align-self: flex-start !important;
  }
}

/* ============================================================
   v2.6.3 — RESTAURA TABELA DO CARRINHO + RESUMO DO HERO
   ============================================================ */

/* Valor no topo do carrinho: maior e branco. */
.cw-cart-hero__summary {
  min-width: 215px !important;
  padding: 20px 24px !important;
}

.cw-cart-hero__summary strong {
  color: #ffffff !important;
  font-size: 2.05rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -.025em !important;
}

@media (min-width: 961px) {
  /*
   * Não transformar TD de ações em flex/grid. O WooCommerce usa a geometria
   * dessa célula para calcular as demais colunas da tabela.
   */
  .cw-cart-page table.cart {
    width: 100% !important;
    table-layout: auto !important;
  }

  .cw-cart-page table.cart td.actions,
  .cw-cart-page .woocommerce-cart-form table.cart td.actions {
    display: table-cell !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 16px 10px !important;
    text-align: left !important;
    vertical-align: top !important;
  }

  /* Cupom permanece em uma linha; botão Atualizar fica logo abaixo. */
  .cw-cart-page table.cart td.actions .coupon,
  .cw-cart-page .actions .coupon {
    display: grid !important;
    width: min(100%, 430px) !important;
    max-width: 430px !important;
    grid-template-columns: minmax(220px, 1fr) auto !important;
    gap: 10px !important;
    align-items: center !important;
    float: none !important;
    clear: both !important;
    margin: 0 !important;
  }

  .cw-cart-page table.cart td.actions .coupon #coupon_code {
    width: 100% !important;
    min-width: 220px !important;
    max-width: none !important;
  }

  .cw-cart-page table.cart td.actions > .button,
  .cw-cart-page .woocommerce-cart-form table.cart td.actions > .button {
    display: flex !important;
    width: auto !important;
    min-width: 185px !important;
    min-height: 46px !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    clear: both !important;
    margin: 12px 0 0 !important;
  }

  /* Garante largura útil para a tabela do produto. */
  .cw-cart-page .woocommerce-cart-form table.shop_table {
    width: 100% !important;
    max-width: none !important;
  }

  .cw-cart-page .woocommerce-cart-form td.product-name {
    min-width: 190px !important;
  }

  /* Mantém o card de totais alinhado com o topo do card da esquerda. */
  .cw-cart-page .cart-collaterals,
  .cw-cart-page .cart-collaterals .cart_totals {
    align-self: start !important;
    margin-top: 0 !important;
  }

  .cw-cart-page .cart-collaterals .cart_totals {
    position: static !important;
    top: auto !important;
  }
}

/* No mobile mantém a escala mais contida do resumo. */
@media (max-width: 620px) {
  .cw-cart-hero__summary strong {
    font-size: 1.65rem !important;
  }
}

/* =========================================================
   v2.7.0 — POST INDIVIDUAL / BLOG
   ========================================================= */
body.cwhm-single-post-template {
  margin: 0 !important;
  background: #f7f4fb !important;
}

body.cwhm-single-post-template > header,
body.cwhm-single-post-template > footer,
body.cwhm-single-post-template .site-header,
body.cwhm-single-post-template #site-header,
body.cwhm-single-post-template #masthead,
body.cwhm-single-post-template .ct-header,
body.cwhm-single-post-template .main-header-bar-wrap,
body.cwhm-single-post-template .ast-above-header-wrap,
body.cwhm-single-post-template #top-bar-wrap,
body.cwhm-single-post-template .elementor-location-header,
body.cwhm-single-post-template .site-footer,
body.cwhm-single-post-template #colophon,
body.cwhm-single-post-template .elementor-location-footer {
  display: none !important;
}

.cw-single-post .cw-header {
  position: sticky;
  top: 0;
}
body.admin-bar .cw-single-post .cw-header { top: 32px; }

.cw-article-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 58px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    radial-gradient(circle at 82% 26%, rgba(135,70,184,.42), transparent 34%),
    linear-gradient(115deg,#130d1b 0%,#1d102b 57%,#4d234f 100%);
  background-size: 46px 46px,46px 46px,auto,auto;
}

.cw-article-hero::before {
  position:absolute;
  right:-90px;
  top:-155px;
  width:390px;
  height:390px;
  border:1px solid rgba(255,91,12,.45);
  border-radius:50%;
  content:"";
}

.cw-article-hero__glow {
  position:absolute;
  right:8%;
  bottom:-120px;
  width:340px;
  height:210px;
  background:#ff5a0a;
  border-radius:50%;
  filter:blur(105px);
  opacity:.16;
  pointer-events:none;
}

.cw-article-hero__inner { position:relative; z-index:1; }
.cw-article-hero .cw-breadcrumb { margin-bottom:28px; }
.cw-article-hero .cw-breadcrumb,
.cw-article-hero .cw-breadcrumb a { color:rgba(255,255,255,.68) !important; }
.cw-article-hero .cw-breadcrumb strong { color:#fff; }
.cw-article-hero__copy { max-width:980px; }
.cw-article-hero h1 {
  max-width:1040px;
  margin:14px 0 0;
  color:#fff;
  font-size:clamp(2.35rem,4.7vw,4.65rem);
  font-weight:880;
  letter-spacing:-.048em;
  line-height:1.02;
}
.cw-article-hero__meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.cw-article-hero__meta > * {
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:rgba(255,255,255,.76) !important;
  background:rgba(255,255,255,.06);
  font-size:.76rem;
  font-weight:700;
}
.cw-article-hero__meta a:hover { color:#fff !important; border-color:rgba(255,91,10,.55); }

.cw-article-section {
  padding:64px 0 72px;
  background:linear-gradient(180deg,#f7f4fb 0%,#fff 100%);
}
.cw-article-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:32px;
  align-items:start;
}
.cw-article-card {
  overflow:hidden;
  border:1px solid rgba(31,18,44,.08);
  border-radius:26px;
  background:#fff;
  box-shadow:0 22px 70px rgba(35,19,48,.09);
}
.cw-article-featured {
  margin:0 !important;
  overflow:hidden;
  background:#120d19;
}
.cw-article-featured img {
  display:block;
  width:100%;
  max-height:680px;
  object-fit:cover;
}
.cw-article-content {
  padding:clamp(28px,4vw,54px);
  color:#3d3546;
  font-size:1.06rem;
  line-height:1.82;
}
.cw-article-content > *:first-child { margin-top:0 !important; }
.cw-article-content > *:last-child { margin-bottom:0 !important; }
.cw-article-content p { margin:0 0 1.45em; }
.cw-article-content h2,
.cw-article-content h3,
.cw-article-content h4 {
  color:#1a1124;
  font-weight:850;
  letter-spacing:-.025em;
  line-height:1.18;
}
.cw-article-content h2 { margin:1.75em 0 .7em; font-size:clamp(1.65rem,2.4vw,2.35rem); }
.cw-article-content h3 { margin:1.55em 0 .65em; font-size:clamp(1.3rem,2vw,1.7rem); }
.cw-article-content a { color:#e94c04; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.cw-article-content strong { color:#21162a; }
.cw-article-content ul,
.cw-article-content ol { margin:1.2em 0 1.5em; padding-left:1.35em; }
.cw-article-content li { margin:.4em 0; }
.cw-article-content blockquote {
  margin:1.8em 0;
  padding:22px 24px;
  border-left:4px solid #ff5a0a;
  border-radius:0 16px 16px 0;
  color:#33263e;
  background:#f7f0fb;
}
.cw-article-content img {
  max-width:100%;
  height:auto;
  border-radius:16px;
}
.cw-article-content figure { max-width:100%; margin:1.8em auto; }
.cw-article-content figcaption { margin-top:8px; color:#7b7084; font-size:.82rem; text-align:center; }
.cw-article-content iframe,
.cw-article-content video {
  display:block;
  max-width:100%;
  margin:1.8em auto;
  border:0;
  border-radius:16px;
}
.cw-article-content iframe[src*="youtube"],
.cw-article-content iframe[src*="youtu.be"],
.cw-article-content iframe[src*="vimeo"] {
  width:100%;
  aspect-ratio:16/9;
  height:auto;
}
.cw-article-content table {
  width:100%;
  margin:1.7em 0;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:14px;
}
.cw-article-content th,
.cw-article-content td { padding:12px 14px; border:1px solid #eee7f2; text-align:left; }
.cw-article-content th { color:#201529; background:#f6effb; }

.cw-article-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:22px clamp(28px,4vw,54px) 28px;
  border-top:1px solid #eee8f1;
  background:#fcfafd;
}
.cw-article-tags { display:flex; gap:9px; align-items:center; flex-wrap:wrap; }
.cw-article-tags span { color:#887d90; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.cw-article-tags a {
  padding:7px 11px;
  border-radius:999px;
  color:#5a2b76 !important;
  background:#f1e6f8;
  font-size:.78rem;
  font-weight:800;
}
.cw-article-back { color:#e94c04 !important; font-size:.86rem; font-weight:800; }

.cw-article-aside {
  display:grid;
  gap:18px;
  position:sticky;
  top:118px;
}
body.admin-bar .cw-article-aside { top:150px; }
.cw-article-aside__card {
  padding:26px;
  border:1px solid rgba(31,18,44,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 50px rgba(35,19,48,.075);
}
.cw-article-aside__card--accent {
  color:#fff;
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(145deg,#26133b,#52226a 72%,#7c2e50);
}
.cw-article-aside__card .cw-eyebrow { margin-bottom:12px; }
.cw-article-aside__card h2 { margin:0 0 12px; font-size:1.35rem; line-height:1.16; }
.cw-article-aside__card p:not(.cw-eyebrow) { margin:0 0 18px; color:#706779; font-size:.9rem; line-height:1.55; }
.cw-article-aside__card--accent h2 { color:#fff; }
.cw-article-aside__card--accent p:not(.cw-eyebrow) { color:rgba(255,255,255,.72); }
.cw-article-aside__card a { color:#ff5a0a !important; font-size:.86rem; font-weight:850; }
.cw-article-aside__card--accent a { color:#fff !important; }

.cw-article-related { padding:0 0 76px; background:#fff; }
.cw-article-related__heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}
.cw-article-related__heading h2 { margin:5px 0 0; font-size:clamp(1.8rem,3vw,2.7rem); line-height:1.05; }
.cw-article-related__heading > a { color:#e94c04 !important; font-weight:800; }
.cw-post-grid--related { grid-template-columns:repeat(3,minmax(0,1fr)); }
.cw-article-cta { margin-top:0; }

@media (max-width: 980px) {
  body.admin-bar .cw-single-post .cw-header { top:46px; }
  .cw-article-hero { padding:38px 0 46px; }
  .cw-article-hero h1 { font-size:clamp(2.2rem,7vw,3.7rem); }
  .cw-article-layout { grid-template-columns:1fr; }
  .cw-article-aside { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .cw-post-grid--related { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .cw-article-hero { padding:30px 0 36px; }
  .cw-article-hero .cw-breadcrumb { margin-bottom:20px; font-size:.72rem; }
  .cw-article-hero h1 { font-size:clamp(2rem,10vw,3rem); line-height:1.03; }
  .cw-article-hero__meta { margin-top:20px; gap:7px; }
  .cw-article-hero__meta > * { min-height:30px; padding:6px 9px; font-size:.68rem; }
  .cw-article-section { padding:28px 0 40px; }
  .cw-article-layout { width:min(100% - 28px,1180px); gap:20px; }
  .cw-article-card { border-radius:20px; }
  .cw-article-featured img { max-height:none; }
  .cw-article-content { padding:24px 20px; font-size:1rem; line-height:1.72; }
  .cw-article-content h2 { font-size:1.65rem; }
  .cw-article-content h3 { font-size:1.3rem; }
  .cw-article-content iframe,
  .cw-article-content video,
  .cw-article-content img { border-radius:12px; }
  .cw-article-bottom { display:grid; padding:18px 20px 22px; }
  .cw-article-aside { grid-template-columns:1fr; gap:14px; }
  .cw-article-aside__card { padding:22px; }
  .cw-article-related { padding:0 0 44px; }
  .cw-article-related__heading { align-items:flex-start; }
  .cw-article-related__heading h2 { font-size:1.9rem; }
  .cw-post-grid--related { grid-template-columns:1fr; }
}

@media (max-width: 420px) {
  .cw-article-hero__meta > *:last-child { display:none; }
  .cw-article-related__heading > a { display:none; }
}

/* ===== v2.7.2 — busca global + Loja virtual no cabeçalho ===== */
.cw-site-search {
  position: relative;
  flex: 0 0 auto;
}

.cw-site-search__toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(25,17,37,.10);
  border-radius: 12px;
  color: var(--cw-ink);
  background: #fff;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.cw-site-search__toggle:hover {
  border-color: rgba(255,90,10,.35);
  background: #fff8f3;
  transform: translateY(-1px);
}
.cw-site-search__toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.cw-site-search__label { display:none; }

.cw-site-search__form {
  position: absolute;
  z-index: 1100;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: min(390px, 82vw);
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(25,17,37,.10);
  border-radius: 16px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 22px 60px rgba(31,18,44,.18);
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transform-origin: top right;
  transition: opacity .16s ease, transform .16s ease;
}
.cw-site-search.is-open .cw-site-search__form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cw-site-search__form input,
.cw-search-hero__form input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e6dfeb;
  border-radius: 11px;
  color: #21162a;
  background: #fff;
  font: inherit;
  font-size: .9rem;
  outline: none;
}
.cw-site-search__form input:focus,
.cw-search-hero__form input:focus {
  border-color: rgba(255,90,10,.55);
  box-shadow: 0 0 0 3px rgba(255,90,10,.10);
}
.cw-site-search__form button,
.cw-search-hero__form button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--cw-orange);
  font: inherit;
  font-size: .82rem;
  font-weight: 820;
  cursor: pointer;
}

@media (min-width: 961px) {
  .cw-nav { gap: 10px !important; }
  .cw-nav__list { gap: 0 !important; }
  .cw-nav__link { padding-inline: 9px !important; }
}

/* Busca: página de resultados */
.cw-search-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 62px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 30%, rgba(132,72,178,.34), transparent 34%),
    linear-gradient(120deg,#160d20 0%,#24102f 62%,#51205f 100%);
}
.cw-search-hero::after {
  position:absolute;
  right:-90px;
  bottom:-140px;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(255,90,10,.16);
  filter:blur(55px);
  content:"";
}
.cw-search-hero__inner {
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,440px);
  gap:40px;
  align-items:end;
}
.cw-search-hero h1 {
  margin:10px 0 12px;
  max-width:850px;
  color:#fff;
  font-size:clamp(2.35rem,4.3vw,4.4rem);
  font-weight:880;
  letter-spacing:-.05em;
  line-height:1.02;
}
.cw-search-hero h1 em { color:#ff6722; font-style:normal; }
.cw-search-hero p:not(.cw-kicker) { color:rgba(255,255,255,.72); }
.cw-search-hero__form {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:9px;
  padding:10px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}
.cw-search-results {
  padding:54px 0 76px;
  background:linear-gradient(180deg,#f7f4fb 0%,#fff 100%);
}
.cw-search-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.cw-search-card {
  overflow:hidden;
  border:1px solid rgba(31,18,44,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 46px rgba(35,19,48,.075);
}
.cw-search-card__media {
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#22152e;
}
.cw-search-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.cw-search-card:hover .cw-search-card__media img { transform:scale(1.035); }
.cw-search-card__placeholder {
  display:grid;
  width:100%;
  height:100%;
  place-items:center;
  color:rgba(255,255,255,.45);
  font-size:2.5rem;
  font-weight:900;
  background:linear-gradient(135deg,#251333,#622b76);
}
.cw-search-card__body { padding:22px; }
.cw-search-card__type {
  display:inline-flex;
  margin-bottom:10px;
  padding:5px 9px;
  border-radius:999px;
  color:#d94800;
  background:#fff0e8;
  font-size:.67rem;
  font-weight:850;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.cw-search-card h2 { margin:0 0 9px; font-size:1.18rem; line-height:1.2; }
.cw-search-card h2 a { color:#1d1326 !important; }
.cw-search-card p { margin:0 0 15px; color:#716879; font-size:.88rem; line-height:1.55; }
.cw-search-card__price { margin:0 0 12px; color:#ff5a0a; font-size:1.08rem; font-weight:850; }
.cw-search-card__link { color:#e84b03 !important; font-size:.82rem; font-weight:850; }
.cw-search-empty {
  max-width:720px;
  margin:0 auto;
  padding:48px 30px;
  border:1px solid rgba(31,18,44,.08);
  border-radius:24px;
  text-align:center;
  background:#fff;
  box-shadow:0 18px 55px rgba(35,19,48,.075);
}
.cw-search-empty h2 { margin:0 0 10px; font-size:2rem; }
.cw-search-empty p { margin:0 0 22px; color:#706779; }

@media (max-width: 1080px) and (min-width: 961px) {
  .cw-nav__link { padding-inline:7px !important; font-size:.81rem !important; }
  .cw-button--header { padding-inline:12px !important; }
}

@media (max-width: 960px) {
  .cw-site-search {
    width:100%;
    order:5;
  }
  .cw-site-search__toggle { display:none; }
  .cw-site-search__form {
    position:static;
    display:grid;
    width:100%;
    padding:0;
    border:0;
    opacity:1;
    background:transparent;
    box-shadow:none;
    pointer-events:auto;
    transform:none;
  }
  .cw-site-search__form input { height:48px; }
  .cw-site-search__form button { min-height:48px; }
  .cw-search-hero__inner { grid-template-columns:1fr; gap:24px; }
  .cw-search-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .cw-site-search__form { grid-template-columns:1fr; }
  .cw-site-search__form button { width:100%; }
  .cw-search-hero { padding:34px 0 38px; }
  .cw-search-hero h1 { font-size:clamp(2rem,9vw,3rem); }
  .cw-search-hero__form { grid-template-columns:1fr; }
  .cw-search-results { padding:30px 0 46px; }
  .cw-search-grid { grid-template-columns:1fr; gap:16px; }
  .cw-search-card__body { padding:18px; }
}

/* ===== v2.7.3 — Termos e Condições no design ComunidadeWEB ===== */
.cw-legal-page {
  background:#f8f5fb;
}
.cw-legal-hero {
  position:relative;
  overflow:hidden;
  padding:52px 0 58px;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px),
    radial-gradient(circle at 76% 24%,rgba(139,76,190,.38),transparent 32%),
    linear-gradient(120deg,#160d20 0%,#271134 61%,#54205e 100%);
  background-size:46px 46px,46px 46px,auto,auto;
}
.cw-legal-hero__orb { position:absolute; border-radius:50%; pointer-events:none; }
.cw-legal-hero__orb--one { right:-90px; bottom:-180px; width:390px; height:390px; background:rgba(255,90,10,.17); filter:blur(45px); }
.cw-legal-hero__orb--two { left:-140px; top:-170px; width:380px; height:380px; border:1px solid rgba(255,90,10,.25); }
.cw-legal-hero__grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.65fr);
  gap:54px;
  align-items:end;
}
.cw-legal-hero .cw-breadcrumb { margin-bottom:23px; color:rgba(255,255,255,.62); }
.cw-legal-hero .cw-breadcrumb a { color:rgba(255,255,255,.72) !important; }
.cw-legal-hero .cw-kicker { margin-bottom:12px; }
.cw-legal-hero h1 {
  max-width:850px;
  margin:0;
  color:#fff;
  font-size:clamp(2.7rem,5vw,5rem);
  font-weight:900;
  letter-spacing:-.058em;
  line-height:.98;
}
.cw-legal-hero__lead { max-width:760px; margin:20px 0 0; color:rgba(255,255,255,.72); font-size:1.04rem; line-height:1.65; }
.cw-legal-hero__card {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:17px;
  align-items:center;
  padding:24px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:24px;
  background:rgba(255,255,255,.075);
  box-shadow:0 24px 70px rgba(0,0,0,.13);
  backdrop-filter:blur(12px);
}
.cw-legal-hero__icon {
  display:grid;
  width:66px;
  height:66px;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:19px;
  color:#ff691f;
  background:linear-gradient(145deg,rgba(255,90,10,.28),rgba(133,73,191,.35));
}
.cw-legal-hero__icon svg { width:32px; height:32px; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.cw-legal-hero__card strong { display:block; color:#fff; font-size:1.05rem; line-height:1.25; }
.cw-legal-hero__card span:not(.cw-legal-hero__icon) { display:block; margin-top:5px; color:rgba(255,255,255,.62); font-size:.83rem; line-height:1.45; }

.cw-legal-section { padding:48px 0 54px; background:linear-gradient(180deg,#f8f5fb 0%,#fff 100%); }
.cw-legal-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:28px; align-items:start; }
.cw-legal-card {
  overflow:hidden;
  border:1px solid rgba(31,18,44,.08);
  border-radius:26px;
  background:#fff;
  box-shadow:0 20px 70px rgba(35,19,48,.08);
}
.cw-legal-card__top {
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:17px 28px;
  border-bottom:1px solid #eee9f1;
  color:#6f6279;
  background:#fcfafd;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.cw-legal-content { padding:clamp(28px,4vw,52px); color:#433a49; font-size:1rem; line-height:1.77; }
.cw-legal-content > *:first-child { margin-top:0 !important; }
.cw-legal-content > *:last-child { margin-bottom:0 !important; }
.cw-legal-content p { margin:0 0 1.28em; }
.cw-legal-content h1,
.cw-legal-content h2,
.cw-legal-content h3,
.cw-legal-content h4 { color:#1d1426; font-weight:880; letter-spacing:-.025em; line-height:1.16; }
.cw-legal-content h1 { margin:0 0 .8em; font-size:clamp(1.9rem,3vw,2.65rem); }
.cw-legal-content h2 { margin:1.65em 0 .65em; font-size:clamp(1.55rem,2.2vw,2.05rem); }
.cw-legal-content h3 { margin:1.45em 0 .6em; font-size:1.32rem; }
.cw-legal-content strong { color:#21172a; }
.cw-legal-content a { color:#e84b03 !important; font-weight:750; text-decoration:underline; text-underline-offset:3px; }
.cw-legal-content ul,
.cw-legal-content ol { margin:1.1em 0 1.4em; padding-left:1.4em; }
.cw-legal-content li { margin:.4em 0; }
.cw-legal-content blockquote { margin:1.6em 0; padding:19px 22px; border-left:4px solid #ff5a0a; border-radius:0 15px 15px 0; background:#f7f0fb; }
.cw-legal-card__bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 28px 22px;
  border-top:1px solid #eee9f1;
  color:#8a7e91;
  background:#fcfafd;
  font-size:.78rem;
}
.cw-legal-card__bottom a { color:#e84b03 !important; font-weight:820; }

.cw-legal-aside { display:grid; gap:18px; position:sticky; top:118px; }
body.admin-bar .cw-legal-aside { top:150px; }
.cw-legal-search,
.cw-legal-aside__card {
  padding:22px;
  border:1px solid rgba(31,18,44,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 15px 48px rgba(35,19,48,.065);
}
.cw-legal-search label { display:block; margin-bottom:10px; color:#21172a; font-size:.8rem; font-weight:850; }
.cw-legal-search > div { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:7px; }
.cw-legal-search input { width:100%; min-width:0; height:44px; padding:0 12px; border:1px solid #e7e0eb; border-radius:10px; font:inherit; font-size:.84rem; outline:none; }
.cw-legal-search input:focus { border-color:rgba(255,90,10,.55); box-shadow:0 0 0 3px rgba(255,90,10,.09); }
.cw-legal-search button { border:0; border-radius:10px; padding:0 13px; color:#fff; background:#ff5a0a; font:inherit; font-size:.75rem; font-weight:850; cursor:pointer; }
.cw-legal-aside__card { position:relative; overflow:hidden; }
.cw-legal-aside__card .cw-eyebrow { margin:0 0 8px; }
.cw-legal-aside__card h2 { margin:0 0 10px; color:#21172a; font-size:1.25rem; line-height:1.15; }
.cw-legal-aside__card p:not(.cw-eyebrow) { margin:0 0 15px; color:#766b7d; font-size:.87rem; line-height:1.5; }
.cw-legal-aside__card > a { color:#e84b03 !important; font-size:.82rem; font-weight:850; }
.cw-legal-aside__card--accent { color:#fff; border-color:rgba(255,255,255,.08); background:linear-gradient(145deg,#21112f,#542368 70%,#6c2a50); }
.cw-legal-aside__card--accent::after { position:absolute; right:-54px; bottom:-63px; width:150px; height:150px; border-radius:50%; background:rgba(255,90,10,.2); content:""; }
.cw-legal-aside__card--accent h2 { color:#fff; }
.cw-legal-aside__card--accent p:not(.cw-eyebrow) { color:rgba(255,255,255,.7); }
.cw-legal-aside__card--accent > a { color:#fff !important; }
.cw-legal-aside__icon { display:grid; width:48px; height:48px; margin-bottom:18px; place-items:center; border-radius:14px; color:#ff6a22; background:rgba(255,255,255,.11); }
.cw-legal-aside__icon svg { width:25px; height:25px; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.cw-legal-links { display:grid; margin-top:6px; }
.cw-legal-links a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 0; border-top:1px solid #eee9f1; color:#4a4050 !important; font-size:.84rem; font-weight:700; }
.cw-legal-links a:first-child { border-top:0; }
.cw-legal-links a span { color:#ff5a0a; }
.cw-legal-aside__card--help { background:linear-gradient(145deg,#f7effd,#efe2fb); }

.cw-legal-related { padding:0 0 68px; background:#fff; }
.cw-legal-related__heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:22px; }
.cw-legal-related__heading h2 { margin:5px 0 0; color:#21172a; font-size:clamp(1.7rem,2.8vw,2.45rem); letter-spacing:-.035em; }
.cw-legal-related__heading > a { color:#e84b03 !important; font-size:.85rem; font-weight:850; }
.cw-legal-related__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.cw-legal-related__item {
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  min-height:94px;
  padding:16px 18px;
  border:1px solid rgba(31,18,44,.08);
  border-radius:18px;
  color:#21172a !important;
  background:#fff;
  box-shadow:0 10px 35px rgba(35,19,48,.055);
  transition:transform .16s ease,box-shadow .16s ease;
}
.cw-legal-related__item:hover { transform:translateY(-2px); box-shadow:0 16px 45px rgba(35,19,48,.09); }
.cw-legal-related__icon { display:grid; width:43px; height:43px; place-items:center; border-radius:12px; color:#6f35a5; background:#f1e6fa; font-weight:900; }
.cw-legal-related__item strong { display:block; font-size:.92rem; line-height:1.3; }
.cw-legal-related__item small { display:block; margin-top:4px; color:#8a7e91; font-size:.72rem; }
.cw-legal-related__item b { color:#ff5a0a; }

@media (max-width: 980px) {
  .cw-legal-hero__grid { grid-template-columns:1fr; gap:26px; }
  .cw-legal-hero__card { max-width:560px; }
  .cw-legal-layout { grid-template-columns:1fr; }
  .cw-legal-aside { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .cw-legal-search { grid-column:1/-1; }
}

@media (max-width: 767px) {
  .cw-legal-hero { padding:30px 0 36px; }
  .cw-legal-hero .cw-breadcrumb { margin-bottom:18px; font-size:.7rem; }
  .cw-legal-hero h1 { font-size:clamp(2.2rem,11vw,3.35rem); }
  .cw-legal-hero__lead { margin-top:15px; font-size:.94rem; }
  .cw-legal-hero__card { padding:18px; border-radius:18px; }
  .cw-legal-hero__icon { width:54px; height:54px; border-radius:15px; }
  .cw-legal-section { padding:28px 0 36px; }
  .cw-legal-layout { width:min(100% - 28px,1180px); gap:18px; }
  .cw-legal-card { border-radius:20px; }
  .cw-legal-card__top { padding:14px 18px; }
  .cw-legal-content { padding:24px 20px; font-size:.96rem; line-height:1.72; }
  .cw-legal-content h1 { font-size:1.75rem; }
  .cw-legal-content h2 { font-size:1.5rem; }
  .cw-legal-card__bottom { display:grid; padding:16px 20px 20px; }
  .cw-legal-aside { grid-template-columns:1fr; gap:14px; }
  .cw-legal-search { grid-column:auto; }
  .cw-legal-aside__card,.cw-legal-search { padding:19px; border-radius:18px; }
  .cw-legal-search > div { grid-template-columns:1fr; }
  .cw-legal-search button { min-height:42px; }
  .cw-legal-related { padding:0 0 42px; }
  .cw-legal-related__heading { align-items:flex-start; }
  .cw-legal-related__heading h2 { font-size:1.8rem; }
  .cw-legal-related__heading > a { display:none; }
  .cw-legal-related__grid { grid-template-columns:1fr; }
  .cw-legal-related__item { min-height:84px; padding:14px 15px; }
}

/* ===== v2.7.4 — Página 404 ComunidadeWEB ===== */
body.cwhm-404-template {
  margin:0 !important;
  background:#fff;
}
.cw-404-page { min-height:100vh; background:#fff; }
.cw-404-hero {
  position:relative;
  overflow:hidden;
  padding:72px 0 78px;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),
    radial-gradient(circle at 74% 24%,rgba(131,66,180,.38),transparent 34%),
    linear-gradient(120deg,#160d20 0%,#281237 62%,#57205e 100%);
  background-size:46px 46px,46px 46px,auto,auto;
}
.cw-404-hero__glow { position:absolute; border-radius:50%; pointer-events:none; }
.cw-404-hero__glow--one { right:-100px; bottom:-190px; width:430px; height:430px; background:rgba(255,90,10,.2); filter:blur(60px); }
.cw-404-hero__glow--two { left:-175px; top:-210px; width:450px; height:450px; border:1px solid rgba(255,90,10,.24); }
.cw-404-hero__inner { position:relative; z-index:1; max-width:920px; text-align:center; }
.cw-404-code {
  margin:0 auto 4px;
  color:transparent;
  font-size:clamp(6rem,15vw,11rem);
  font-weight:950;
  letter-spacing:-.08em;
  line-height:.8;
  -webkit-text-stroke:2px rgba(255,255,255,.12);
  text-shadow:0 28px 90px rgba(0,0,0,.2);
}
.cw-404-hero .cw-kicker { justify-content:center; margin:26px 0 12px; color:#ff722f; }
.cw-404-hero h1 { margin:0; font-size:clamp(2.7rem,5.5vw,5.25rem); font-weight:920; letter-spacing:-.055em; line-height:.98; }
.cw-404-hero__lead { max-width:720px; margin:20px auto 0; color:rgba(255,255,255,.72); font-size:1.05rem; line-height:1.65; }
.cw-404-search {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
  width:min(100%,680px);
  margin:32px auto 0;
  padding:7px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:17px;
  background:rgba(255,255,255,.09);
  box-shadow:0 20px 60px rgba(0,0,0,.16);
  backdrop-filter:blur(10px);
}
.cw-404-search input {
  width:100%; min-width:0; height:52px; padding:0 16px; border:0; border-radius:12px;
  color:#fff; background:rgba(7,3,12,.28); font:inherit; font-size:.94rem; outline:none;
}
.cw-404-search input::placeholder { color:rgba(255,255,255,.55); }
.cw-404-search button {
  display:inline-flex; align-items:center; justify-content:center; gap:8px; min-width:132px; height:52px; padding:0 18px;
  border:0; border-radius:12px; color:#fff; background:#ff5a0a; font:inherit; font-weight:850; cursor:pointer;
}
.cw-404-search button svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; }

.cw-404-actions { padding:52px 0; background:linear-gradient(180deg,#f8f5fb 0%,#fff 100%); }
.cw-404-actions__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.cw-404-action {
  position:relative; overflow:hidden; min-height:330px; padding:36px; border:1px solid rgba(31,18,44,.08); border-radius:28px;
  background:#fff; box-shadow:0 20px 70px rgba(35,19,48,.075);
}
.cw-404-action::after { position:absolute; right:-80px; bottom:-95px; width:230px; height:230px; border-radius:50%; content:""; pointer-events:none; }
.cw-404-action--shop { color:#fff; border-color:rgba(255,255,255,.08); background:linear-gradient(145deg,#21102e 0%,#542269 66%,#6b2c53 100%); }
.cw-404-action--shop::after { background:rgba(255,90,10,.2); }
.cw-404-action--home::after { background:rgba(115,58,171,.08); }
.cw-404-action__icon {
  display:grid; width:64px; height:64px; margin-bottom:26px; place-items:center; border-radius:19px;
  color:#ff6519; background:#fff0e8; box-shadow:0 12px 30px rgba(255,90,10,.12);
}
.cw-404-action--shop .cw-404-action__icon { color:#fff; background:rgba(255,255,255,.1); }
.cw-404-action__icon svg,.cw-404-button svg { fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.cw-404-action__icon svg { width:31px; height:31px; }
.cw-404-action .cw-eyebrow { margin:0 0 10px; }
.cw-404-action--shop .cw-eyebrow { color:#ff7b3c; }
.cw-404-action h2 { max-width:540px; margin:0 0 14px; color:#201526; font-size:clamp(1.7rem,2.7vw,2.45rem); letter-spacing:-.035em; line-height:1.08; }
.cw-404-action--shop h2 { color:#fff; }
.cw-404-action p:not(.cw-eyebrow) { max-width:570px; margin:0 0 26px; color:#756b7c; font-size:.95rem; line-height:1.65; }
.cw-404-action--shop p:not(.cw-eyebrow) { color:rgba(255,255,255,.7); }
.cw-404-button {
  position:relative; z-index:1; display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:52px; padding:13px 20px;
  border-radius:14px; font-size:.9rem; font-weight:880; transition:transform .16s ease,box-shadow .16s ease;
}
.cw-404-button:hover { transform:translateY(-2px); }
.cw-404-button svg { width:21px; height:21px; }
.cw-404-button--shop { color:#fff !important; background:#ff5a0a; box-shadow:0 14px 35px rgba(255,90,10,.3); }
.cw-404-button--home { color:#fff !important; background:#21152a; box-shadow:0 14px 35px rgba(33,21,42,.18); }

.cw-404-related { padding:8px 0 64px; background:#fff; }
.cw-404-related__heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:22px; }
.cw-404-related__heading h2 { margin:4px 0 0; color:#21172a; font-size:clamp(1.7rem,2.8vw,2.45rem); letter-spacing:-.035em; }
.cw-404-related__heading > a { color:#e84b03 !important; font-size:.84rem; font-weight:850; }
.cw-404-related__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.cw-404-related__card { overflow:hidden; border:1px solid rgba(31,18,44,.08); border-radius:21px; color:#21172a !important; background:#fff; box-shadow:0 14px 45px rgba(35,19,48,.065); transition:transform .16s ease,box-shadow .16s ease; }
.cw-404-related__card:hover { transform:translateY(-3px); box-shadow:0 20px 55px rgba(35,19,48,.1); }
.cw-404-related__thumb { display:block; aspect-ratio:16/9; overflow:hidden; background:linear-gradient(145deg,#eee2f8,#f7eee8); }
.cw-404-related__thumb img { width:100%; height:100%; object-fit:cover; }
.cw-404-related__placeholder { display:grid; width:100%; height:100%; place-items:center; color:#7e5b9a; font-weight:850; }
.cw-404-related__copy { display:block; padding:18px 19px 20px; }
.cw-404-related__copy small { display:block; margin-bottom:7px; color:#95879f; font-size:.68rem; font-weight:750; }
.cw-404-related__copy strong { display:block; min-height:2.6em; font-size:.98rem; line-height:1.3; }
.cw-404-related__copy b { display:block; margin-top:14px; color:#e84b03; font-size:.78rem; }

@media (max-width: 980px) {
  .cw-404-actions__grid { grid-template-columns:1fr; }
  .cw-404-related__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .cw-404-hero { padding:42px 0 48px; }
  .cw-404-code { font-size:clamp(5rem,28vw,8rem); }
  .cw-404-hero .cw-kicker { margin-top:20px; font-size:.68rem; }
  .cw-404-hero h1 { font-size:clamp(2.4rem,11vw,3.4rem); }
  .cw-404-hero__lead { margin-top:16px; font-size:.94rem; }
  .cw-404-search { grid-template-columns:1fr; width:100%; margin-top:25px; padding:6px; }
  .cw-404-search button { width:100%; }
  .cw-404-actions { padding:28px 0 34px; }
  .cw-404-actions__grid { width:min(100% - 28px,1180px); gap:18px; }
  .cw-404-action { min-height:0; padding:26px 22px; border-radius:22px; }
  .cw-404-action__icon { width:56px; height:56px; margin-bottom:21px; border-radius:16px; }
  .cw-404-action h2 { font-size:1.75rem; }
  .cw-404-button { width:100%; min-height:54px; padding-inline:15px; text-align:center; }
  .cw-404-related { padding:0 0 38px; }
  .cw-404-related__heading { align-items:flex-start; }
  .cw-404-related__heading > a { display:none; }
  .cw-404-related__grid { grid-template-columns:1fr; gap:14px; }
  .cw-404-related__card { border-radius:18px; }
}

/* ===== v2.7.5 correção menu mobile: Sublimação sempre visível ===== */
@media (max-width: 960px) {
  .cw-dropdown--videos {
    overflow: visible !important;
  }

  .cw-dropdown--videos > a:first-child {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 11px 12px !important;
    transform: none !important;
  }
}


/* ===== v2.7.6 menu mobile: corrige scroll que cortava Sublimação ===== */
@media (max-width: 960px) {
  .cw-nav {
    overflow-anchor: none !important;
    overscroll-behavior: contain;
  }

  .cw-nav__item--dropdown,
  .cw-dropdown,
  .cw-dropdown--videos,
  .cw-dropdown--videos > a {
    overflow-anchor: none !important;
  }

  .cw-dropdown--videos > a:first-child {
    scroll-margin-top: 10px !important;
  }
}


/* ===== v2.7.7 menu mobile: mantém Vídeo aulas desde o topo ===== */
@media (max-width: 960px) {
  .cw-nav.is-open {
    scroll-behavior: auto !important;
  }

  .cw-nav__item--dropdown.is-open > .cw-dropdown--videos {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }

  .cw-dropdown--videos > a:first-child {
    display: flex !important;
    order: -999 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* ===== v2.7.8 menu mobile: Sublimação após Silhouette Cameo ===== */
@media (max-width: 960px) {
  /* Neutraliza a tentativa anterior de forçar o primeiro link para o topo. */
  .cw-dropdown--videos > a:first-child {
    order: initial !important;
  }

  .cw-dropdown--videos > .cw-mobile-sublimacao {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 11px 12px !important;
    transform: none !important;
    order: initial !important;
  }
}


/* ===== v2.7.9 menu mobile: prioriza Sublimação e CorelDRAW ===== */
@media (max-width: 960px) {
  .cw-dropdown--videos > .cw-mobile-video-hidden {
    display: none !important;
  }

  .cw-dropdown--videos > .cw-mobile-video-priority {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    height: auto !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 11px 12px !important;
    transform: none !important;
    order: initial !important;
  }
}

/* ===== v2.8.0 — cupom dentro de “Seu pedido” no checkout ===== */
/* Salvaguarda: o formulário/toggle nativo não deve ocupar a faixa superior. */
.cw-checkout-page .woocommerce-form-coupon-toggle,
.cw-checkout-page form.checkout_coupon {
  display: none !important;
}

.cw-checkout-page .cwhm-checkout-coupon-entry > td {
  padding: 14px 0 16px !important;
  text-align: left !important;
}

.cw-checkout-page .cwhm-checkout-coupon {
  display: grid;
  gap: 8px;
  width: 100%;
}

.cw-checkout-page .cwhm-checkout-coupon label {
  margin: 0;
  color: var(--cw-ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
}

.cw-checkout-page .cwhm-checkout-coupon__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.cw-checkout-page .cwhm-checkout-coupon__input {
  width: 100% !important;
  min-width: 0;
  min-height: 43px !important;
  margin: 0 !important;
  padding: 9px 11px !important;
  border: 1px solid rgba(38,22,50,.15) !important;
  border-radius: 10px !important;
  color: var(--cw-ink) !important;
  background: #fbfafc !important;
  box-shadow: none !important;
  font-size: .86rem !important;
  line-height: 1.2;
}

.cw-checkout-page .cwhm-checkout-coupon__input:focus {
  border-color: var(--cw-purple) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(111,53,165,.11) !important;
  outline: 0;
}

.cw-checkout-page .cwhm-checkout-coupon__button {
  min-height: 43px;
  margin: 0 !important;
  padding: 9px 15px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: var(--cw-orange) !important;
  box-shadow: 0 8px 18px rgba(255,90,10,.20);
  font: inherit;
  font-size: .82rem !important;
  font-weight: 820 !important;
  line-height: 1.2 !important;
  cursor: pointer;
  white-space: nowrap;
}

.cw-checkout-page .cwhm-checkout-coupon__button:hover {
  background: #ff6a21 !important;
}

.cw-checkout-page .cwhm-checkout-coupon__button:disabled,
.cw-checkout-page .cwhm-checkout-coupon.is-loading .cwhm-checkout-coupon__button {
  cursor: wait;
  opacity: .7;
}

.cw-checkout-page .cwhm-checkout-coupon__status {
  min-height: 0;
  margin: 0 !important;
  color: #6b6271;
  font-size: .75rem;
  font-weight: 650;
  line-height: 1.35;
}

.cw-checkout-page .cwhm-checkout-coupon__status:empty {
  display: none;
}

.cw-checkout-page .cwhm-checkout-coupon__status.is-success {
  color: #2d7b3b;
}

.cw-checkout-page .cwhm-checkout-coupon__status.is-error {
  color: #b33434;
}

/* A linha do cupom aplicado continua sendo a nativa do WooCommerce,
   imediatamente abaixo do novo campo e antes do Total. */
.cw-checkout-page table.shop_table tr.cart-discount th,
.cw-checkout-page table.shop_table tr.cart-discount td {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

@media (max-width: 480px) {
  .cw-checkout-page .cwhm-checkout-coupon__controls {
    grid-template-columns: 1fr;
  }

  .cw-checkout-page .cwhm-checkout-coupon__button {
    width: 100%;
  }
}

/* ===== v2.8.1 — oferta automática + order bump no checkout ===== */
.cw-checkout-page .cwhm-checkout-coupon__offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 90, 10, .22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 247, 241, .98), rgba(248, 242, 255, .98));
}

.cw-checkout-page .cwhm-checkout-coupon__offer.is-applied {
  border-color: rgba(66, 160, 84, .25);
  background: linear-gradient(135deg, rgba(244, 252, 245, .98), rgba(248, 242, 255, .94));
}

.cw-checkout-page .cwhm-checkout-coupon__offer-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cw-checkout-page .cwhm-checkout-coupon__eyebrow {
  color: var(--cw-orange);
  font-size: .72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.cw-checkout-page .cwhm-checkout-coupon__offer-copy strong {
  color: var(--cw-ink);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.2;
}

.cw-checkout-page .cwhm-checkout-coupon__offer-copy small {
  color: #665d6d;
  font-size: .73rem;
  line-height: 1.35;
}

.cw-checkout-page .cwhm-checkout-coupon__quick,
.cw-checkout-page .cwhm-checkout-coupon__applied {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.15;
}

.cw-checkout-page .cwhm-checkout-coupon__quick {
  border: 0;
  color: #fff;
  background: var(--cw-orange);
  box-shadow: 0 8px 18px rgba(255, 90, 10, .18);
  cursor: pointer;
}

.cw-checkout-page .cwhm-checkout-coupon__quick:hover {
  background: #ff6a21;
}

.cw-checkout-page .cwhm-checkout-coupon__quick:disabled,
.cw-checkout-page .cwhm-checkout-coupon.is-loading .cwhm-checkout-coupon__quick {
  opacity: .7;
  cursor: wait;
}

.cw-checkout-page .cwhm-checkout-coupon__applied {
  color: #276e37;
  background: rgba(67, 169, 86, .10);
  border: 1px solid rgba(67, 169, 86, .18);
}

.cw-checkout-page .cwhm-checkout-coupon__manual {
  margin-top: 2px;
  padding-top: 2px;
}

.cw-checkout-page .cwhm-checkout-coupon__manual summary {
  width: fit-content;
  color: #706777;
  font-size: .74rem;
  font-weight: 750;
  cursor: pointer;
  user-select: none;
}

.cw-checkout-page .cwhm-checkout-coupon__manual[open] summary {
  margin-bottom: 8px;
}

.cw-checkout-page .cwhm-order-bumps {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 14px;
  border: 1px solid rgba(111, 53, 165, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fbf7ff 100%);
  box-shadow: 0 10px 28px rgba(57, 33, 74, .06);
}

.cw-checkout-page .cwhm-order-bumps__head {
  display: grid;
  gap: 3px;
}

.cw-checkout-page .cwhm-order-bumps__eyebrow {
  color: var(--cw-orange);
  font-size: .69rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.cw-checkout-page .cwhm-order-bumps__head > strong {
  color: var(--cw-ink);
  font-size: .97rem;
  font-weight: 900;
  line-height: 1.15;
}

.cw-checkout-page .cwhm-order-bumps__head > small {
  color: #6c6272;
  font-size: .75rem;
  line-height: 1.35;
}

.cw-checkout-page .cwhm-order-bumps__list {
  display: grid;
  gap: 8px;
}

.cw-checkout-page .cwhm-order-bump {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(38, 22, 50, .10);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cw-checkout-page .cwhm-order-bump:hover {
  border-color: rgba(255, 90, 10, .28);
  box-shadow: 0 6px 16px rgba(57, 33, 74, .06);
}

.cw-checkout-page .cwhm-order-bump.is-selected {
  border-color: rgba(255, 90, 10, .38);
  background: rgba(255, 248, 243, .92);
}

.cw-checkout-page .cwhm-order-bump.is-loading {
  opacity: .68;
  cursor: wait;
}

.cw-checkout-page .cwhm-order-bump input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cw-checkout-page .cwhm-order-bump__check {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(111, 53, 165, .42);
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.cw-checkout-page .cwhm-order-bump input:checked + .cwhm-order-bump__check {
  border-color: var(--cw-orange);
  background: var(--cw-orange);
}

.cw-checkout-page .cwhm-order-bump input:checked + .cwhm-order-bump__check::after {
  content: "✓";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.cw-checkout-page .cwhm-order-bump__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cw-checkout-page .cwhm-order-bump__copy strong {
  color: var(--cw-ink);
  font-size: .79rem;
  font-weight: 850;
  line-height: 1.25;
}

.cw-checkout-page .cwhm-order-bump__copy small {
  color: #746b79;
  font-size: .68rem;
  line-height: 1.25;
}

.cw-checkout-page .cwhm-order-bump__price {
  color: var(--cw-orange);
  font-size: .77rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.cw-checkout-page .cwhm-order-bumps__status {
  min-height: 0;
  margin: 0 !important;
  color: #6c6272;
  font-size: .71rem;
  font-weight: 700;
  line-height: 1.3;
}

.cw-checkout-page .cwhm-order-bumps__status:empty {
  display: none;
}

.cw-checkout-page .cwhm-order-bumps__status.is-success { color: #2d7b3b; }
.cw-checkout-page .cwhm-order-bumps__status.is-error { color: #b33434; }

@media (max-width: 620px) {
  .cw-checkout-page .cwhm-checkout-coupon__offer {
    grid-template-columns: 1fr;
  }

  .cw-checkout-page .cwhm-checkout-coupon__quick,
  .cw-checkout-page .cwhm-checkout-coupon__applied {
    width: 100%;
  }

  .cw-checkout-page .cwhm-order-bumps {
    padding: 12px;
    border-radius: 14px;
  }

  .cw-checkout-page .cwhm-order-bump {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .cw-checkout-page .cwhm-order-bump__price {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
}


/* ===== v2.8.7 — dropdown no Cupom + origem da venda ===== */
.cw-checkout-page .cwhm-checkout-coupon__source-wrap {
  display: grid;
  gap: 5px;
  min-width: 175px;
}

.cw-checkout-page .cwhm-checkout-coupon__source-wrap label {
  color: var(--cw-ink);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.15;
}

.cw-checkout-page .cwhm-checkout-coupon__source {
  width: 100% !important;
  min-width: 175px;
  min-height: 43px !important;
  margin: 0 !important;
  padding: 9px 34px 9px 11px !important;
  border: 1px solid rgba(111, 53, 165, .24) !important;
  border-radius: 10px !important;
  color: var(--cw-ink) !important;
  background-color: #fff !important;
  box-shadow: none !important;
  font: inherit;
  font-size: .82rem !important;
  font-weight: 780 !important;
  line-height: 1.2 !important;
  cursor: pointer;
}

.cw-checkout-page .cwhm-checkout-coupon__source:focus {
  border-color: var(--cw-purple) !important;
  box-shadow: 0 0 0 3px rgba(111, 53, 165, .11) !important;
  outline: 0;
}

.cw-checkout-page .cwhm-checkout-coupon.is-loading .cwhm-checkout-coupon__source,
.cw-checkout-page .cwhm-checkout-coupon__source:disabled {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 620px) {
  .cw-checkout-page .cwhm-checkout-coupon__source-wrap,
  .cw-checkout-page .cwhm-checkout-coupon__source {
    width: 100% !important;
    min-width: 0;
  }
}


/* ===== v2.8.8 — order bump no fragmento do resumo + cupom único ===== */
.cw-checkout-page .woocommerce-checkout-review-order-table tr.cwhm-order-bumps-row > td {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.cw-checkout-page .cwhm-order-bumps-row .cwhm-order-bumps {
  margin: 16px 0 18px;
}
