:root {
  --bg-color: #f8fafc;
  --bg-secondary: #ffffff;
  --text-main: #151419;
  --text-muted: #475569;
  --accent-teal: #967BCF;
  /* Violet */
  --accent-blue: #E24E48;
  /* Red */
  --accent-violet: #967BCF;
  /* Violet */
  --accent-peach: #F6A970;
  /* Peach */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(21, 20, 25, 0.08);
  /* Updated base color */
  --glass-hover: rgba(255, 255, 255, 0.95);
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #18161C;
}

body {
  font-family: var(--ff-body);
  background-color: #18161C;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

main {
  background-color: var(--bg-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Typography base */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Utilities */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.text-center {
  text-align: center;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.max-w-lg {
  max-width: 800px;
  margin-inline: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* Grid Split for Image Sections */
.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

/* Noise Texture (lighter for light mode) */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.5rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--text-main);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
  background: #000;
}

.btn-secondary {
  background: #fff;
  border-color: var(--glass-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--glass-border);
  color: var(--text-main);
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--text-main);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--accent-violet);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(109, 40, 217, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
}

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

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

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

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 1.25rem;
  left: 100px;
  right: 100px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-120%);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.sticky-header.is-sticky {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-sticky {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 80px;
}

.logo-sticky .logo-img {
  height: 60px;
  width: auto;
  display: block;
}

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

.nav-links-sticky a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links-sticky a:hover {
  color: var(--accent-red);
}

.sticky-header-cta {
  font-size: 0.9rem;
  padding: 0.7rem 1.8rem;
}

/* Parallax Background Global Layering */
.parallax-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #f8fafc;
}

.parallax-layer {
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-blue), transparent 60%);
  top: -150px;
  right: -200px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-teal), transparent 60%);
  top: 40%;
  left: -250px;
  opacity: 0.15;
}

.particle-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: radial-gradient(var(--glass-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Hero Ref Section */
.hero-ref {
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  /* White background under the card */
}

.hero-container-wide {
  width: 100%;
  padding: 0;
  max-width: 100%;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.logo-inner .logo-img {
  /* Ensure logo handles its size */
  height: 76px;
  width: auto;
}

.nav-right-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-links-inner a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links-inner a:hover {
  color: var(--accent-red);
}

.hero-ref-card {
  background-color: #faf6f5;
  background-image:
    radial-gradient(circle at 95% -10%, #ff8c8f 0%, transparent 50%),
    radial-gradient(circle at 100% 110%, #967BCF 0%, transparent 65%),
    radial-gradient(circle at 60% 60%, rgba(246, 169, 112, 0.95) 0%, transparent 70%),
    radial-gradient(circle at 0% 0%, #ffffff 0%, transparent 100%);
  border-radius: 2.5rem;
  padding: 2rem 4rem 4rem;
  width: 100%;
  min-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-ref-top {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.ref-title-box {
  flex: 1;
}

.ref-badge {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.ref-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-main);
  margin-top: 1.5rem;
  font-weight: 700;
}

.ref-desc-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #151419;
  line-height: 1.6;
}

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

.dark-btn {
  background: var(--text-main);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s;
}

.dark-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.white-btn {
  background: #ffffff;
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.75rem 2.25rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.underline-link {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: underline;
  background: transparent;
  padding: 0;
  border: none;
  font-size: 1rem;
  transition: all 0.3s;
}

.underline-link:hover {
  color: var(--accent-red);
}

.hero-ref-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.ref-hero-img {
  width: 60%;
  height: 350px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  filter: grayscale(100%) contrast(1.05);
}

.ref-stats-float {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.ref-avatars {
  display: flex;
  margin-bottom: 0.5rem;
}

.fake-avatar,
.fake-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  margin-left: -10px;
  background: var(--accent-violet);
}

.fake-count {
  background: var(--text-main);
  display: flex;
}

.ref-stats-float p {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  line-height: 1.2;
}

/* Magic Numbers Section */
.magic-numbers {
  padding: 0 0 4rem 0;
  margin-top: -4rem;
  /* overlaps into hero slightly */
  position: relative;
  z-index: 20;
}

.magic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.magic-item {
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.03);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.magic-item:hover {
  transform: translateY(-10px);
}

.magic-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
}

.magic-item h3 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.magic-item p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

/* Channel Strip */
.channel-strip {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.channel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.channel-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin: 0;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Sections Global */
section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.section-header.mgb {
  margin-bottom: 7rem;
}


/* Glow Blobs */
.glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-teal), transparent 60%);
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.glow-right {
  right: -200px;
  top: 10%;
  background: radial-gradient(circle, var(--accent-blue), transparent 60%);
}

/* Como Funciona */
.como-funciona {
  padding: 10rem 0 8rem;
}

.como-funciona .section-header {
  margin-bottom: 8rem;
}

.steps-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.step-card {
  position: relative;
  padding: 3.5rem 2.5rem;
  background:
    radial-gradient(circle at 90% -10%, rgba(255, 140, 142, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 110% 110%, rgba(150, 123, 207, 0.5) 0%, transparent 70%),
    radial-gradient(circle at 5% 50%, rgba(246, 169, 112, 0.3) 0%, transparent 60%),
    #13111A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  will-change: transform;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-card p {
  flex-grow: 1;
}

.step-ghost {
  position: absolute;
  top: -20px;
  right: 10px;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.step-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  color: #ffffff;
}

.step-card p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #cbd5e1;
}

/* Recursos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border-radius: 1.5rem;
  transition: all 0.4s ease;
  will-change: transform;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card:hover {
  border-color: rgba(15, 23, 42, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.features-actions {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

/* Especialidades Marquee */
.especialidades {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.especialidades h2 span {
  color: var(--accent-violet);
}

.marquee-wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.pill-tag {
  padding: 1rem 2.5rem;
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

/* Planos */
.planos {
  position: relative;
  overflow: hidden;
}

.floor-grid {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border-radius: 2rem;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  will-change: transform;
}

.pricing-card.popular {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-teal);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.1);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-header .price {
  font-size: 1.125rem;
  color: var(--text-main);
  margin: 1rem 0 2rem;
}

.pricing-header .price span {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--ff-display);
  line-height: 1;
}

ul.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

ul.pricing-features li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

ul.pricing-features li i {
  color: var(--accent-teal);
  margin-top: 0.25rem;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(inherit) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Depoimentos */
.depoimentos {
  position: relative;
}

.testimonial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(109, 40, 217, 0.08), transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimo-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 1rem 0;
}

.slider-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.testimo-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin: 0 auto;
  will-change: transform;
}

.testimo-card .stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  display: flex;
  gap: 0.2rem;
}

.testimo-card .quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  font-family: var(--ff-display);
}

.author-info strong {
  display: block;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Final */
.cta-section {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  background: #fff;
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1), transparent 60%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.cta-content-wrap {
  z-index: 2;
  position: relative;
}

.cta-headline h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.cta-desc {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* ===========================
   CTA Contact Section
   =========================== */
.cta-contact {
  padding: 4rem 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.cta-contact-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.cta-contact-left {
  flex: 1;
  background-color: #faf6f5;
  background-image:
    radial-gradient(circle at 95% 5%, #ff8c8f 0%, transparent 60%),
    radial-gradient(circle at 5% 95%, #967BCF 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(246, 169, 112, 0.95) 0%, transparent 80%),
    radial-gradient(circle at 0% 0%, #ffffff 0%, transparent 100%);
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
}

.cta-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  width: fit-content;
  backdrop-filter: blur(6px);
}

.cta-contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  margin: 0;
}

.cta-contact-desc {
  font-size: 1.15rem;
  color: rgba(21, 20, 25, 0.65);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.cta-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-btn-primary {
  display: inline-block;
  background: var(--text-main);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn-primary:hover {
  background: #2d2a35;
  transform: translateY(-2px);
}

.cta-btn-secondary {
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.cta-btn-secondary:hover {
  opacity: 0.6;
}

/* Remove Right side doctor block styles as it was removed */

/* Footer Refactored */
.footer-ref {
  background-color: #18161C;
  color: #ffffff;
  padding: 6rem 0 2rem;
  margin: 0;
  margin-top: -1px;
  /* prevent microscopic subpixel gap */
  position: relative;
  z-index: 10;
  width: 100%;
}

.footer-container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

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

.footer-col-large {
  flex: 1.5;
  min-width: 250px;
}

.footer-slogan {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.25rem;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--accent-peach);
}

.footer-label {
  font-size: 0.85rem;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
}

.footer-text,
.footer-links a,
.footer-legal a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent-peach);
}

.footer-contact-info {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  display: block;
}

.footer-contact-info:hover {
  color: var(--accent-peach);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Reveal Animations & Interactivity */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .cta-contact {
    padding: 4rem 60px;
  }
}

@media (max-width: 1024px) {
  .grid-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
  }

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

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-links-inner,
  .nav-links-sticky,
  .navbar-inner .btn {
    display: none;
  }

  .hero-ref {
    padding: 0.75rem;
  }

  .hero-ref-card {
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    min-height: calc(100vh - 1.5rem);
  }

  .hero-ref-top {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-ref-bottom {
    flex-direction: column;
    align-items: center;
  }

  .ref-hero-img {
    width: 100%;
    height: 250px;
  }

  .ref-stats-float {
    margin: 2rem 0 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .magic-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

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

  .floor-grid {
    display: none;
  }

  .prev-btn {
    left: -10px;
  }

  .next-btn {
    right: -10px;
  }

  .cta-contact {
    padding: 2rem 1.5rem;
  }

  .cta-contact-inner {
    border-radius: 1.5rem;
  }

  .sticky-header {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
  }

  .navbar-sticky {
    height: 60px;
    padding: 0 1rem;
    justify-content: space-between;
  }

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

  .logo-sticky .logo-img {
    height: 45px;
  }

  .sticky-header-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================
   Painel OmniChannel Section
   =========================== */
.omni-panel {
  padding: 10rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.browser-frame {
  background: #ffffff;
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12);
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.browser-dots {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.browser-dots span:nth-child(1) {
  background: #ff5f56;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #27c93f;
}

.img-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.panel-img {
  width: 100%;
  height: auto;
  display: block;
}

.omni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.omni-card {
  background: #f8fafc;
  padding: 3rem 2rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.omni-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.omni-icon {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.omni-icon i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.omni-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.omni-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .omni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .omni-grid {
    grid-template-columns: 1fr;
  }

  .omni-panel {
    padding: 6rem 0;
  }

  .browser-frame {
    border-radius: 1.5rem;
    padding: 0.6rem;
  }

  .omni-card {
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
  }
}

/* ===========================
   AI Agent Section
   =========================== */
.ai-agent-section {
  background: #fff;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.ai-agent-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Top row */
.ai-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

.ai-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.ai-top-desc {
  max-width: 480px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  text-align: center;
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 900;
  font-family: var(--ff-display);
  color: rgba(21, 20, 25, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
  user-select: none;
}

.ai-visual-wrap {
  position: relative;
  width: 600px;
  height: 650px;
  margin: 0 auto;
  z-index: 1;
}

.ai-robot-img {
  width: 520px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(150, 123, 207, 0.4));
}

.ai-robot-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(150, 123, 207, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.ai-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1.5px dashed rgba(150, 123, 207, 0.25);
  z-index: 0;
  animation: spin-ring 30s linear infinite;
}

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

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

/* Tool icon pills */
.ai-tool {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.7rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-tool:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.ai-tool img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* WhatsApp icon colors via CSS filter */
.ai-tool--whatsapp img {
  filter: invert(38%) sepia(82%) saturate(700%) hue-rotate(100deg) brightness(95%);
}

.ai-tool--instagram img {
  filter: invert(28%) sepia(80%) saturate(800%) hue-rotate(310deg) brightness(90%);
}

.ai-tool--telegram img {
  filter: invert(44%) sepia(91%) saturate(500%) hue-rotate(185deg) brightness(100%);
}

.ai-tool--gcal img {
  filter: invert(25%) sepia(90%) saturate(600%) hue-rotate(210deg) brightness(110%);
}

.ai-tool--gsheets img {
  filter: invert(40%) sepia(75%) saturate(500%) hue-rotate(95deg) brightness(90%);
}

/* Positioning each tool */
.ai-tool--whatsapp {
  top: 10%;
  left: -10%;
}

.ai-tool--instagram {
  top: 10%;
  right: -8%;
}

.ai-tool--telegram {
  top: 45%;
  left: -14%;
}

.ai-tool--gcal {
  top: 45%;
  right: -12%;
}

.ai-tool--gsheets {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* Bottom row */
.ai-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.ai-bottom-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.ai-bottom-title p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
}

.ai-bottom-cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {

  .ai-top-row,
  .ai-bottom-row {
    flex-direction: column;
  }

  .ai-visual-wrap {
    width: 320px;
    height: 380px;
  }

  .ai-robot-img {
    width: 260px;
  }

  .ai-orbit-ring {
    width: 320px;
    height: 320px;
  }

  .ai-tool--whatsapp {
    top: 5%;
    left: 0;
  }

  .ai-tool--instagram {
    top: 5%;
    right: 0;
  }

  .ai-tool--telegram {
    top: 42%;
    left: -5%;
  }

  .ai-tool--gcal {
    top: 42%;
    right: -5%;
  }

  .ai-watermark {
    font-size: 4rem;
  }
}

/* WhatsApp Widget Styles */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-button {
  width: 75px;
  height: 75px;
  background-color: #F48F92;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(244, 143, 146, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  padding: 0;
}

.wa-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(244, 143, 146, 0.5);
}

.wa-button img {
  width: 40px;
  height: 40px;
}

.wa-tooltip {
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.wa-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 25px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.wa-tooltip p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.wa-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(100%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.wa-card.active {
  transform: translateY(-95px) scale(1);
  opacity: 1;
  pointer-events: all;
}

.wa-card-header {
  background: #18161c;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.wa-avatar {
  width: 40px;
  height: 40px;
  background: #F48F92;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wa-avatar img {
  width: 25px;
  height: 25px;
}

.wa-status strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.wa-status span {
  font-size: 0.75rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-status span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.wa-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.wa-close:hover {
  opacity: 1;
}

.wa-card-body {
  padding: 25px;
}

.wa-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.wa-input-group {
  margin-bottom: 15px;
}

.wa-input-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--text-main);
}

.wa-input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  background: white;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}

.wa-input-group input:focus {
  border-color: #F48F92;
  box-shadow: 0 0 0 4px rgba(244, 143, 146, 0.1);
}

.wa-submit {
  width: 100%;
  padding: 14px;
  background: #F48F92;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.wa-submit:hover {
  background: #eb7a7e;
  transform: translateY(-2px);
}

.wa-privacy {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .wa-widget {
    bottom: 20px;
    right: 20px;
  }

  .wa-card {
    width: calc(100vw - 40px);
    bottom: 10px;
  }
}