/* ═══════════════════════════════════════════
   HotSitePro — style.css
   ═══════════════════════════════════════════ */

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

:root {
  --primary:    #6C63FF;
  --primary-dk: #4F46E5;
  --accent:     #FF6B6B;
  --teal:       #00BFA6;
  --dark:       #0f0f23;
  --dark-2:     #1a1a35;
  --text:       #1e1e3a;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --bg:         #f8f9ff;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(108,99,255,.12);
  --transition: .25s ease;
  --font:       'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,99,255,.35); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover  { background: var(--primary); color: #fff; }
.btn-ghost    { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-ghost:hover    { background: rgba(255,255,255,.22); }
.btn-lg  { padding: 14px 30px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
button.btn { font-family: var(--font); }

/* ── Nav ─────────────────────────────────────── */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(15,15,35,.92);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}
.nav-logo strong { color: var(--primary); }
.logo-icon { font-size: 1.1rem; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 8px 20px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1250 60%, #0f0f23 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: .07;
  filter: blur(60px);
}
.c1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.c2 { width: 300px; height: 300px; bottom: 100px; left: -80px; opacity: .05; }
.c3 { width: 200px; height: 200px; top: 40%; left: 40%; background: var(--accent); opacity: .06; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,.15);
  border: 1px solid rgba(108,99,255,.3);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.trust-item i { color: var(--teal); }

/* Mockup */
.hero-visual { position: relative; }
.mockup-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}
.mockup-bar {
  background: #1e1e2e;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-url {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .7rem;
  margin-left: 10px;
}
.mockup-body { padding: 20px; }
.mockup-hero-block {
  background: linear-gradient(135deg, var(--primary) 0%, #3B37CE 100%);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}
.mh-badge {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.mh-title { height: 14px; background: rgba(255,255,255,.7); border-radius: 6px; width: 70%; margin-bottom: 8px; }
.mh-sub   { height: 10px; background: rgba(255,255,255,.4); border-radius: 6px; width: 90%; margin-bottom: 14px; }
.mh-btn   { height: 28px; background: rgba(255,255,255,.9); border-radius: 6px; width: 40%; }
.mockup-stats {
  display: flex;
  gap: 12px;
}
.stat {
  flex: 1;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.stat-num { display: block; font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .7rem; color: var(--text-muted); }

/* Floating tags */
.float-tag {
  position: absolute;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  animation: float 3s ease-in-out infinite;
}
.tag1 { bottom: 40px; left: -20px; color: var(--teal); animation-delay: 0s; }
.tag2 { top: 20px; right: -10px; color: var(--accent); animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Social Proof ──────────────────────────────── */
.social-proof {
  background: var(--bg);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sp-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sp-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-logos span {
  font-size: .95rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .03em;
}

/* ── Section Base ─────────────────────────────── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(108,99,255,.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Serviços ─────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}
.card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(108,99,255,.2);
}
.card-icon {
  width: 48px; height: 48px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card-item p  { color: var(--text-muted); font-size: .88rem; margin-bottom: 16px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.card-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text-muted);
}
.card-list i { color: var(--teal); font-size: .8rem; }

/* ── Como Funciona ────────────────────────────── */
.como-funciona { background: var(--dark); }
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,.55); }
.section-header.light .section-label { color: #a5b4fc; background: rgba(108,99,255,.15); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: rgba(255,255,255,.5); font-size: .82rem; }
.step-arrow {
  color: rgba(255,255,255,.2);
  font-size: 1.4rem;
  padding: 0 4px;
  margin-top: 16px;
  align-self: flex-start;
}

/* ── Planos ───────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, #faf9ff 0%, #f0eeff 100%);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1;
}
.price-from { display: block; font-size: .75rem; font-weight: 500; color: var(--text-muted); margin-bottom: 4px; }
.pricing-desc { color: var(--text-muted); font-size: .88rem; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem;
}
.pricing-features li i { font-size: .75rem; }
.pricing-features li:not(.muted) i { color: var(--primary); }
.pricing-features li.muted { color: var(--text-muted); }
.pricing-features li.muted i { color: #d1d5db; }

/* ── Depoimentos ──────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.stars { color: #f7b731; font-size: 1rem; margin-bottom: 12px; }
.testimonial p { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), #a78bfa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .78rem; color: var(--text-muted); }

/* ── Proposta Form ────────────────────────────── */
.proposta { background: var(--bg); }
.proposta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.proposta-text h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin: 14px 0 16px;
}
.proposta-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proposta-text p { color: var(--text-muted); margin-bottom: 28px; font-size: .95rem; }
.proposta-trust { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.proposta-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text-muted);
}
.proposta-trust i { color: var(--primary); }

/* Form */
.proposta-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.field-error { font-size: .78rem; color: var(--accent); margin-top: 4px; min-height: 16px; }
.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-feedback.success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.form-feedback.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: .6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.footer-brand .nav-logo {
  color: #fff;
  font-size: 1.3rem;
  display: inline-flex;
  margin-bottom: 14px;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-links li { list-style: none; }
.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}
.footer-contact a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  margin: 0;
}
.footer-bottom p strong { color: rgba(255,255,255,.7); font-weight: 700; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.footer-legal a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: #fff; }
.footer-legal span { color: rgba(255,255,255,.25); }

/* ── Spin animation ───────────────────────────── */
.spin { animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust  { justify-content: center; }
  .steps { gap: 16px; }
  .step-arrow { display: none; }
  .proposta-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links  { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(15,15,35,.96); padding: 20px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta    { display: none; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .pricing-card.featured { transform: scale(1); }
}

/* ═══════════════════════════════════════════
   WHATSAPP CONTACT
   ═══════════════════════════════════════════ */
.proposta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  width: 100%;
  max-width: 480px;
}
.contact-card .contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}
.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
  color: #fff;
}
.btn-whatsapp i { font-size: 22px; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  z-index: 999;
  text-decoration: none;
  animation: waPulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

@keyframes waPulse {
  0%   { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ═══════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════ */
.depoimentos {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}
.depoimentos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.dep-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border-right: 1px solid var(--border);
}
.dep-stat:last-child { border-right: none; }
.dep-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.dep-stat strong span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}
.dep-stat > span {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.dep-stat .stars {
  color: #F7B731;
  font-size: .85rem;
  letter-spacing: 1px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.depoimento-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-color: transparent;
  color: #fff;
}
.depoimento-card.featured p,
.depoimento-card.featured .dep-author strong { color: #fff; }
.depoimento-card.featured .dep-author span { color: rgba(255,255,255,.75); }
.depoimento-card.featured .dep-quote { color: rgba(255,255,255,.25); }
.depoimento-card.featured .dep-stars { color: #FFD93D; }

.dep-quote {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(108,99,255,.12);
  pointer-events: none;
}
.dep-stars {
  display: flex;
  gap: 2px;
  color: #F7B731;
  font-size: .95rem;
}
.depoimento-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  flex-grow: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.depoimento-card.featured .dep-author {
  border-top-color: rgba(255,255,255,.15);
}
.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.dep-author strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
}
.dep-author span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .depoimentos-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dep-stat:nth-child(2) { border-right: none; }
  .dep-stat { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .dep-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 8px; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .depoimentos-stats { grid-template-columns: 1fr; }
  .dep-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .dep-stat:last-child { border-bottom: none; }
  .depoimentos-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   DEPOIMENTO SOLO (destaque)
   ═══════════════════════════════════════════ */
.depoimento-solo {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px 44px;
  box-shadow: var(--shadow);
  text-align: center;
}
.depoimento-solo .dep-quote-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(108, 99, 255, .35);
}
.depoimento-solo .dep-stars {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  color: #F7B731;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.depoimento-solo blockquote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
}
.depoimento-solo blockquote p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 14px;
}
.depoimento-solo blockquote p:last-child { margin-bottom: 0; }
.depoimento-solo .dep-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.depoimento-solo .dep-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.depoimento-solo .dep-author strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}
.depoimento-solo .dep-author span {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .depoimento-solo { padding: 48px 24px 32px; }
  .depoimento-solo blockquote p { font-size: 1rem; }
}

/* Divisor "ou" no formulário */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--text-muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border)
}
