/* ==========================================================================
   Robenilson Paiva · Psicanalista Clínico
   Identidade: verde sálvia + creme quente + terracota · Fraunces / Hanken Grotesk
   Mobile first. Variáveis de cor injetadas por aplicarTema (scripts.js).
   ========================================================================== */

:root {
  --bg: #f6f1e9;
  --surface: #fcfaf5;
  --texto: #26251f;
  --texto-suave: #6a6154;
  --primaria: #3c5a45;
  --primaria-suave: #e7ede6;
  --acento: #c17a54;
  --borda: #e4dbcc;

  --raio-sm: 10px;
  --raio-md: 18px;
  --raio-lg: 28px;
  --raio-pill: 999px;

  --sombra-suave: 0 2px 10px rgba(38, 37, 31, 0.06);
  --sombra-media: 0 14px 40px rgba(38, 37, 31, 0.1);
  --sombra-forte: 0 30px 70px rgba(38, 37, 31, 0.16);

  --fonte-titulo: "Fraunces", Georgia, serif;
  --fonte-corpo: "Hanken Grotesk", system-ui, sans-serif;

  --header-h: 76px;
  --container: 1180px;
}

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

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--texto);
  font-family: var(--fonte-corpo);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--primaria);
  color: #fff;
}

/* Scrollbar sutil */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--borda);
  border-radius: var(--raio-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaria);
}

/* ------------------------------------------------------------------ layout */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  position: relative;
  padding: 84px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--acento);
  opacity: 0.7;
}

.section-title {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--texto);
}

.section-title em {
  font-style: italic;
  color: var(--primaria);
}

.lead {
  color: var(--texto-suave);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-top: 18px;
}

.head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}
.head-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* SVG icons */
svg {
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ botoes */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--raio-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  background: var(--primaria);
  color: #fdfbf6;
  box-shadow: var(--sombra-media);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-forte);
  background: #33503c;
}

.btn-ghost {
  background: transparent;
  color: var(--texto);
  border-color: var(--borda);
}
.btn-ghost:hover {
  border-color: var(--primaria);
  color: var(--primaria);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------- barra progresso */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primaria), var(--acento));
  z-index: 1100;
  transition: width 0.1s linear;
}

/* -------------------------------------------------------------- grain layer */

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(246, 241, 233, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease;
}
.header.scrolled {
  border-bottom-color: var(--borda);
  box-shadow: var(--sombra-suave);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand strong {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}
.brand span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.nav-desk {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav-desk a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto-suave);
  position: relative;
  transition: color 0.2s ease;
}
.nav-desk a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--acento);
  transition: width 0.25s ease;
}
.nav-desk a:hover {
  color: var(--texto);
}
.nav-desk a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* hamburger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--borda);
  border-radius: var(--raio-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0 12px;
}
.burger span {
  height: 2px;
  width: 100%;
  background: var(--texto);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.menu-overlay.open {
  transform: translateX(0);
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-overlay a {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--borda);
  color: var(--texto);
}
.menu-overlay a:last-of-type {
  border-bottom: none;
}
.menu-overlay .btn {
  margin-top: 28px;
  align-self: stretch;
  font-family: var(--fonte-corpo);
  font-size: 1.05rem;
  border-bottom: none;
  padding: 18px 28px;
}
.menu-overlay .btn-primary {
  color: #fdfbf6;
}

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -25%;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    var(--primaria-suave),
    transparent 68%
  );
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--borda);
  border-radius: var(--raio-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primaria);
  box-shadow: var(--sombra-suave);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acento);
  box-shadow: 0 0 0 4px rgba(193, 122, 84, 0.18);
}

.hero-title {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  font-size: clamp(2.5rem, 9vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 22px 0 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--primaria);
}

.hero-desc {
  color: var(--texto-suave);
  font-size: 1.12rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--borda);
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texto);
}
.hero-trust .item svg {
  width: 20px;
  height: 20px;
  color: var(--primaria);
}

/* hero media */
.hero-media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}
.hero-media .frame {
  position: relative;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-forte);
  border: 6px solid var(--surface);
  aspect-ratio: 4 / 5;
}
.hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 1.5px solid var(--primaria);
  border-radius: var(--raio-lg);
  z-index: -1;
  opacity: 0.35;
}

.hero-card {
  position: absolute;
  left: -6px;
  bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  box-shadow: var(--sombra-media);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primaria-suave);
  color: var(--primaria);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-card .ico svg {
  width: 22px;
  height: 22px;
}
.hero-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}
.hero-card span {
  font-size: 0.78rem;
  color: var(--texto-suave);
}

/* ------------------------------------------------------------------ marquee */

.marquee {
  background: var(--primaria);
  color: #f4efe6;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.35rem;
  white-space: nowrap;
  opacity: 0.95;
}
.marquee-item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acento);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* -------------------------------------------------------------------- sobre */

.sobre .container {
  display: grid;
  gap: 46px;
  align-items: center;
}
.sobre-media {
  position: relative;
  max-width: 440px;
  justify-self: center;
  width: 100%;
}
.sobre-media img {
  width: 100%;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-forte);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.sobre-media .reg-badge {
  position: absolute;
  right: -10px;
  top: 26px;
  background: var(--acento);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--raio-pill);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--sombra-media);
  letter-spacing: 0.04em;
}
.sobre-text p {
  color: var(--texto-suave);
  margin-top: 16px;
}
.sobre-text p:first-of-type {
  margin-top: 26px;
}

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--raio-pill);
  background: var(--primaria-suave);
  color: var(--primaria);
  font-size: 0.88rem;
  font-weight: 600;
}
.tag svg {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------------- grade de cards */

.grid {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
  border-color: transparent;
}
.card .ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--primaria-suave);
  color: var(--primaria);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.card:hover .ico {
  background: var(--primaria);
  color: #fdfbf6;
}
.card .ico svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--texto-suave);
  font-size: 0.98rem;
}

/* beneficios com fundo alternado */
.beneficios {
  background: var(--surface);
}
.beneficios .card {
  background: var(--bg);
}
.beneficios .card:hover {
  background: var(--surface);
}

/* ------------------------------------------------------------ especialidades */

.espec-grid {
  display: grid;
  gap: 12px;
}
.espec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  font-weight: 500;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.espec-item:hover {
  transform: translateX(6px);
  border-color: var(--primaria);
}
.espec-item .chk {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primaria-suave);
  color: var(--primaria);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.espec-item .chk svg {
  width: 17px;
  height: 17px;
}

/* ----------------------------------------------------------------- processo */

.processo {
  background: var(--surface);
}
.proc-grid {
  display: grid;
  gap: 24px;
  counter-reset: passo;
}
.proc-step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  padding: 34px 28px 30px;
  counter-increment: passo;
}
.proc-step .num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--fonte-titulo);
  font-size: 2.6rem;
  color: var(--borda);
  line-height: 1;
}
.proc-step .num::before {
  content: "0" counter(passo);
}
.proc-step .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primaria);
  color: #fdfbf6;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.proc-step .ico svg {
  width: 28px;
  height: 28px;
}
.proc-step h3 {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.proc-step p {
  color: var(--texto-suave);
}

/* -------------------------------------------------------------- quote block */

.quote {
  text-align: center;
}
.quote .container {
  max-width: 900px;
}
.quote .mark {
  font-family: var(--fonte-titulo);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--acento);
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
.quote blockquote {
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--texto);
}
.quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ----------------------------------------------------------------------- cta */

.cta-band {
  padding: 76px 0;
}
.cta-inner {
  position: relative;
  background: var(--primaria);
  color: #f4efe6;
  border-radius: var(--raio-lg);
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--sombra-forte);
}
.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-inner::before {
  width: 320px;
  height: 320px;
  top: -140px;
  left: -100px;
}
.cta-inner::after {
  width: 260px;
  height: 260px;
  bottom: -130px;
  right: -80px;
}
.cta-inner .inner-wrap {
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 16px;
}
.cta-inner p {
  color: rgba(244, 239, 230, 0.82);
  max-width: 52ch;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-inner .btn-primary {
  background: var(--acento);
  color: #fff;
}
.cta-inner .btn-primary:hover {
  background: #b06b46;
}

/* ----------------------------------------------------------------------- faq */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open {
  border-color: var(--primaria);
  box-shadow: var(--sombra-suave);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fonte-corpo);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--texto);
  text-align: left;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primaria-suave);
  color: var(--primaria);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-q .chev svg {
  width: 18px;
  height: 18px;
}
.faq-item.open .chev {
  transform: rotate(180deg);
  background: var(--primaria);
  color: #fdfbf6;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 24px;
  color: var(--texto-suave);
}

/* -------------------------------------------------------------------- footer */

.footer {
  background: var(--texto);
  color: #d8d2c6;
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand strong {
  color: #fbf7ee;
}
.footer .brand span {
  color: #a49c8d;
}
.footer-frase {
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #ece6da;
  max-width: 34ch;
}
.footer-contatos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contatos a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d8d2c6;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-contatos a:hover {
  color: #fff;
}
.footer-contatos a .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
}
.footer-contatos a .ico svg {
  width: 19px;
  height: 19px;
}
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 0.86rem;
  color: #a49c8d;
}
.footer-bottom a {
  color: #ece6da;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------------------------------------------- botao flutuante wpp */

.float-wpp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.float-wpp svg {
  width: 30px;
  height: 30px;
}
.float-wpp:hover {
  transform: scale(1.08);
}

.float-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--texto);
  color: #fbf7ee;
  font-family: var(--fonte-corpo);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: var(--raio-pill);
  box-shadow: var(--sombra-media);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.float-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--texto);
}
.float-wpp:hover .float-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.float-wpp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ------------------------------------------------------------- scroll hint */

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texto-suave);
  z-index: 3;
}
.scroll-hint .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--texto-suave);
  border-radius: 12px;
  position: relative;
}
.scroll-hint .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--texto-suave);
  animation: scrolldot 1.6s ease infinite;
}
@keyframes scrolldot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

/* --------------------------------------------------------------- reveal anim */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}

/* ======================================================= BREAKPOINTS ======= */

@media (min-width: 560px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .espec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 104px 0;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .proc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }
  .hero-media {
    justify-self: end;
  }
  .sobre .container {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .burger {
    display: none;
  }
  .nav-desk {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .float-wpp {
    right: 28px;
    bottom: 28px;
  }
}

/* --------------------------------------------------- reduce motion / a11y */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
