/* ============================================================
   LANDING PAGE STYLES — TarguetLog SaaS
   Tema: Preto, Amarelo Cyber & Azul Escuro Profundo
   ============================================================ */

:root {
  --lp-bg: #060911;               /* Preto absoluto com toque de azul */
  --lp-surface: #0e1626;          /* Azul escuro profundo */
  --lp-surface-hover: #172238;    /* Azul escuro elevado */
  --lp-card: #121a2c;             /* Card em azul escuro */
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-border-bright: rgba(255, 208, 0, 0.45);
  
  --lp-primary: #ffd000;          /* Amarelo Cyber / Ouro Vibrante */
  --lp-primary-hover: #ffe033;
  --lp-primary-glow: rgba(255, 208, 0, 0.3);
  
  --lp-accent: #3b82f6;           /* Azul Elétrico / Royal Blue */
  --lp-accent-glow: rgba(59, 130, 246, 0.25);
  
  --lp-text: #f8fafc;
  --lp-text-muted: #94a3b8;
  --lp-text-dim: #64748b;

  --lp-radius-sm: 8px;
  --lp-radius: 16px;
  --lp-radius-lg: 24px;
  
  --lp-font-title: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --lp-font-body: 'Inter', system-ui, sans-serif;
  --lp-font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body.landing-page {
  background-color: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography & Utility ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--lp-font-title);
  color: var(--lp-text);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--lp-primary) 55%, #ffe680 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #ffffff 0%, var(--lp-accent) 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation Bar ---------- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  height: 76px;
  display: flex;
  align-items: center;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lp-font-title);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-right: 24px;
}

.lp-logo-badge {
  background: var(--lp-primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 4px;
}

.lp-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--lp-primary), #e6b800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 14px var(--lp-primary-glow);
  flex-shrink: 0;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
}

.lp-nav-links a {
  color: var(--lp-text-muted);
  font-weight: 500;
  font-size: 14.5px;
  white-space: nowrap;
}

.lp-nav-links a:hover {
  color: #ffffff;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-primary), #e6b800);
  color: #000000;
  box-shadow: 0 4px 20px var(--lp-primary-glow);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffe033, var(--lp-primary));
  box-shadow: 0 6px 28px rgba(255, 208, 0, 0.45);
}

.lp-btn-secondary {
  background: rgba(37, 99, 235, 0.15);
  color: var(--lp-text);
  border-color: rgba(59, 130, 246, 0.3);
}

.lp-btn-secondary:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
  color: #fff;
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text-muted);
}

.lp-btn-outline:hover {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.05);
}

.lp-btn-lg {
  padding: 15px 32px;
  font-size: 16px;
  border-radius: 100px;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.18) 0%, rgba(37, 99, 235, 0.15) 45%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.3);
  border-radius: 100px;
  color: var(--lp-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}


.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--lp-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.8);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.8); }
  70% { box-shadow: 0 0 0 8px rgba(255, 208, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0); }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--lp-text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--lp-border);
}

.hero-stat-item .num {
  font-family: var(--lp-font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--lp-primary);
}

.hero-stat-item .label {
  font-size: 13px;
  color: var(--lp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Hero Interactive Mockup ---------- */
.hero-mockup {
  position: relative;
}

.hero-card-preview {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  backdrop-filter: blur(10px);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lp-border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25334c;
}

.mockup-dots span:nth-child(1) { background: #ef5b5b; }
.mockup-dots span:nth-child(2) { background: #ffd000; }
.mockup-dots span:nth-child(3) { background: #3b82f6; }

.mockup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
}

/* Simulated Map Box inside Mockup */
.simulated-map {
  height: 240px;
  background: #090e1a;
  border-radius: var(--lp-radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  margin-bottom: 20px;
}

.map-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 208, 0, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.map-road-line {
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
  transform: rotate(-15deg);
  box-shadow: 0 0 16px var(--lp-primary);
  animation: move-road 3s infinite linear;
}

@keyframes move-road {
  0% { transform: rotate(-15deg) translateX(-10%); }
  100% { transform: rotate(-15deg) translateX(10%); }
}

.map-pin {
  position: absolute;
  padding: 6px 12px;
  background: rgba(14, 22, 38, 0.95);
  border: 1px solid var(--lp-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.map-pin.motoboy {
  top: 35%;
  left: 55%;
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

.map-pin.pedido {
  top: 60%;
  left: 20%;
  border-color: var(--lp-accent);
  color: #60a5fa;
}

.mockup-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  border-radius: var(--lp-radius-sm);
  border: 1px solid var(--lp-border);
}

.status-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(255, 208, 0, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  font-size: 18px;
}

/* Floating Card Accent */
.floating-card-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(14, 22, 38, 0.95);
  border: 1px solid var(--lp-border-bright);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--lp-radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.floating-card-badge .icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 208, 0, 0.15);
  color: var(--lp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ---------- Services & Features ---------- */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--lp-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--lp-border-bright);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 208, 0, 0.12);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 208, 0, 0.25);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.25);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
  background: rgba(255, 208, 0, 0.12);
  color: var(--lp-primary);
  border-color: rgba(255, 208, 0, 0.25);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14.5px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ---------- How It Works (Tabs Section) ---------- */
.how-it-works-box {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 48px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: var(--lp-primary);
  color: #000000;
  border-color: var(--lp-primary);
  box-shadow: 0 4px 20px var(--lp-primary-glow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  padding: 24px;
}

.step-number {
  font-family: var(--lp-font-title);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 208, 0, 0.2);
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--lp-text-muted);
}

/* ---------- Pricing Section ---------- */
.container-pricing {
  max-width: 1400px !important;
  width: 96%;
  margin: 0 auto;
  padding: 0 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  min-width: 0;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 208, 0, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
  border-color: var(--lp-primary);
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.1) 0%, var(--lp-card) 45%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.pricing-desc {
  font-size: 12.5px;
  color: var(--lp-text-muted);
  line-height: 1.35;
  min-height: 34px;
}

.pricing-price {
  font-family: var(--lp-font-title);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
  white-space: nowrap;
}

.pricing-price span {
  font-size: 13.5px;
  color: var(--lp-text-dim);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text-muted);
  margin-bottom: 14px;
}

.pricing-features li i {
  color: var(--lp-primary);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #64748b;
  opacity: 0.6;
}

.pricing-features li.disabled i {
  color: #475569;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0e1626 0%, #17243b 50%, #080c16 100%);
  border: 1px solid var(--lp-border-bright);
  border-radius: var(--lp-radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--lp-text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ---------- Modal Login ---------- */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 7, 13, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lp-modal-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  width: 100%;
  max-width: 420px;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.lp-modal-overlay.active .lp-modal-card {
  transform: scale(1);
}

.lp-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--lp-text-muted);
  font-size: 24px;
  cursor: pointer;
}

.lp-modal-close:hover {
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--lp-text-muted);
}

.modal-form .form-group {
  margin-bottom: 18px;
}

.modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
  margin-bottom: 6px;
}

.modal-form input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease;
}

.modal-form input:focus {
  border-color: var(--lp-primary);
}

.modal-demo-info {
  margin-top: 20px;
  padding: 12px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px dashed rgba(255, 208, 0, 0.35);
  border-radius: var(--lp-radius-sm);
  font-size: 12.5px;
  color: var(--lp-primary);
  text-align: center;
}

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 60px 0 30px;
  background: #04060b;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--lp-text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--lp-text-muted);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--lp-border);
  color: var(--lp-text-dim);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .features-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-nav-links {
    display: none;
  }
}

/* ---------- WhatsApp Floating Button & Contact Modal ---------- */
.wa-float-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-float-tooltip {
  background: rgba(14, 22, 38, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.wa-float-tooltip .wa-online-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
}

.wa-float-btn-container {
  position: relative;
  width: 60px;
  height: 60px;
}

.wa-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  z-index: 2;
}

.wa-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

.wa-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.6;
  z-index: 1;
  animation: waPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.modal-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.2s ease;
}

.modal-form textarea:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.lp-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.lp-btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2ee672, #159e8e);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

@media (max-width: 600px) {
  .wa-float-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .wa-float-tooltip {
    display: none;
  }
}

