:root {
  --ez-mkt-primary: #001930;
  --ez-mkt-accent: #004566;
  --ez-mkt-bg: #f4f7fb;
  --ez-mkt-card: #ffffff;
  --ez-mkt-text: #1a1a2e;
  --ez-mkt-muted: #5c667a;
  --ez-mkt-radius: 12px;
  --ez-mkt-max: 1120px;
}

.ez-mkt-body {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  color: var(--ez-mkt-text);
  background: var(--ez-mkt-bg);
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

.ez-mkt-container {
  max-width: var(--ez-mkt-max);
  margin: 0 auto;
  padding: 0 20px;
}

.ez-mkt-header {
  background: var(--ez-mkt-card);
  border-bottom: 1px solid rgba(0, 25, 48, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ez-mkt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.ez-mkt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ez-mkt-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.ez-mkt-logo img.ez-logo-coin,
.ez-mkt-footer__logo.ez-logo-coin,
.ez-mkt-download__icon.ez-logo-coin,
.ez-welcome-modal__logo.ez-logo-coin {
  border-radius: 22%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 25, 48, 0.12);
}

.ez-mkt-logo img:not(.ez-logo-coin) {
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
  height: 40px;
  width: auto;
}

.ez-mkt-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ez-mkt-nav__link {
  color: var(--ez-mkt-accent);
  text-decoration: none;
  font-size: 0.9375rem;
}

.ez-mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.ez-mkt-btn--primary {
  background: var(--ez-mkt-primary);
  color: #fff;
}

.ez-mkt-btn--secondary {
  background: transparent;
  color: var(--ez-mkt-primary);
  border: 2px solid var(--ez-mkt-primary);
}

.ez-mkt-btn--ghost {
  background: transparent;
  color: var(--ez-mkt-primary);
}

.ez-mkt-hero {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #001930 0%, #004566 100%);
  color: #fff;
}

.ez-mkt-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .ez-mkt-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.ez-mkt-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ez-mkt-hero p {
  margin: 0 0 24px;
  opacity: 0.92;
  font-size: 1.0625rem;
}

.ez-mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ez-mkt-hero .ez-mkt-btn--primary {
  background: #fff;
  color: var(--ez-mkt-primary);
}

.ez-mkt-section {
  padding: 48px 0;
}

.ez-mkt-section--alt {
  background: var(--ez-mkt-card);
}

.ez-mkt-section h2 {
  text-align: center;
  margin: 0 0 32px;
  font-size: 1.75rem;
  color: var(--ez-mkt-primary);
}

.ez-mkt-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.ez-mkt-benefit {
  background: var(--ez-mkt-card);
  border-radius: var(--ez-mkt-radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 25, 48, 0.06);
}

.ez-mkt-benefit strong {
  display: block;
  color: var(--ez-mkt-primary);
  margin-bottom: 8px;
}

.ez-mkt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.ez-mkt-step {
  background: var(--ez-mkt-card);
  border-radius: var(--ez-mkt-radius);
  padding: 24px;
  position: relative;
}

.ez-mkt-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ez-mkt-accent);
  margin-bottom: 8px;
}

.ez-mkt-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.ez-mkt-quote {
  background: var(--ez-mkt-card);
  border-radius: var(--ez-mkt-radius);
  padding: 20px;
  margin: 0;
  font-style: italic;
}

.ez-mkt-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--ez-mkt-accent);
}

.ez-mkt-cta-band {
  background: var(--ez-mkt-accent);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.ez-mkt-cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.ez-mkt-footer {
  background: var(--ez-mkt-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0;
  margin-top: 0;
}

.ez-mkt-footer a {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 0.9375rem;
}

.ez-mkt-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.ez-mkt-footer__title {
  font-weight: 700;
  margin: 0 0 12px;
}

.ez-mkt-footer__copy {
  font-size: 0.875rem;
  opacity: 0.8;
}

.ez-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ez-auth-modal.is-open {
  display: flex;
}

.ez-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 48, 0.55);
}

.ez-auth-modal__card {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  margin: 0;
}

.ez-auth-modal .ez-auth-card {
  margin: 0 auto;
  padding: 28px 24px 24px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.ez-auth-modal .ez-logo-coin {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.ez-auth-modal__panel[hidden] {
  display: none !important;
}

.ez-auth-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ez-mkt-muted);
}

.ez-wizard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.ez-wizard-progress__step {
  flex: 1;
  height: 4px;
  background: rgba(0, 25, 48, 0.15);
  border-radius: 2px;
}

.ez-wizard-progress__step.is-active,
.ez-wizard-progress__step.is-done {
  background: var(--ez-mkt-accent);
}

.ez-partner-banner {
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: var(--ez-mkt-radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ez-partner-banner__bar {
  height: 8px;
  background: rgba(0, 25, 48, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
}

.ez-partner-banner__fill {
  height: 100%;
  background: var(--ez-mkt-accent);
  transition: width 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .ez-partner-banner__fill {
    transition: none;
  }
}

.ez-partner-banner--warning {
  background: #fff8e6;
  border-color: #f0c040;
}

.ez-partner-banner--error {
  background: #ffecec;
  border-color: #e0a0a0;
}

.ez-mkt-testimonials {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ez-mkt-quote {
  margin: 0;
  padding: 20px;
  background: #fff;
  border-radius: var(--ez-mkt-radius);
  box-shadow: 0 2px 12px rgba(0, 25, 48, 0.06);
}

.ez-mkt-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--ez-mkt-muted);
  font-style: normal;
}

.ez-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #001930;
  color: #fff;
  font-size: 0.9rem;
}

.ez-cookie-bar a {
  color: #7ec8ff;
}

.ez-wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* —— Header âncoras e social —— */
.ez-mkt-nav--anchors {
  display: none;
  gap: 8px;
}

.ez-mkt-nav__anchor {
  color: var(--ez-mkt-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.ez-mkt-nav__anchor:hover {
  color: var(--ez-mkt-primary);
}

.ez-mkt-nav__social {
  display: none;
  align-items: center;
  gap: 8px;
}

.ez-mkt-nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ez-mkt-accent);
  font-size: 1.25rem;
  opacity: 0.85;
  text-decoration: none;
}

.ez-mkt-nav__social a:hover {
  opacity: 1;
}

@media (min-width: 1024px) {
  .ez-mkt-nav--anchors {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .ez-mkt-nav__social {
    display: flex;
  }
}

@media (max-width: 640px) {
  .ez-mkt-nav__link--desktop {
    display: none;
  }
}

/* —— Hero enriquecido —— */
.ez-mkt-hero__visual {
  position: relative;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ez-mkt-hero__phone {
  max-width: 45%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.ez-mkt-hero__phone--back {
  transform: translateX(-8%) rotate(-6deg);
  z-index: 1;
}

.ez-mkt-hero__phone--front {
  transform: translateX(8%) rotate(4deg);
  z-index: 2;
  margin-left: -18%;
}

.ez-mkt-hero__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ez-mkt-hero__stores--inline .ez-mkt-store-badges {
  justify-content: flex-start;
}

.ez-mkt-btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.ez-mkt-cta-band .ez-mkt-btn--primary {
  background: #fff;
  color: var(--ez-mkt-primary);
}

/* —— Store badges (imagens oficiais) —— */
.ez-mkt-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ez-mkt-store-badges a {
  display: block;
  line-height: 0;
  transition: transform 0.15s ease;
}

.ez-mkt-store-badges a:hover {
  transform: scale(1.03);
}

.ez-mkt-store-badges img {
  display: block;
  height: auto;
  max-width: 160px;
  width: auto;
}

.ez-mkt-store-badges--sm img {
  max-width: 130px;
}

/* —— Benefícios com MDI —— */
.ez-mkt-benefit__mdi {
  display: block;
  margin: 0 auto 12px;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--ez-mkt-accent);
}

.ez-mkt-benefit--highlight .ez-mkt-benefit__mdi {
  color: #c62828;
}

.ez-mkt-benefit--highlight {
  border: 2px solid var(--ez-mkt-accent);
}

/* —— Faixa tagline —— */
.ez-mkt-tagline-band {
  background: var(--ez-mkt-primary);
  color: #fff;
  padding: 40px 0;
}

.ez-mkt-tagline-band__inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.ez-mkt-tagline-band h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: #fff;
  text-align: left;
}

.ez-mkt-tagline-band p {
  margin: 0 0 8px;
  opacity: 0.92;
}

.ez-mkt-tagline-band__cta {
  font-weight: 600;
  margin-top: 12px !important;
}

@media (min-width: 768px) {
  .ez-mkt-tagline-band__inner {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* —— Quem somos com foto —— */
.ez-mkt-section--about {
  background-image: linear-gradient(rgba(0, 25, 48, 0.72), rgba(0, 25, 48, 0.72)),
    url('../../img/marketing/indexImg2.png');
  background-size: cover;
  background-position: center;
  padding: 64px 0;
}

.ez-mkt-about__card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--ez-mkt-radius);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ez-mkt-about__card h2 {
  text-align: left;
  margin-bottom: 16px;
}

.ez-mkt-about__card p {
  margin: 0 0 12px;
}

.ez-mkt-about__card p:last-child {
  margin-bottom: 0;
}

/* —— Como funciona com fundo —— */
.ez-mkt-section--steps {
  background-image: linear-gradient(rgba(244, 247, 251, 0.92), rgba(244, 247, 251, 0.92)),
    url('../../img/marketing/indexImg7.png');
  background-size: cover;
  background-position: center right;
}

/* —— Depoimentos visuais —— */
.ez-mkt-testimonials--visual {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ez-mkt-quote--visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-style: normal;
}

.ez-mkt-quote--visual p {
  font-style: italic;
  margin: 0;
}

.ez-mkt-quote__avatar {
  font-size: 4rem;
  line-height: 1;
  color: var(--ez-mkt-accent);
  margin-bottom: 12px;
  opacity: 0.85;
}

/* —— Download split —— */
.ez-mkt-download {
  display: grid;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.ez-mkt-download__copy .ez-mkt-store-badges {
  justify-content: center;
  margin: 20px 0 0;
}

.ez-mkt-download__icon {
  margin-bottom: 16px;
}

.ez-mkt-download__visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 25, 48, 0.15));
}

@media (min-width: 768px) {
  .ez-mkt-download {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .ez-mkt-download__copy .ez-mkt-store-badges {
    justify-content: flex-start;
  }
}

/* —— Central de relacionamento —— */
.ez-mkt-section__lead {
  text-align: center;
  max-width: 560px;
  margin: -16px auto 28px;
  color: var(--ez-mkt-muted);
}

.ez-mkt-section__note {
  text-align: center;
  margin-top: 24px;
}

.ez-mkt-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ez-mkt-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ez-mkt-text);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 80px;
  transition: transform 0.15s ease;
}

.ez-mkt-channel:hover {
  transform: translateY(-2px);
  color: var(--ez-mkt-accent);
}

.ez-mkt-channel img {
  width: 64px;
  height: auto;
}

.ez-mkt-channel .mdi {
  font-size: 2.5rem;
  color: var(--ez-mkt-accent);
}

.ez-mkt-channel .mdi-whatsapp {
  color: #25d366;
}

.ez-mkt-channel .mdi-facebook {
  color: #1877f2;
}

/* —— Footer social —— */
.ez-mkt-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.ez-mkt-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.35rem;
  opacity: 0.85;
  text-decoration: none;
}

.ez-mkt-footer__social a:hover {
  opacity: 1;
}

/* —— Welcome modal —— */
.ez-welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ez-welcome-modal.is-open {
  display: flex;
}

.ez-welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 48, 0.55);
}

.ez-welcome-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.ez-welcome-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ez-mkt-muted);
  line-height: 1;
}

.ez-welcome-modal__split {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #001930 55%, #fff 55%);
}

.ez-welcome-modal__left {
  padding: 28px 24px;
  color: #fff;
}

.ez-welcome-modal__left h2 {
  margin: 0 0 8px;
  font-size: 1.375rem;
}

.ez-welcome-modal__logo {
  margin-bottom: 12px;
}

.ez-welcome-modal__tagline {
  margin: 0 0 16px;
  font-weight: 600;
}

.ez-welcome-modal__stats {
  margin: 0 0 20px;
  padding-left: 20px;
  opacity: 0.95;
}

.ez-welcome-modal__stats li {
  margin-bottom: 4px;
}

.ez-welcome-modal__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
}

.ez-welcome-modal__right img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .ez-welcome-modal__split {
    grid-template-columns: 55% 45%;
  }

  .ez-welcome-modal__right {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ez-mkt-store-badges a:hover,
  .ez-mkt-channel:hover {
    transform: none;
  }
}

/* —— Parceiros: hero single visual —— */
.ez-mkt-hero__visual--single img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.ez-mkt-tagline-band--partner .ez-mkt-tagline-band__inner {
  align-items: center;
}

.ez-mkt-section--partner-about {
  background-image: linear-gradient(rgba(0, 25, 48, 0.72), rgba(0, 25, 48, 0.72)),
    url('../../img/marketing/indexImg2.png');
}

.ez-mkt-about__icon {
  margin-bottom: 16px;
}

.ez-mkt-benefits--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* —— Carrossel app (hero + seção) —— */
.ez-mkt-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.ez-mkt-carousel--hero {
  max-width: 360px;
  width: 100%;
  padding: 0 44px;
}

.ez-mkt-hero__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ez-mkt-carousel__viewport {
  overflow: hidden;
  border-radius: var(--ez-mkt-radius);
  box-shadow: 0 8px 28px rgba(0, 25, 48, 0.12);
  background: var(--ez-mkt-card);
}

.ez-mkt-carousel--hero .ez-mkt-carousel__viewport {
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: transparent;
}

.ez-mkt-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.ez-mkt-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
}

.ez-mkt-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.ez-mkt-carousel--hero .ez-mkt-carousel__slide img {
  max-height: min(560px, 72vh);
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 12px;
}

.ez-mkt-carousel__caption {
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ez-mkt-primary);
  background: var(--ez-mkt-card);
}

.ez-mkt-carousel__hero-caption {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  min-height: 1.4em;
}

.ez-mkt-carousel--hero .ez-mkt-carousel__btn {
  background: rgba(255, 255, 255, 0.92);
  top: 42%;
}

.ez-mkt-carousel--hero .ez-mkt-carousel__dots {
  margin-top: 12px;
}

.ez-mkt-carousel--hero .ez-mkt-carousel__dot {
  background: rgba(255, 255, 255, 0.35);
}

.ez-mkt-carousel--hero .ez-mkt-carousel__dot.is-active {
  background: #fff;
}

.ez-mkt-download__phones {
  position: relative;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ez-mkt-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ez-mkt-primary);
  box-shadow: 0 2px 12px rgba(0, 25, 48, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ez-mkt-carousel__btn--prev {
  left: -12px;
}

.ez-mkt-carousel__btn--next {
  right: -12px;
}

.ez-mkt-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.ez-mkt-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 25, 48, 0.2);
  cursor: pointer;
}

.ez-mkt-carousel__dot.is-active {
  background: var(--ez-mkt-accent);
}

@media (max-width: 640px) {
  .ez-mkt-carousel__btn--prev {
    left: 4px;
  }

  .ez-mkt-carousel__btn--next {
    right: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ez-mkt-carousel__track {
    transition: none;
  }
}
