/* =====================================================
   Vista dos Colibris — Landing Page  v2
   Roseno Imóveis · Lançamento Julho 2026
   ===================================================== */

:root {
  --verde:        #1E8A4C;
  --verde-escuro: #0A1A0F;
  --verde-vivo:   #2EAA65;
  --verde-medio:  #166B3B;
  --branco:       #FFFFFF;
  --areia:        #F7F4EF;
  --borda:        #E4E0D8;
  --texto:        #1A1A1A;
  --texto-claro:  #5A5A5A;
  --sombra:       rgba(30,138,76,.2);
  --alerta:       #C8A03C;
  --alerta-bg:    rgba(200,160,60,.12);
  --font:         'Montserrat', sans-serif;
  --r:            8px;
  --r-lg:         16px;
  --ease:         0.22s ease;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ── Utilidades ─────────────────────────────────────── */
.text-c { text-align: center; }
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 16px;
  display: block;
}
.eyebrow--light { color: var(--verde-vivo); }
.h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--verde-escuro);
  margin-bottom: 20px;
}
.h2--light { color: var(--branco); }
.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--texto-claro);
  margin-bottom: 32px;
}

/* ── Badge de urgência ──────────────────────────────── */
.cinco-dias {
  background: var(--alerta-bg);
  color: var(--alerta);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
  white-space: nowrap;
}

/* ── Botões ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 18px 34px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

.btn--primary {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left 0.55s ease;
}
.btn--primary:hover {
  background: var(--verde-vivo);
  border-color: var(--verde-vivo);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--sombra);
}
.btn--primary:hover::after { left: 150%; }

.btn--outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.btn--outline:hover { background: var(--verde); color: var(--branco); }

.btn--outline-dark {
  background: transparent;
  color: var(--verde-escuro);
  border-color: var(--verde-escuro);
}
.btn--outline-dark:hover { background: var(--verde-escuro); color: var(--branco); }

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--branco);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

.btn--submit {
  width: 100%;
  background: var(--branco);
  color: var(--verde);
  border-color: var(--branco);
  font-size: 15px;
  font-weight: 800;
}
.btn--submit::after {
  background: linear-gradient(90deg, transparent, rgba(30,138,76,.12), transparent);
}
.btn--submit:hover { background: var(--areia); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.btn--submit.success { background: #2EAA65; color: var(--branco); border-color: #2EAA65; }

/* ── Logo ───────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--verde);
}
.logo--light  { color: var(--branco); }
.logo--muted  { color: rgba(255,255,255,.3); }
.logo--sm .logo__icon    { width: 30px; height: 26px; }
.logo--sm .logo__sub     { font-size: 6px; letter-spacing: 1.5px; }
.logo--sm .logo__vista   { font-size: 12px; }
.logo--sm .logo__vista em{ font-size: 10px; }
.logo--sm .logo__product { font-size: 21px; }

.logo__mark {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.logo__icon { width: 44px; height: 38px; }
.logo__sub {
  font-size: 7px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: .65; white-space: nowrap;
}
.logo__name { display: flex; flex-direction: column; line-height: .85; }
.logo__vista {
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.logo__vista em { font-style: normal; font-weight: 500; font-size: 12px; }
.logo__product {
  font-size: 28px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px; line-height: 1;
}

/* =====================================================
   STICKY NAV
   ===================================================== */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,20,10,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(46,170,101,.15);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-nav.show { transform: translateY(0); }
.sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* =====================================================
   BLOCO 1 — HERO
   ===================================================== */
.hero {
  min-height: 100svh;
  background: var(--verde-escuro);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 88px;
  position: relative;
  overflow: hidden;
}

/* Orbs de luz no bg */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(30,138,76,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(30,138,76,.10) 0%, transparent 65%);
  pointer-events: none;
}

/* Grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .45;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.hero__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Hero entrada animada */
.hero__logo-wrap {
  opacity: 0;
  animation: heroFadeUp .7s var(--ease-out) .1s forwards;
}
.hero__body {
  margin-top: 56px;
}
.hero__badge {
  opacity: 0;
  animation: heroFadeUp .7s var(--ease-out) .25s forwards;
}
.hero__h1 {
  opacity: 0;
  animation: heroFadeUp .75s var(--ease-out) .38s forwards;
}
.hero__sub {
  opacity: 0;
  animation: heroFadeUp .7s var(--ease-out) .52s forwards;
}
.hero__cta-row {
  opacity: 0;
  animation: heroFadeUp .7s var(--ease-out) .64s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,170,101,.1);
  border: 1px solid rgba(46,170,101,.3);
  color: var(--verde-vivo);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde-vivo);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}

.hero__h1 {
  font-size: clamp(62px, 12vw, 108px);
  font-weight: 900;
  color: var(--branco);
  line-height: .9;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
.hero__h1 em {
  font-style: normal;
  position: relative;
  color: var(--verde-vivo);
}
.hero__h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--verde-vivo);
  border-radius: 2px;
  opacity: .6;
}

.hero__sub {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__cta-row { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
@media (max-width: 479px) { .hero__cta { width: 100%; } }
@media (min-width: 480px) { .hero__cta-row { flex-direction: row; align-items: center; } }
.hero__micro {
  font-size: 12px;
  color: rgba(255,255,255,.32);
  letter-spacing: .3px;
  max-width: 100%;
}
@media (min-width: 640px) {
  .hero__micro { white-space: nowrap; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.25);
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   BLOCO 2 — PROVA SOCIAL
   ===================================================== */
.prova {
  background: var(--areia);
  padding: 56px 0;
  border-bottom: 1px solid var(--borda);
}
.prova__grid {
  display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
@media (min-width: 900px) { .prova__grid { flex-wrap: nowrap; } }

.prova__stat {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0; min-width: 140px;
}
.stat__n {
  font-size: 60px; font-weight: 900;
  color: var(--verde); line-height: 1;
}
.stat__n::after { content: '+'; }
.stat__l {
  font-size: 10px; font-weight: 700;
  color: #aaa; text-transform: uppercase;
  letter-spacing: 2px; margin-top: 4px;
}

.prova__sep {
  width: 1px; height: 68px;
  background: var(--borda); flex-shrink: 0; display: none;
}
@media (min-width: 900px) { .prova__sep { display: block; } }

.prova__text { flex: 1; min-width: 220px; }
.prova__text p { font-size: 15px; line-height: 1.75; margin-bottom: 8px; }
.prova__destaque { font-weight: 800; color: var(--verde); font-size: 15px; }

/* =====================================================
   BLOCO 3 — LOCALIZAÇÃO
   ===================================================== */
.local { padding: 104px 0; }

.local__layout {
  display: grid;
  gap: 52px;
  align-items: center;
}
@media (min-width: 860px) {
  .local__layout {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

/* Lado do vídeo */
.local__film {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.local__video { width: 100%; height: 100%; object-fit: cover; display: block; }

.local__pin {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(10,26,15,.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--branco);
  padding: 10px 16px; border-radius: var(--r);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* Lado do conteúdo */
.local__panel { /* wrapper flex para centralizar verticalmente */ }
.local__content { width: 100%; }

.prox-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.prox-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; }
.prox-icon {
  width: 40px; height: 40px;
  background: rgba(30,138,76,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.local__addr {
  font-size: 13px; color: #bbb;
  border-top: 1px solid var(--borda);
  padding-top: 18px; margin-top: 10px; line-height: 1.6;
}

/* =====================================================
   BLOCO 4 — TIPOLOGIAS
   ===================================================== */
.tipos { padding: 104px 0; background: var(--areia); }
.tipos__intro { max-width: 460px; margin: 0 auto; }
.tipos__grid {
  display: grid; gap: 20px; margin-top: 52px;
}
@media (min-width: 560px)  { .tipos__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tipos__grid { grid-template-columns: repeat(4, 1fr); } }

.tipo-card {
  background: var(--branco);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  border: 2px solid transparent;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: visible;
}
.tipo-card:hover {
  border-color: var(--verde);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px var(--sombra);
}
.tipo-card--featured { border-color: var(--verde); }
.tipo-card__badge {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--verde); color: var(--branco);
  font-size: 10px; font-weight: 800; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.tipo-card__badge--dark { background: var(--verde-escuro); }
.tipo-card__tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--verde); }
.tipo-card__icon { color: var(--verde); margin-bottom: 4px; }
.tipo-card__title { font-size: 17px; font-weight: 800; color: var(--verde-escuro); line-height: 1.3; flex: 1; }
.tipo-card__body { font-size: 13px; line-height: 1.7; color: var(--texto-claro); }
.tipo-card__cta {
  color: var(--verde); font-size: 13px; font-weight: 700;
  border-top: 1px solid var(--borda);
  padding-top: 14px; margin-top: 6px; text-align: left;
  transition: gap .2s ease;
  display: flex; align-items: center; justify-content: space-between;
}
.tipo-card__cta::after { content: '→'; transition: transform .2s ease; }
.tipo-card:hover .tipo-card__cta::after { transform: translateX(4px); }

/* =====================================================
   BLOCO 5 — LAZER (grid editorial assimétrico)
   ===================================================== */
.lazer { background: var(--verde-escuro); }
.lazer__header { padding: 96px 0 52px; }

/* Mobile: 2 cols */
.lazer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
/* Desktop: piscina grande à esquerda (3 rows), 3 à direita */
@media (min-width: 768px) {
  .lazer__grid {
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: repeat(3, 280px);
    gap: 3px;
  }
  .lazer-card:first-child { grid-row: span 3; }
}

.lazer-card { position: relative; overflow: hidden; }
.lazer-card__img {
  height: 100%;
  overflow: hidden;
}

/* Mobile fallback aspect-ratio */
@media (max-width: 767px) {
  .lazer-card__img { aspect-ratio: 4/5; height: auto; }
}

.lazer-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.lazer-card:hover .lazer-card__img img { transform: scale(1.05); }

.lazer-card__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 64px 20px 20px;
  background: linear-gradient(to top, rgba(10,26,15,.96) 0%, transparent 100%);
  color: var(--branco);
  display: flex; flex-direction: column; gap: 5px;
}
.lazer-card__caption strong { font-size: 14px; font-weight: 800; }
.lazer-card__caption span { font-size: 12px; opacity: .68; line-height: 1.4; }

.lazer__bottom {
  display: flex; flex-direction: column;
  align-items: center; gap: 22px;
  padding: 64px 24px;
}
.lazer__extra { font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: 1px; }

/* =====================================================
   BLOCO 6 — FINANCIAMENTO
   ===================================================== */
.financ { padding: 104px 0; }
.financ__grid {
  display: grid; gap: 60px; align-items: start;
}
@media (min-width: 768px) { .financ__grid { grid-template-columns: 1fr 1fr; } }

.financ__steps { display: flex; flex-direction: column; gap: 36px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step__n {
  font-size: 40px; font-weight: 900;
  color: rgba(30,138,76,.14);
  line-height: 1; min-width: 52px; flex-shrink: 0;
}
.step__title { font-size: 16px; font-weight: 800; color: var(--verde-escuro); margin-bottom: 6px; }
.step__body { font-size: 14px; line-height: 1.75; color: var(--texto-claro); }

/* =====================================================
   BLOCO 7 — FORMULÁRIO CPA
   ===================================================== */
.cpa {
  background: var(--verde);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
/* Diagonal stripe texture */
.cpa::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 36px,
    rgba(255,255,255,.04) 36px,
    rgba(255,255,255,.04) 37px
  );
  pointer-events: none;
}
/* Light orb top-right */
.cpa::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cpa__grid {
  display: grid; gap: 60px; align-items: start;
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .cpa__grid { grid-template-columns: 1fr 1fr; } }

.cpa__badge {
  display: inline-flex;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--branco);
  padding: 8px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 24px; margin-bottom: 18px;
}
.cpa__h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: var(--branco);
  line-height: 1.06; letter-spacing: -1.5px;
  margin-bottom: 32px;
}
.cpa__benefits { display: flex; flex-direction: column; gap: 14px; }
.cpa__benefits li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.88); font-size: 15px; font-weight: 500;
}

/* Form */
.cpa__form-wrap {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 36px 32px;
}
.cpa__form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.form-group input,
.form-group select {
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.09);
  color: var(--branco);
  font-family: var(--font); font-size: 15px;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.32); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.14);
}
.form-group input.error,
.form-group select.error { border-color: #ffaa88; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.55)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-group select option { background: #0A1A0F; color: var(--branco); }
.form__micro {
  font-size: 12px; color: rgba(255,255,255,.38);
  text-align: center; line-height: 1.6; padding-top: 4px;
}

/* =====================================================
   BLOCO 8 — FOOTER CTA
   ===================================================== */
.footer-cta {
  background: var(--verde-escuro);
  padding: 96px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30,138,76,.12) 0%, transparent 65%);
  pointer-events: none;
}
.footer-cta__label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: 4px; margin-bottom: 14px;
  position: relative;
}
.footer-cta__h2 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 900; color: var(--branco);
  line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 36px; position: relative;
}

/* Footer */
.footer {
  background: #030A04;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__grid {
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: auto 1fr auto; } }
.footer__info p { font-size: 13px; color: rgba(255,255,255,.25); line-height: 2; }
.footer__legal { font-size: 11px; color: rgba(255,255,255,.15); line-height: 1.7; }

/* ── WhatsApp Float ──────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--branco); z-index: 999;
  box-shadow: 0 4px 24px rgba(37,211,102,.42);
  transition: all var(--ease);
}
.wpp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55); }

/* ── Scroll reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }
