/* ============================================
   ALINI MUNIZ — Landing Page V2
   National Life Group Brand Identity
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

/* --- Design Tokens (National Life Palette) --- */
:root {
  /* NLG Brand Colors */
  --clr-forest: #35852E;
  --clr-forest-dark: #2A6B24;
  --clr-forest-deeper: #1E4D1A;
  --clr-forest-light: #4AA843;
  --clr-cornflower: #66AFE9;
  --clr-cornflower-dark: #4A96D4;
  --clr-cornflower-light: #8DC4F0;
  --clr-caribbean: #00CDAC;
  --clr-caribbean-dark: #00A88D;
  --clr-caribbean-light: #33D9BF;

  /* Neutrals */
  --clr-white: #FFFFFF;
  --clr-off-white: #F7F9F7;
  --clr-cream: #F0F4EE;
  --clr-gray-100: #E8ECE6;
  --clr-gray-300: #B0B8AD;
  --clr-gray-500: #6B7568;
  --clr-gray-700: #3D4A38;
  --clr-gray-900: #1A2318;

  /* Accent / Alert */
  --clr-gold: #E8A838;
  --clr-gold-dark: #C88E28;
  --clr-red: #D94040;
  --clr-red-bg: #FDF0F0;

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --fs-display: clamp(2.2rem, 5.5vw, 3.8rem);
  --fs-h1: clamp(1.85rem, 4.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 2.5vw, 1.45rem);
  --fs-body: clamp(0.95rem, 1.8vw, 1.08rem);
  --fs-body-lg: clamp(1.05rem, 2vw, 1.2rem);
  --fs-small: clamp(0.82rem, 1.5vw, 0.92rem);
  --fs-xs: 0.75rem;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 35, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 35, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 35, 24, 0.12);
  --shadow-xl: 0 16px 56px rgba(26, 35, 24, 0.16);
  --shadow-glow-green: 0 0 40px rgba(53, 133, 46, 0.2);
  --shadow-glow-blue: 0 0 40px rgba(102, 175, 233, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;
  --t-xslow: 0.9s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-gray-700);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  color: var(--clr-gray-900);
  line-height: 1.15;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-xl) 0;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-spring);
}

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

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(26, 35, 24, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo {
  width: 36px;
  height: 36px;
}

.navbar__logo svg {
  width: 100%;
  height: 100%;
}

.navbar__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-white);
  transition: color var(--t-base);
}

.navbar.scrolled .navbar__name {
  color: var(--clr-gray-900);
}

.navbar__cta {
  padding: 10px 22px;
  font-size: var(--fs-small);
  border-radius: var(--r-xl);
}

/* ============================================
   GLOBAL: CTA BUTTON
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  border: none;
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base), background var(--t-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Primary — Forest Green */
.btn--primary {
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(53, 133, 46, 0.30);

  padding: 10px 16px;
  /* igual ao whatsapp */
  font-size: 14px;
  /* igual ao whatsapp */
  border-radius: 8px;
  /* mantém consistência */
}

.btn--primary:hover {
  box-shadow: 0 5px 22px rgba(53, 133, 46, 0.45);
}

/* Secondary — Cornflower Blue */
.btn--secondary {
  background: linear-gradient(135deg, var(--clr-cornflower) 0%, var(--clr-cornflower-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(102, 175, 233, 0.35);
}

/* Ghost */
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);

  padding: 10px 16px;
  /* igual aos outros */
  font-size: 14px;
  border-radius: 8px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Pulse */
@keyframes pulse-green {
  0% {
    box-shadow: 0 4px 20px rgba(53, 133, 46, 0.35), 0 0 0 0 rgba(53, 133, 46, 0.4);
  }

  70% {
    box-shadow: 0 4px 20px rgba(53, 133, 46, 0.35), 0 0 0 14px rgba(53, 133, 46, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(53, 133, 46, 0.35), 0 0 0 0 rgba(53, 133, 46, 0);
  }
}

.btn--pulse {
  animation: pulse-green 2.5s infinite;
}

/* ============================================
   SECTION TAG (reusable)
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--r-xl);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-tag--green {
  background: rgba(53, 133, 46, 0.1);
  color: var(--clr-forest);
  border: 1px solid rgba(53, 133, 46, 0.15);
}

.section-tag--blue {
  background: rgba(102, 175, 233, 0.1);
  color: var(--clr-cornflower-dark);
  border: 1px solid rgba(102, 175, 233, 0.15);
}

.section-tag--white {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--clr-gray-900) 0%, var(--clr-forest-deeper) 40%, var(--clr-forest-dark) 100%);
  overflow: hidden;
}

/* Triangle mountain motif */
.hero__triangles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__triangles svg {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: 1800px;
  opacity: 0.07;
}

/* Gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(102, 175, 233, 0.2) 0%, transparent 70%);
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 205, 172, 0.15) 0%, transparent 70%);
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(53, 133, 46, 0.12) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--sp-3xl) + 20px);
  padding-bottom: var(--sp-xl);
  gap: var(--sp-lg);
}

.hero__content {
  max-width: 680px;
}

.hero__headline {
  font-size: var(--fs-display);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  line-height: 1.1;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
  opacity: 0;
}

.hero__headline .highlight {
  background: linear-gradient(135deg, var(--clr-caribbean) 0%, var(--clr-cornflower) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

.hero__sub strong {
  color: var(--clr-white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
  opacity: 0;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
  opacity: 0;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
}

.hero__trust-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-caribbean);
}

.hero__image-wrap {
  position: relative;
  max-width: 340px;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
  opacity: 0;
}

.hero__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating price badge */
.hero__price-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: 12px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  white-space: nowrap;
}

.hero__price-badge .price {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-forest);
}

.hero__price-badge .price-label {
  font-size: var(--fs-xs);
  color: var(--clr-gray-500);
}

/* ============================================
   PRICE HIGHLIGHT — $21,90 em todo o site
   ============================================ */
.price-highlight {
  font-family: var(--ff-heading);
  font-size: 1.35em;
  font-weight: 900;
  color: var(--clr-forest);
  letter-spacing: -0.01em;
  display: inline-block;
  line-height: 1.1;
}

/* Inside dark/colored backgrounds, use Caribbean teal for contrast */
.benefit-card--highlight .price-highlight,
.mid-cta--dark .price-highlight,
.mid-cta--green .price-highlight,
.final-cta .price-highlight,
.hero__sub .price-highlight {
  color: var(--clr-caribbean);
  text-shadow: 0 0 20px rgba(0, 205, 172, 0.3);
}

/* Wave divider */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
  background: var(--clr-off-white);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--clr-gray-100);
}

.social-proof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
}

.social-proof__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-gray-500);
  font-weight: 600;
}

.social-proof__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  align-items: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--clr-gray-700);
  font-weight: 500;
}

.proof-item svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-forest);
  flex-shrink: 0;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--clr-white);
}

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

.problem__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto var(--sp-md);
}

.problem__title .text-red {
  color: var(--clr-red);
}

.problem__text {
  max-width: 640px;
  margin: 0 auto var(--sp-lg);
  color: var(--clr-gray-500);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
}

/* Big number stats */
.problem__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
  max-width: 800px;
  margin: 0 auto var(--sp-lg);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.stat-card__icon--red {
  background: var(--clr-red-bg);
}

.stat-card__icon--red svg {
  fill: var(--clr-red);
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
}

.stat-card__number {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-gray-900);
  line-height: 1;
}

.stat-card__label {
  font-size: var(--fs-small);
  color: var(--clr-gray-500);
  line-height: 1.4;
  margin-top: 2px;
}

/* Quote */
.problem__quote {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--sp-lg);
  background: linear-gradient(135deg, var(--clr-forest-deeper) 0%, var(--clr-gray-900) 100%);
  color: var(--clr-white);
  border-radius: var(--r-lg);
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  text-align: left;
}

.problem__quote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 5rem;
  color: var(--clr-caribbean);
  opacity: 0.2;
  font-family: var(--ff-heading);
  line-height: 1;
  font-style: normal;
}

.problem__quote-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--clr-caribbean), var(--clr-cornflower));
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

/* ============================================
   SOLUTION / BENEFITS
   ============================================ */
.solution {
  background: var(--clr-off-white);
  position: relative;
  overflow: hidden;
}

/* Subtle triangle bg decoration */
.solution__bg-deco {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}

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

.solution__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  max-width: 660px;
  margin: 0 auto var(--sp-xs);
}

.solution__title .text-green {
  color: var(--clr-forest);
}

.solution__sub {
  color: var(--clr-gray-500);
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.benefit-card {
  position: relative;
  padding: var(--sp-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-forest), var(--clr-caribbean));
  opacity: 0;
  transition: opacity var(--t-base);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(53, 133, 46, 0.15);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-sm);
  background: linear-gradient(135deg, rgba(53, 133, 46, 0.08), rgba(0, 205, 172, 0.08));
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-forest);
}

.benefit-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card__text {
  color: var(--clr-gray-500);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* Feature highlight card */
.benefit-card--highlight {
  background: linear-gradient(135deg, var(--clr-forest-deeper) 0%, var(--clr-forest-dark) 100%);
  color: var(--clr-white);
  border-color: transparent;
}

.benefit-card--highlight .benefit-card__icon {
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card--highlight .benefit-card__icon svg {
  fill: var(--clr-caribbean);
}

.benefit-card--highlight .benefit-card__title {
  color: var(--clr-white);
}

.benefit-card--highlight .benefit-card__text {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-card--highlight:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.benefit-card--highlight::before {
  background: linear-gradient(90deg, var(--clr-caribbean), var(--clr-cornflower));
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
  background: var(--clr-white);
}

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

.comparison__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--sp-xs);
}

.comparison__sub {
  color: var(--clr-gray-500);
  margin-bottom: var(--sp-xl);
}

.comparison-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-gray-100);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}

.comparison-table thead th {
  padding: 16px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  text-align: center;
}

.comparison-table thead th:first-child {
  text-align: left;
  background: var(--clr-gray-900);
  color: var(--clr-white);
}

.comparison-table thead th:nth-child(2) {
  background: var(--clr-red-bg);
  color: var(--clr-red);
}

.comparison-table thead th:nth-child(3) {
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-dark) 100%);
  color: var(--clr-white);
}

.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--clr-gray-100);
  text-align: center;
  color: var(--clr-gray-700);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--clr-gray-900);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(53, 133, 46, 0.03);
}

.table-icon {
  font-size: 1.2rem;
}

.table-icon--yes {
  color: var(--clr-forest);
}

.table-icon--no {
  color: var(--clr-red);
}

/* ============================================
   AUTHORITY / TRUST
   ============================================ */
.authority {
  background: linear-gradient(175deg, var(--clr-gray-900) 0%, var(--clr-forest-deeper) 50%, var(--clr-forest-dark) 100%);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.authority__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 205, 172, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.authority__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

/* About Alini */
.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  text-align: center;
  padding: var(--sp-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}

.about-card__photo {
  width: 180px;
  height: 180px;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 3px solid var(--clr-caribbean);
  box-shadow: 0 0 0 6px rgba(0, 205, 172, 0.15), var(--shadow-lg);
  flex-shrink: 0;
}

.about-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card__name {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.about-card__role {
  font-size: var(--fs-xs);
  color: var(--clr-caribbean);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
}

.about-card__bio {
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  line-height: 1.8;
  font-size: var(--fs-body);
}

/* NLG card */
.nlg-card {
  padding: var(--sp-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}

.nlg-card__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nlg-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.nlg-card__logo-triangles svg {
  width: 42px;
  height: 42px;
}

.nlg-card__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white);
}

.nlg-card__logo-text span {
  color: var(--clr-caribbean);
}

.nlg-card__since {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nlg-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

.nlg-fact {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.nlg-fact__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 205, 172, 0.1);
  border: 1px solid rgba(0, 205, 172, 0.15);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.nlg-fact__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-caribbean);
}

.nlg-fact__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.nlg-fact__text strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--clr-off-white);
}

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

.testimonials__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--sp-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.testimonial-card {
  padding: var(--sp-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-sm);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
}

.testimonial-card__text {
  font-size: var(--fs-body);
  color: var(--clr-gray-700);
  line-height: 1.7;
  font-style: italic;

  /* chave do alinhamento */
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-caribbean));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--clr-gray-900);
}

.testimonial-card__loc {
  font-size: var(--fs-xs);
  color: var(--clr-gray-500);
}

.testimonial-card__author {
  margin-top: auto;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--clr-white);
}

.faq .container {
  max-width: 720px;
  text-align: center;
}

.faq__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--sp-xl);
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--clr-gray-100);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: var(--sp-md) 0;
  background: none;
  border: none;
  font-family: var(--ff-heading);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--clr-gray-900);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}

.faq-item__question:hover {
  color: var(--clr-forest);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--clr-cream);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-spring), background var(--t-base);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-gray-700);
  transition: transform var(--t-base);
}

.faq-item.open .faq-item__icon {
  background: var(--clr-forest);
  transform: rotate(0deg);
}

.faq-item.open .faq-item__icon svg {
  fill: var(--clr-white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease-out), padding var(--t-base);
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--sp-md);
}

.faq-item__answer p {
  color: var(--clr-gray-500);
  font-size: var(--fs-small);
  line-height: 1.8;
}

/* ============================================
   CONVERSION / FORM
   ============================================ */
.conversion {
  background: linear-gradient(180deg, var(--clr-cream) 0%, var(--clr-off-white) 100%);
  position: relative;
}

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

.conversion__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--sp-xs);
}

.conversion__title .text-green {
  color: var(--clr-forest);
}

.conversion__sub {
  color: var(--clr-gray-500);
  margin-bottom: var(--sp-lg);
}

.form-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-gray-100);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-forest), var(--clr-caribbean), var(--clr-cornflower));
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-gray-900);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-gray-900);
  background: var(--clr-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.form-group input:focus {
  border-color: var(--clr-forest);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(53, 133, 46, 0.1);
}

.form-group input.error {
  border-color: var(--clr-red);
  background: var(--clr-red-bg);
}

.form-group .error-msg {
  display: none;
  font-size: var(--fs-xs);
  color: var(--clr-red);
  margin-top: 4px;
}

.form-group input.error~.error-msg {
  display: block;
}

/* Checkboxes */
.form-checkbox {
  margin-bottom: var(--sp-md);
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-xs);
  color: var(--clr-gray-500);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--clr-forest);
  cursor: pointer;
}

.form-checkbox.error label {
  color: var(--clr-red);
}

.form-card .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

/* Form guarantee */
.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: var(--sp-md);
  font-size: var(--fs-xs);
  color: var(--clr-gray-500);
}

.form-guarantee svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-forest);
}

/* ============================================
   FINAL CTA BANNER
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-forest-dark) 100%);
  padding: var(--sp-xl) 0;
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.final-cta__orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 205, 172, 0.15) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta__text {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-md);
  line-height: 1.4;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-gray-900);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--sp-lg) 0;
}

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

.footer__company {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-white);
  font-size: var(--fs-body);
  margin-bottom: var(--sp-xs);
}

.footer__details p {
  font-size: var(--fs-xs);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__links a {
  font-size: var(--fs-xs);
  color: var(--clr-caribbean);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.footer__links a:hover {
  color: var(--clr-caribbean-light);
}

/* ============================================
   STICKY CTA (Mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px var(--sp-md);
  background: rgba(26, 35, 24, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 205, 172, 0.2);
  transform: translateY(100%);
  transition: transform var(--t-base);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: var(--sp-xl);
  }

  .hero__content {
    flex: 1;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__image-wrap {
    max-width: 300px;
  }

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

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

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

  .about-card {
    flex-direction: row;
    text-align: left;
  }

  .nlg-facts {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof .container {
    flex-direction: row;
    justify-content: center;
    gap: var(--sp-lg);
  }

  .sticky-cta {
    display: none;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px)
   ============================================ */
@media (min-width: 1024px) {
  .section {
    padding: var(--sp-2xl) 0;
  }

  .hero .container {
    min-height: 90vh;
    gap: var(--sp-2xl);
  }

  .hero__image-wrap {
    max-width: 380px;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .authority__grid {
    flex-direction: row;
    align-items: stretch;
  }

  .about-card {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }

  .nlg-card {
    flex: 1;
  }
}

/* ============================================
   WHATSAPP INLINE BUTTON (mid-CTAs)
   ============================================ */
.btn--whatsapp {
  background: linear-gradient(135deg, #2ecc71 0%, #25D366 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);

  padding: 10px 16px;
  /* antes devia estar maior */
  font-size: 14px;
  /* levemente menor */
  border-radius: 8px;
  /* opcional: deixa mais compacto */
}

.btn--whatsapp:hover {
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.45);
}

.btn--whatsapp svg {
  width: 18px;
  /* antes 22px */
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ============================================
   VIDEO TESTIMONIALS SECTION
   ============================================ */
.videos {
  background: var(--clr-off-white);
}

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

.videos__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto var(--sp-xs);
}

.videos__sub {
  color: var(--clr-gray-500);
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
}

/* Grid */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

/* Card */
.video-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Player area — 16:9 ratio */
.video-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: var(--clr-gray-900);
  overflow: hidden;
}

.video-card__player video,
.video-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Placeholder state */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--clr-gray-900) 0%, var(--clr-forest-deeper) 100%);
}

.video-placeholder__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: background var(--t-base), transform var(--t-base) var(--ease-spring);
}

.video-placeholder__icon svg {
  width: 32px;
  height: 32px;
  fill: rgba(255, 255, 255, 0.5);
}

.video-placeholder__label {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-card:hover .video-placeholder__icon {
  background: rgba(0, 205, 172, 0.15);
  transform: scale(1.08);
}

.video-card:hover .video-placeholder__icon svg {
  fill: var(--clr-caribbean);
}

/* Author info */
.video-card__info {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md);
}

.video-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-caribbean) 100%);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-card__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--clr-gray-900);
}

.video-card__loc {
  font-size: var(--fs-xs);
  color: var(--clr-gray-500);
  margin-top: 2px;
}

/* Responsive */
@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two-video variant — always 2 cols max, centered */
.videos-grid--two {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .videos-grid--two {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================
   MID-PAGE CTA BLOCKS
   ============================================ */
.mid-cta {
  margin-top: var(--sp-xl);
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--clr-cream);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accent line on top */
.mid-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-forest), var(--clr-caribbean));
}

.mid-cta__text {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-gray-900);
  max-width: 600px;
  line-height: 1.4;
}

.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
}

/* Dark variant — used after benefits section */
.mid-cta--dark {
  background: linear-gradient(135deg, var(--clr-gray-900) 0%, var(--clr-forest-deeper) 100%);
  border-color: transparent;
}

.mid-cta--dark::before {
  background: linear-gradient(90deg, var(--clr-caribbean), var(--clr-cornflower));
}

.mid-cta--dark .mid-cta__text {
  color: var(--clr-white);
}

/* Green variant — used after testimonials */
.mid-cta--green {
  background: linear-gradient(135deg, var(--clr-forest-deeper) 0%, var(--clr-forest-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.mid-cta--green::before {
  background: linear-gradient(90deg, var(--clr-caribbean), var(--clr-cornflower));
}

.mid-cta--green .mid-cta__text {
  color: var(--clr-white);
}

@media (max-width: 600px) {
  .mid-cta {
    padding: var(--sp-md);
  }

  .mid-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .mid-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0);
  }

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

@keyframes whatsapp-enter {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2ecc71 0%, #25D366 100%);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  animation:
    whatsapp-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both,
    whatsapp-pulse 2.8s ease-in-out 2s infinite;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
  animation: none;
}

.whatsapp-float__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

/* Tooltip */
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--clr-gray-900);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--r-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--clr-gray-900);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* On mobile, lift the button above the sticky CTA bar */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 90px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__icon {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}