/* =============================================================
   MOURA CARTUCHOS — Folha de estilos principal
   Manutenção e recarga de impressoras (tanque e laser).
   Paleta oficial (extraída do logo):
     amarelo  #F0D010   |  vermelho #F02030
     marinho  #305060   |  ciano    #00A0E0
   Organização:
     1. Variáveis & reset
     2. Base & tipografia
     3. Utilitários & botões
     4. Cabeçalho
     5. Hero + onda divisória
     6. Faixa de destaque
     7. Serviços
     8. Atendimento / passos
     9. CTA final
    10. Rodapé
    11. Botão flutuante WhatsApp
    12. Animações & responsividade
============================================================= */

/* ===========================================================
   1. VARIÁVEIS & RESET
=========================================================== */
:root {
  /* Marca */
  --yellow:       #F0D010;
  --yellow-light: #F7DE3F;
  --yellow-deep:  #E0B70C;
  --red:          #F0202F;
  --red-deep:     #CE1420;
  --navy:         #305060;
  --navy-light:   #3d6577;
  --ink:          #223b47;
  --ink-deep:     #182b34;
  --cyan:         #00A0E0;
  --cyan-light:   #33b4e7;

  /* WhatsApp */
  --wpp:          #25D366;
  --wpp-deep:     #1faa52;

  /* Neutros */
  --white:        #ffffff;
  --paper:        #fbfcfd;
  --mist:         #eef3f5;
  --mist-2:       #e3eaed;
  --line:         rgba(34, 59, 71, 0.12);

  /* Texto */
  --text:         #21353f;
  --text-muted:   #5f7683;

  /* Sombras & raios */
  --shadow-sm:    0 4px 14px rgba(34, 59, 71, 0.08);
  --shadow-md:    0 14px 34px rgba(34, 59, 71, 0.12);
  --shadow-lg:    0 26px 60px rgba(34, 59, 71, 0.18);
  --shadow-wpp:   0 12px 26px rgba(37, 211, 102, 0.38);
  --radius:       16px;
  --radius-lg:    26px;
  --radius-pill:  999px;

  /* Layout */
  --container:    1160px;
  --gutter:       clamp(1.15rem, 4vw, 2.75rem);
  --section-y:    clamp(3.75rem, 8vw, 6.5rem);
  --header-h:     72px;

  /* Tipografia */
  --font-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: .2px;
}

::selection { background: var(--yellow); color: var(--ink-deep); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===========================================================
   2. UTILITÁRIOS
=========================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.section {
  padding-block: var(--section-y);
}
.section--tint { background: var(--mist); }

.section__head {
  max-width: 660px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section__title {
  font-size: clamp(2rem, 5.4vw, 3rem);
  text-transform: uppercase;
}
.section__sub {
  margin-top: .85rem;
  color: var(--text-muted);
  font-size: 1.075rem;
}
.section__note {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--text-muted);
  font-size: .98rem;
  max-width: 680px;
  margin-inline: auto;
}
.section__note strong { color: var(--ink); }

/* ===========================================================
   3. BOTÕES
=========================================================== */
.btn {
  --btn-py: .8rem;
  --btn-px: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--wpp {
  background: var(--wpp);
  color: #fff;
  box-shadow: var(--shadow-wpp);
}
.btn--wpp:hover {
  background: var(--wpp-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(34, 59, 71, 0.28);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--lg { --btn-py: .95rem; --btn-px: 1.85rem; font-size: 1.12rem; }
.btn--xl { --btn-py: 1.15rem; --btn-px: 2.4rem; font-size: 1.3rem; }

.ico-wpp { width: 1.35em; height: 1.35em; flex: none; }

/* ===========================================================
   4. CABEÇALHO
=========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 22px rgba(34, 59, 71, 0.10);
  border-bottom-color: var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__logo img {
  height: 46px;
  width: auto;
}
.header__nav {
  display: none;
  gap: 1.9rem;
  margin-left: auto;
  margin-right: 1.75rem;
}
.header__nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--red);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.header__nav a:hover::after { transform: scaleX(1); }

.header__cta { --btn-py: .55rem; --btn-px: 1.1rem; font-size: .98rem; }

/* ===========================================================
   5. HERO
=========================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--yellow-light) 0%, var(--yellow) 55%, var(--yellow-deep) 100%);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(6rem, 12vw, 9rem);
  overflow: hidden;
}
.hero::before {
  /* textura sutil de pontos */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 59, 71, 0.06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .6;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(34, 59, 71, 0.08);
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
}
.hero__eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 32, 47, 0.22);
}
.hero__title {
  margin-top: 1.15rem;
  font-size: clamp(2.35rem, 7.2vw, 4.15rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .5px;
}
.hero__title .hl { color: var(--red); }
.hero__lead {
  margin-top: 1.15rem;
  max-width: 34ch;
  font-size: clamp(1.075rem, 2.4vw, 1.28rem);
  color: var(--ink);
}
.hero__lead strong { color: var(--navy); font-weight: 700; }
.asterisk {
  color: var(--red);
  font-weight: 700;
  vertical-align: super;
  font-size: .72em;
  padding-inline: 1px;
}

.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero__badges {
  margin-top: 1.85rem;
  display: grid;
  gap: .6rem;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__badges svg {
  width: 22px; height: 22px;
  flex: none;
  padding: 3px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

/* Ilustração */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}
.hero__art-blob {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.85), rgba(255,255,255,0) 68%);
  filter: blur(2px);
}
.printer {
  position: relative;
  width: min(90%, 400px);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(34, 59, 71, 0.22));
}
.printer__drop  { transform-origin: 366px 90px; animation: floatY 3.4s var(--ease) infinite; }
.printer__spark { transform-origin: 98px 108px; animation: twinkle 2.6s ease-in-out infinite; }

/* Onda divisória */
.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 1;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: clamp(60px, 9vw, 110px);
  display: block;
}
.wave-divider__line {
  opacity: .9;
  stroke-dasharray: 3200;
}

/* ===========================================================
   6. FAIXA DE DESTAQUE
=========================================================== */
.strip {
  position: relative;
  z-index: 3;
  margin-top: clamp(-3.5rem, -6vw, -2.5rem);
}
.strip__grid {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  gap: 1.1rem;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: .95rem;
}
.strip__item svg {
  width: 30px; height: 30px;
  flex: none;
  color: var(--cyan);
}
.strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.strip__item span { color: var(--text-muted); font-size: .96rem; }

/* ===========================================================
   7. SERVIÇOS
=========================================================== */
.cards {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--red), var(--yellow) 60%, var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 1.1rem;
  color: #fff;
}
.card__icon svg { width: 30px; height: 30px; }
.card__icon--red  { background: linear-gradient(150deg, #ff4a56, var(--red)); }
.card__icon--navy { background: linear-gradient(150deg, var(--navy-light), var(--navy)); }
.card__icon--cyan { background: linear-gradient(150deg, var(--cyan-light), var(--cyan)); }
.card__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.card__text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.card__link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--red);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.card__link:hover { color: var(--red-deep); }

/* ===========================================================
   8. ATENDIMENTO / PASSOS
=========================================================== */
.steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .85rem;
  box-shadow: 0 8px 18px rgba(48, 80, 96, 0.3);
}
.step__title {
  font-size: 1.32rem;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.step__text { color: var(--text-muted); font-size: 1rem; }

.area {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(140deg, var(--navy), var(--ink-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.35rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.area::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,160,224,.35), transparent 70%);
  pointer-events: none;
}
.area__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--yellow);
}
.area__icon svg { width: 34px; height: 34px; }
.area__text h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.area__text p { color: rgba(255,255,255,.86); }
.area__text strong { color: var(--yellow-light); }
.area__note {
  display: block;
  margin-top: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}
.area .btn { position: relative; z-index: 1; }

/* ===========================================================
   9. CTA FINAL
=========================================================== */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  opacity: .5;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  text-transform: uppercase;
}
.cta__sub {
  max-width: 600px;
  margin: 1rem auto 2rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
}
.cta .btn--wpp {
  background: var(--wpp);
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}
.cta .btn--wpp:hover { background: #fff; color: var(--wpp-deep); }
.cta__phone {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .5px;
}
.cta__phone svg { width: 26px; height: 26px; }

/* ===========================================================
   10. RODAPÉ
=========================================================== */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,.78);
  padding-top: clamp(2.75rem, 6vw, 4rem);
}
.footer__inner {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}
.footer__badge {
  width: 74px; height: 74px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  margin-bottom: 1rem;
}
.footer__desc { max-width: 34ch; font-size: 1rem; }
.footer__col h4 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .9rem;
}
.footer__col p { margin-bottom: .3rem; }
.footer__mini { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: .5rem; }
.footer__wpp {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  transition: color .2s var(--ease);
}
.footer__wpp svg { width: 26px; height: 26px; color: var(--wpp); }
.footer__wpp:hover { color: var(--wpp); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.4rem;
  text-align: center;
}
.footer__bottom p { font-size: .86rem; color: rgba(255,255,255,.55); }
.footer__bottom .footer__credit { margin-top: .45rem; font-size: .84rem; color: rgba(255,255,255,.42); }
.footer__credit a { color: rgba(255,255,255,.74); font-weight: 600; transition: color .2s var(--ease); }
.footer__credit a:hover { color: var(--yellow-light); }

/* ===========================================================
   11. BOTÃO FLUTUANTE WHATSAPP
=========================================================== */
.wpp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: none; /* no mobile fica só o botão do header; reaparece no desktop */
  align-items: center;
  gap: .6rem;
  background: var(--wpp);
  color: #fff;
  padding: .8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-wpp);
  transition: transform .2s var(--ease), background .2s var(--ease), padding .2s var(--ease);
}
.wpp-float svg { width: 32px; height: 32px; flex: none; position: relative; z-index: 1; }
.wpp-float__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .3s var(--ease), padding .3s var(--ease);
}
.wpp-float:hover {
  background: var(--wpp-deep);
  transform: translateY(-3px);
}
.wpp-float:hover .wpp-float__label { max-width: 160px; padding-right: .5rem; }
.wpp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wpp);
  animation: pulse 2.4s ease-out infinite;
  z-index: 0;
}

/* ===========================================================
   12. ANIMAÇÕES
=========================================================== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes twinkle {
  0%, 100% { opacity: .5; transform: scale(.85) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.05) rotate(15deg); }
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Reveal on scroll — só quando o JS adiciona .js no <html>.
   Assim, sem JS todo o conteúdo aparece normalmente (acessível). */
.js .section__head,
.js .strip__item,
.js .card,
.js .step,
.js .area,
.js .cta__inner {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .is-visible { opacity: 1 !important; transform: none !important; }

/* Escalonamento em grades */
.js .cards .card:nth-child(2), .js .steps .step:nth-child(2),
.js .strip__item:nth-child(2) { transition-delay: .09s; }
.js .cards .card:nth-child(3), .js .steps .step:nth-child(3),
.js .strip__item:nth-child(3) { transition-delay: .18s; }
.js .cards .card:nth-child(4), .js .steps .step:nth-child(4) { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js .section__head, .js .strip__item, .js .card,
  .js .step, .js .area, .js .cta__inner {
    opacity: 1 !important; transform: none !important;
  }
}

/* ===========================================================
   13. RESPONSIVIDADE
=========================================================== */
/* Tablet */
@media (min-width: 620px) {
  .strip__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
  .strip__item + .strip__item {
    border-left: 1px solid var(--line);
    padding-left: 1.35rem;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Desktop */
@media (min-width: 900px) {
  :root { --header-h: 84px; }
  .header__nav { display: flex; }
  .header__logo img { height: 54px; }
  .header__cta span { display: inline; }

  /* Botão flutuante de WhatsApp: só no desktop */
  .wpp-float { display: inline-flex; }

  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .hero__badges {
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem;
  }
  .hero__art { min-height: 420px; }

  .steps { grid-template-columns: repeat(4, 1fr); }

  .area {
    grid-template-columns: auto 1fr auto;
    gap: 1.75rem;
  }
}

/* Telas grandes */
@media (min-width: 1100px) {
  .hero__title { font-size: 4.15rem; }
}

/* Ajuste do botão do header em telas pequenas */
@media (max-width: 480px) {
  .header__cta span { display: none; }
  .header__cta { --btn-px: .7rem; border-radius: 50%; }
  .header__logo img { height: 42px; }
}
