/* --- RESET & VARIAVEIS --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores base */
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;

  /* Destaques (Branco e Azul Odyssey) --005470COR */
  --accent-white: #ffffff;
  --accent-blue: #1d7e9e;


  /* Tipografia */
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;

  /* Espaçamentos e Animações */
  --radius: 12px;
  --transition: 0.25s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Fundo sutil para dar textura sem pesar o navegador */
  background-image: radial-gradient(circle at top right, #111 0%, var(--bg-dark) 40%);
}

/* Tipografia Base */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

/* --- NAVEGAÇÃO --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.btn-nav {
  background: var(--accent-white);
  color: var(--bg-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform var(--transition);
}

.btn-nav:hover {
  transform: scale(1.05);
}

/* Menu Mobile (Escondido por padrão) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
}

/* --- ESTRUTURA GLOBAL --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.01);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-title em {
  font-style: normal;
  color: var(--accent-blue);
}

/* --- GLASS CARDS (Otimizados) --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), border-color var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  /* Substitui o efeito 3D pesado do JS */
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  padding: 120px 2rem 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--accent-blue);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-white);
  color: var(--bg-dark);
  padding: 1rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 2px;
  transition: color var(--transition);
}

.btn-ghost:hover {
  color: var(--text-main);
  border-color: var(--text-main);
}

/* --- ESTATÍSTICAS --- */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
}

.stat-suffix {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  background: var(--border-glass);
}

/* --- VISUAL ORBITA (Estático e Leve) --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 150px;
  height: 150px;
  border-style: dashed;

  animation: spin-ring 40s linear infinite;
}

@keyframes spin-ring {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-ring-2 {
  width: 250px;
  height: 250px;
}

.orbit-ring-3 {
  width: 350px;
  height: 350px;
  border-color: rgba(79, 195, 247, 0.2);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-logo {
  width: 75px;
}

.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.dot-1 {
  transform: translate(-50%, -50%) translateX(75px);
  background: #fff;
  animation: orbit-1 12s linear infinite;
}

.dot-2 {
  background: var(--accent-blue);
  animation: orbit-2 20s linear infinite reverse;
  box-shadow: 0 0 10px var(--accent-blue);
}

.dot-3 {
  background: #fff;
  animation: orbit-3 30s linear infinite;
}

@keyframes orbit-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(75px);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(75px);
  }
}

@keyframes orbit-2 {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(125px);
  }

  100% {
    transform: translate(-50%, -50%) rotate(405deg) translateX(125px);
  }
}

@keyframes orbit-3 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(175px);
  }

  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(175px);
  }
}

/* --- SERVIÇOS & GRIDS --- */
.services-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-features,
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li,
.plan-features li {
  font-size: 0.85rem;
  color: #ddd;
  display: flex;
  gap: 0.5rem;
}

.service-badge-featured,
.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-blue);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.featured {
  border-color: rgba(79, 195, 247, 0.4);
}

/* --- PROCESSOS (STEPS) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
}

.step-number {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-connector {
  display: none;
}

/* Removido para simplificar no mobile/desktop */

/* --- PREÇOS --- */
.plan-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-white);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.plan-features {
  margin-bottom: 2rem;
}

.check {
  color: var(--accent-blue);
}

.disabled {
  opacity: 0.4;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--accent-white);
  color: var(--accent-white);
  transition: background var(--transition);
}

.btn-plan:hover {
  background: var(--bg-card);
}

.btn-plan-featured {
  background: var(--accent-white);
  color: var(--bg-dark);
}

.btn-plan-featured:hover {
  background: #e0e0e0;
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
}

/* Grade decorativa de fundo */
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

/* Brilhos de fundo */
.cta-bg-glow-left {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 126, 158, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bg-glow-right {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 126, 158, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Layout em duas colunas */
.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Coluna esquerda */
.cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.cta-title em {
  font-style: normal;
  color: var(--accent-blue);
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
}

/* Badges de prova social */
.cta-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.cta-proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #ccc;
}

.cta-proof-icon {
  font-size: 1.1rem;
}

/* Coluna direita: Card de ação */
.cta-right {
  display: flex;
  justify-content: center;
}

.cta-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(29, 126, 158, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(29, 126, 158, 0.1);
}

.cta-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 126, 158, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Mini órbita no topo do card */
.cta-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cta-orbit-mini {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(29, 126, 158, 0.5);
  animation: spin-ring-simple 8s linear infinite;
}

@keyframes spin-ring-simple {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-orbit-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-blue);
  top: 50%;
  left: 50%;
  animation: orbit-card-dot 8s linear infinite;
}

@keyframes orbit-card-dot {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(28px);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(28px);
  }
}

.cta-wa-icon {
  color: #25d366;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Badge "Online agora" */
.cta-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.cta-card-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-wa 1.5s infinite;
}

.cta-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-title);
}

.cta-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Botão CTA WhatsApp */
.btn-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.cta-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 1rem;
}

/* Responsivo */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .cta-subtitle {
    margin: 0 auto;
  }

  .cta-proof {
    align-items: center;
  }

  .cta-right {
    width: 100%;
  }
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 100px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col strong {
  color: var(--accent-white);
  font-family: var(--font-title);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* --- ANIMAÇÃO DE ENTRADA (Refinada) --- */
.reveal {
  opacity: 0;
  /* Adiciona um leve efeito de escala em vez de apenas subir */
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Efeito Glow nos Cards ao passar o mouse */
.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}

.glass-card:hover::after {
  box-shadow: 0 0 30px rgba(79, 195, 247, 0.15);
}

/* --- QUEM SOMOS (EQUIPE) --- */
/* --- SEÇÃO SOBRE A ODYSSEY --- */
.about-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text:last-of-type {
  margin-bottom: 3rem;
}

.about-text strong {
  color: var(--accent-white);
  font-weight: 600;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2.5rem;
  text-align: left;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-white);
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1.1rem;
  color: var(--accent-white);
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }

  .hero-visual {
    display: none;
  }

  .hero-subtitle {
    margin: 1rem auto 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  /* Garante que o botão hamburguer fique acima da tela escura */
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  /* Animação do botão Hambúrguer virando um "X" */
  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* O Overlay Tela Cheia Premium */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Ocupa 100% da altura da tela */
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    gap: 3rem;
    /* Espaço elegante entre os links */

    /* Configuração da animação de surgimento suave */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Quando o JS adiciona a classe "active", ele aparece suavemente */
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Deixa a fonte maior e mais imponente no celular */
  .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .btn-nav {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .container {
    padding: 0 1.5rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .services-grid,
  .pricing-grid,
  .steps {
    gap: 1rem;
  }
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-wa 2s infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Esconde no mobile se preferir um botão fixo no rodapé, ou apenas ajusta a posição */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}