.elementor-7139 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-7139 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---------- Paleta ---------- */
  --ink:        #0E2B34;   /* petróleo profundo - fundos escuros */
  --ink-2:      #14404E;   /* petróleo médio */
  --ink-3:      #1D5568;   /* petróleo claro - detalhes */
  --paper:      #FBF9F6;   /* off-white quente - fundo padrão */
  --paper-2:    #F2EDE6;   /* areia - fundo alternado */
  --line:       #E4DDD3;   /* fio de 1px */
  --text:       #55646C;   /* corpo de texto sobre claro */
  --text-soft:  #7E8C94;   /* texto secundário */
  --white:      #FFFFFF;

  /* ---------- Acento único ---------- */
  --accent:      #17A47A;
  --accent-dk:   #0E8462;
  --accent-soft: #DCF2EA;
  --accent-lite: #6FD9B4;  /* sobre fundo escuro */

  /* ---------- Formas ---------- */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 9999px;
  --shadow: 0 1px 2px rgba(14,43,52,.04), 0 12px 32px -16px rgba(14,43,52,.18);
  --shadow-lg: 0 2px 4px rgba(14,43,52,.04), 0 32px 64px -24px rgba(14,43,52,.32);

  /* ---------- Ritmo ---------- */
  --section: clamp(72px, 9vw, 128px);

  /* ---------- Tipografia ---------- */
  --font-serif: 'Lora', serif;
  --font-sans: 'DM Sans', sans-serif;

  /* ---------- Aliases legados ----------
     Mantidos para que qualquer seletor antigo continue resolvendo. */
  --navy: var(--ink);
  --navy-mid: var(--ink-2);
  --navy-dark: var(--ink-3);
  --cream: var(--paper);
  --sand: var(--paper-2);
  --sand-dark: var(--line);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans); background: var(--paper); color: var(--text);
  line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* Foco visível para navegação por teclado */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  letter-spacing: -.01em;
  padding: 12px 24px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid transparent; width: fit-content;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              transform .25s ease, box-shadow .25s ease;
}
.btn--lg { font-size: 15px; padding: 17px 38px; }

/* CTA primário — mesmo tratamento em toda a página */
.btn--white,
.btn--navy {
  background: var(--accent); color: var(--white);
  box-shadow: 0 8px 20px -10px rgba(23,164,122,.7);
}
.btn--white:hover,
.btn--navy:hover {
  background: var(--accent-dk); transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(23,164,122,.8);
}
.btn--white:active,
.btn--navy:active { transform: translateY(0); }

.btn--ghost {
  display: inline-flex; margin-top: 18px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.28); font-size: 13px; padding: 11px 22px;
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); }

/* ===================== LABELS ===================== */
.label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-dk);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.label::before {
  content: ""; width: 22px; height: 1px; background: currentColor; flex-shrink: 0; opacity: .5;
}
.label--light { color: var(--accent-lite); }
.label--navy { color: var(--accent-dk); }
.section-header .label { justify-content: center; }

/* ===================== TIPOGRAFIA DE SEÇÃO ===================== */
h1, h2, h3 { letter-spacing: -.025em; }

/* ===================== HEADER ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
/* Sólido só depois que a página rola — no topo ele flutua sobre o hero */
.header.is-scrolled {
  background: rgba(14,43,52,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.1);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-img {
  width: 38px; height: 38px; object-fit: contain; border-radius: var(--r-sm);
}
.header__name {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--white); display: block; line-height: 1.2; letter-spacing: -.02em;
}
.header__subtitle {
  font-size: 9px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .18em;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.78); transition: color .2s; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent-lite); transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(14,43,52,.97); backdrop-filter: blur(14px);
    padding: 24px; border-top: 1px solid rgba(255,255,255,.1); gap: 18px;
  }
  .nav.open { display: flex; }
  .nav .btn { width: 100%; }
  .nav__link::after { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  background: var(--ink);
  display: flex; align-items: center; overflow: hidden;
}
/* Brilho difuso no canto superior direito, em vez de gradiente diagonal cheio */
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(29,85,104,.55) 0%, transparent 68%);
  pointer-events: none;
}
.hero__dots {
  position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 92%);
}
.hero__inner {
  position: relative; display: grid;
  grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center;
  padding-top: 148px; padding-bottom: 120px;
}
.hero__content { display: flex; flex-direction: column; gap: 0; }
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 700; color: var(--white); line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px; color: rgba(255,255,255,.68);
  line-height: 1.75; margin-bottom: 36px; max-width: 540px;
}
.hero__image { position: relative; }
.hero__image img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: top;
  aspect-ratio: 4/5;
}
/* Moldura deslocada atrás da foto */
.hero__image::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(111,217,180,.3); border-radius: var(--r-lg);
  pointer-events: none;
}
.hero__fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--paper), transparent);
}
.hero__note {
  font-size: 11px; color: rgba(255,255,255,.45); margin-top: 12px; margin-left: 2px;
  letter-spacing: .04em;
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 10.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r-pill); margin-bottom: 30px; width: fit-content;
}
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-lite); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(111,217,180,.2);
}

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 13px; margin-bottom: 38px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5;
}
.checklist li span {
  width: 20px; height: 20px; background: rgba(111,217,180,.14);
  border: 1px solid rgba(111,217,180,.32);
  color: var(--accent-lite); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 2px;
}

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag {
  background: transparent; color: rgba(255,255,255,.7);
  font-size: 11px; padding: 7px 15px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.16); letter-spacing: .02em;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; padding-bottom: 96px; }
  .hero__image img { max-width: 400px; margin: 0 auto; }
  .hero__image::before { display: none; }
}

/* ===================== ABOUT / O PROBLEMA ===================== */
.about { padding: var(--section) 0; background: var(--paper); }
.about__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: start; }
.about__text h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 24px;
}
.about__text p { font-size: 15.5px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.about__photo-wrap {
  margin-top: 44px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16 / 13.5;
}
.about__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Benefits — coluna que acompanha a rolagem no desktop */
.about__benefits {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow);
}
.about__benefits h3 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; color: var(--ink);
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
  line-height: 1.6;
}
.benefit-list { display: flex; flex-direction: column; gap: 4px; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: transparent; border-radius: var(--r-sm); padding: 14px 12px;
  font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.5;
  transition: background .2s;
}
.benefit-list li:hover { background: var(--paper-2); }
.benefit-list li span {
  width: 24px; height: 24px; background: var(--accent-soft); color: var(--accent-dk);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

@media (min-width: 901px) {
  .about__benefits { position: sticky; top: 108px; }
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__benefits { padding: 26px; }
}

/* ===================== TICKER ===================== */
.ticker {
  padding: 20px 0; overflow: hidden;
  background: var(--ink); border-top: none; border-bottom: none;
}
.ticker__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker__track span {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 0 18px; letter-spacing: .1em; text-transform: uppercase;
}
.ticker__track em { color: var(--accent-lite); font-style: normal; margin-left: 10px; opacity: .7; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SERVICES ===================== */
.services { padding: var(--section) 0; background: var(--paper-2); }
.section-header {
  text-align: center; margin-bottom: 64px; max-width: 660px;
  margin-left: auto; margin-right: auto;
}
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1.15;
}
.section-header p { font-size: 16px; color: var(--text); max-width: 600px; margin: 0 auto; line-height: 1.75; }

.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px;
  display: flex; flex-direction: column; box-shadow: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent;
}
.card__icon {
  font-size: 22px; margin-bottom: 22px;
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.card h3 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700;
  color: var(--ink); margin-bottom: 18px; line-height: 1.25;
}
.card ul { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.card ul li {
  font-size: 13.5px; color: var(--text); padding-left: 18px; position: relative; line-height: 1.6;
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
/* CTA secundário: acento suave que preenche no hover.
   Para voltar ao botão verde cheio, troque as duas propriedades por:
   background: var(--accent); color: var(--white); */
.card__cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-dk);
  font-size: 12.5px; font-weight: 600; padding: 13px 20px;
  border-radius: var(--r-pill); transition: all .25s ease; text-align: center;
  letter-spacing: -.01em;
}
.card__cta:hover { background: var(--accent); color: var(--white); }

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .card { padding: 26px; }
}

/* ===================== COMO EU TRABALHO ===================== */
.work { padding: var(--section) 0; background: var(--ink); position: relative; overflow: hidden; }
.work::before {
  content: ""; position: absolute; bottom: -30%; left: -15%;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(29,85,104,.45) 0%, transparent 70%);
  pointer-events: none;
}
.work__inner {
  position: relative;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start;
}
.work__image-wrap { position: relative; }
.work__image-wrap img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: top; aspect-ratio: 4/5;
}
.work__badge {
  position: absolute; bottom: 0; right: -16px; transform: translateY(50%);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}
.work__badge-crm {
  font-size: 11px; font-weight: 700; color: var(--accent-dk); margin-bottom: 6px;
  letter-spacing: .08em; text-transform: uppercase;
}
.work__badge p { font-size: 11.5px; color: var(--text); margin-bottom: 2px; }
.work__badge p:last-child {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line);
  font-weight: 500; color: var(--ink);
}

.work__content { margin-top: 0; padding-top: 0; }
.work__content h2 {
  font-family: var(--font-serif); font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 24px;
}
.work__content p { font-size: 15.5px; color: rgba(255,255,255,.68); line-height: 1.8; margin-bottom: 16px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 40px 0; }
.stat {
  background: transparent; border-radius: 0;
  border-left: 1px solid rgba(255,255,255,.14);
  padding: 6px 20px; text-align: left;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat strong {
  display: block; font-family: var(--font-serif); font-size: 20px;
  font-weight: 700; color: var(--white); margin-bottom: 6px; letter-spacing: -.02em;
}
.stat span { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; letter-spacing: .04em; }

@media (max-width: 900px) {
  .work__inner { grid-template-columns: 1fr; gap: 88px; }
  .work__badge { right: 8px; }
  .stats { gap: 16px; }
  .stat { padding: 6px 14px; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.14); padding: 14px 0 0; }
  .stat:first-child { border-top: none; padding-top: 0; }
}

/* ===================== PROCESSO ===================== */
.process { padding: var(--section) 0; background: var(--paper); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  border-radius: var(--r-lg); padding: 38px 32px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.step--light { background: var(--white); }
.step--dark { background: var(--ink); border-color: transparent; }
.step__num {
  font-family: var(--font-serif); font-size: 15px; font-weight: 700;
  line-height: 1; margin-bottom: 26px; display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; letter-spacing: 0;
}
.step--light .step__num { background: var(--accent-soft); color: var(--accent-dk); }
.step--dark .step__num { background: rgba(255,255,255,.1); color: var(--accent-lite); }
.step h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.25;
}
.step--light h3 { color: var(--ink); }
.step--dark h3 { color: var(--white); }
.step p { font-size: 14px; line-height: 1.75; }
.step--light p { color: var(--text); }
.step--dark p { color: rgba(255,255,255,.68); }

.process__note {
  margin-top: 24px; display: flex; align-items: center; gap: 14px;
  background: transparent; border: 1px dashed var(--line);
  padding: 20px 26px; border-radius: var(--r-md); width: 100%;
}
.process__note span { font-size: 18px; flex-shrink: 0; }
.process__note p { font-size: 13.5px; color: var(--ink); line-height: 1.6; }
.process__note strong { color: var(--accent-dk); }

@media (max-width: 768px) {
  .process__grid { grid-template-columns: 1fr; }
  .step { padding: 30px 26px; }
}

/* ===================== CTA FINAL ===================== */
.cta { padding: var(--section) 0; background: var(--paper-2); }
.cta__inner {
  text-align: center; max-width: 760px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  box-shadow: var(--shadow);
}
.cta__inner h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 18px;
}
.cta__inner h2 em { font-style: italic; font-weight: 400; color: var(--accent-dk); }
.cta__inner > p { font-size: 17px; color: var(--text); margin-bottom: 40px; line-height: 1.75; }
.cta__inner .btn { margin: 0 auto; }
.cta__note { margin-top: 18px; font-size: 12px; color: var(--text-soft); }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); padding-top: 72px; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__brand img { width: 34px; height: 34px; object-fit: contain; border-radius: var(--r-sm); }
.footer__brand span {
  font-family: var(--font-serif); font-size: 18px; color: var(--white);
  font-weight: 600; letter-spacing: -.02em;
}
.footer__col p, .footer__col small { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.9; }
.footer__col-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent-lite); margin-bottom: 16px; font-weight: 600;
}
.footer__phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 14px; margin-bottom: 4px; transition: color .2s;
}
.footer__phone:hover { color: var(--accent-lite); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 11px; color: rgba(255,255,255,.45); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ===================== SCROLL REVEAL ===================== */
/* Estado inicial. Só se aplica se o JS estiver rodando (.js-reveal no <html>),
   assim a página nunca fica em branco caso o script falhe. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

/* Estado revelado. O JS remove o atributo data-reveal ao fim da transição,
   devolvendo o elemento às suas regras originais (hover, transform etc.). */
.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Acessibilidade: quem pediu menos movimento vê a página estática. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal [data-reveal],
  .js-reveal [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .ticker__track { animation: none; }
  .btn:hover, .card:hover { transform: none; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a024d0 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */