/* ===== TOKENS ===== */
:root {
  --forest: #01472e;
  --forest-light: #0a5c3c;
  --sage: #ccd5ae;
  --olive: #e9edc9;
  --cream: #fefae0;
  --moss: #a3b18a;
  --danger: #b33a2e;
  --whats: #25d366;
  --glow: rgba(37, 211, 102, 0.4);
  --glow-green: 0 0 40px rgba(37, 211, 102, 0.3), 0 0 80px rgba(37, 211, 102, 0.15);
  --glow-forest: 0 0 40px rgba(1, 71, 46, 0.25), 0 0 80px rgba(1, 71, 46, 0.1);
  --shadow: 0 20px 60px -15px rgba(1, 71, 46, 0.2);
  --shadow-lg: 0 30px 80px -20px rgba(1, 71, 46, 0.3);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --radius-lg: 28px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--forest);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PERSONA BAR ===== */
.persona-bar {
  background: var(--olive);
  padding: 12px 24px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(1, 71, 46, 0.1);
}
.persona-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.persona-bar-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.7;
}
.persona-toggle {
  display: flex;
  background: rgba(1, 71, 46, 0.08);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.persona-btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  background: transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.persona-btn.active {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 4px 16px rgba(1, 71, 46, 0.3);
}
.persona-btn:not(.active):hover {
  background: rgba(1, 71, 46, 0.08);
}

/* Mobile persona in menu */
.mobile-persona-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(1, 71, 46, 0.1);
}
.mobile-persona-toggle .persona-btn {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid var(--forest);
  border-radius: 14px;
}
.mobile-persona-toggle .persona-btn.active {
  border-color: var(--forest);
}

@media (max-width: 600px) {
  .persona-bar { padding: 10px 16px; }
  .persona-bar-label { display: none; }
  .persona-btn { padding: 10px 20px; font-size: 15px; flex: 1; text-align: center; }
}

/* ===== PERSONA VIEWS ===== */
.persona-view {
  display: none;
}
.persona-view.active {
  display: block;
  animation: fadeIn 0.5s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== BENEFITS GRID (PRODUTOR) ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--olive);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 18px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-list li {
  font-size: 17px;
  color: var(--forest);
  opacity: 0.8;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--whats);
  font-weight: 700;
}
@media (max-width: 800px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURE LABELS ===== */
.feature-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--whats);
  margin-bottom: 8px;
}

/* persona-toggle visible on all screens via persona-bar */

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.allinone-grid .reveal:nth-child(1) { transition-delay: 0s; }
.allinone-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.allinone-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.allinone-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.allinone-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.allinone-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.allinone-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.allinone-grid .reveal:nth-child(8) { transition-delay: 0.35s; }
.allinone-grid .reveal:nth-child(9) { transition-delay: 0.4s; }
.allinone-grid .reveal:nth-child(10) { transition-delay: 0.45s; }

/* ===== GLOW CARDS ===== */
.glow-card {
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(1, 71, 46, 0.2), rgba(37, 211, 102, 0.3));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
  animation: gradientBorder 3s ease infinite;
}
@keyframes gradientBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.glow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.25), 0 20px 60px rgba(1, 71, 46, 0.15);
}
.glow-card:hover::before {
  opacity: 1;
}

.glow-card-strong {
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.glow-card-strong:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.35), 0 0 120px rgba(37, 211, 102, 0.15), 0 30px 80px -20px rgba(1, 71, 46, 0.3);
}

/* ===== PULSE DOT ===== */
.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--whats);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

/* urgency bar removed */

/* ===== NAV ===== */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(254, 250, 224, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(1, 71, 46, 0.08);
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.nav.hidden { transform: translateY(-120%); }
.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav-logo-sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.35;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  transition: all 0.3s var(--ease);
}
.nav-links a:hover {
  background: var(--forest);
  color: #fff;
}
.nav-cta {
  padding: 12px 24px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(1, 71, 46, 0.3);
}
.nav-cta:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(1, 71, 46, 0.4);
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--forest);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 100px 32px 40px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  padding: 18px 0;
  border-bottom: 1px solid rgba(1, 71, 46, 0.1);
}
.mobile-cta {
  margin-top: 16px;
  padding: 20px !important;
  background: var(--forest) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 800 !important;
  border: none !important;
}

@media (max-width: 960px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--sage) 0%, var(--olive) 50%, var(--sage) 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease infinite;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
  animation: floatingOrb 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes floatingOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.1); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(1, 71, 46, 0.08);
  border: 1px solid rgba(1, 71, 46, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: badgeFloat 3s ease-in-out infinite;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.highlight {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-light {
  color: var(--whats);
}
.hero-sub {
  font-size: 20px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-item strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
}
.proof-item span {
  font-size: 14px;
  color: var(--forest);
  opacity: 0.7;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(1, 71, 46, 0.2);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Hero Photo */
.hero-photo-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(1, 71, 46, 0.1);
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-photo-wrap + .vsl-wrapper {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  max-width: 560px;
}

/* VSL Video Wrapper */
.vsl-wrapper {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.phone-mockup {
  width: 320px;
  background: var(--forest);
  border-radius: 36px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.app-logo-small {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--whats);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.app-header span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.app-notif {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.app-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.app-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.app-card-badge {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.app-card-badge.ok {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.app-card-badge.sent {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.app-card-value {
  margin-left: auto;
  font-size: 20px;
  font-weight: 900;
  color: var(--whats);
}
.app-card.highlight-card {
  background: var(--whats);
  border-color: transparent;
}
.app-card.highlight-card .app-card-icon {
  background: rgba(255,255,255,0.2);
}
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
    text-align: center;
    min-height: auto;
    gap: 40px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { order: -1; width: 100%; }
  .hero-photo-wrap { max-width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
  .hero-photo-wrap + .vsl-wrapper { max-width: 100%; border-radius: 0 0 var(--radius) var(--radius); }
  .phone-mockup { width: 280px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 70% { left: -60%; }
  100% { left: 120%; }
}
.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(1, 71, 46, 0.4);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
  animation: btnPulseGlow 2.5s ease-in-out infinite;
}
.btn-glow:hover {
  box-shadow: var(--glow-green), 0 12px 40px rgba(1, 71, 46, 0.4);
  animation: none;
}
@keyframes btnPulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.15); }
  50% { box-shadow: 0 0 40px rgba(37, 211, 102, 0.3), 0 0 80px rgba(37, 211, 102, 0.1); }
}
.btn-large {
  padding: 22px 40px;
  font-size: 20px;
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 22px 36px;
  font-size: 20px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s var(--ease);
}
.btn-secondary:hover {
  background: var(--forest);
  color: #fff;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(1, 71, 46, 0.08);
  border: 1px solid rgba(1, 71, 46, 0.12);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s var(--ease);
  animation: badgeFloat 3s ease-in-out infinite;
}
.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.section-tag:hover {
  background: var(--forest);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(1, 71, 46, 0.3);
  border-color: var(--forest);
}
.section-tag.light {
  background: rgba(255,255,255,0.1);
  color: var(--sage);
  border-color: rgba(255,255,255,0.15);
}
.section-tag.light:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.section-title.light {
  color: #fff;
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: var(--cream);
  padding: 120px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pain-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.pain-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--olive);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.pain-card:hover .pain-icon {
  background: rgba(179, 58, 46, 0.1);
  transform: scale(1.1) rotate(-5deg);
}
.pain-card:hover .pain-icon svg {
  stroke: var(--danger);
}
.pain-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 14px;
}
.pain-card p {
  font-size: 18px;
  color: var(--forest);
  opacity: 0.75;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-section { padding: 80px 0; }
}

/* ===== STEPS SECTION ===== */
.steps-section {
  background: var(--olive);
  padding: 120px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(1, 71, 46, 0.2);
  animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.step-card:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}
.step-visual {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.step-visual svg {
  width: 100%;
  height: auto;
}
.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 17px;
  color: var(--forest);
  opacity: 0.75;
  line-height: 1.7;
}
.steps-cta {
  text-align: center;
}

@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-section { padding: 80px 0; }
}

/* ===== TRANSFORM SECTION ===== */
.transform-section {
  background: var(--sage);
  padding: 120px 0;
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.transform-card {
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.transform-card.before {
  background: #fff;
  border: 1px solid rgba(1, 71, 46, 0.08);
  opacity: 0.85;
}
.transform-card.after {
  background: var(--forest);
  box-shadow: var(--shadow-lg);
}
.transform-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.before-tag {
  background: rgba(179, 58, 46, 0.1);
  color: var(--danger);
}
.after-tag {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whats);
}
.transform-card ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.transform-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.transform-card li svg {
  flex-shrink: 0;
}
.transform-card.before li {
  color: var(--forest);
}
.transform-card.after li {
  color: #fff;
}

@media (max-width: 700px) {
  .transform-grid { grid-template-columns: 1fr; }
  .transform-section { padding: 80px 0; }
  .transform-card { padding: 36px 28px; }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--forest);
  padding: 120px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(37, 211, 102, 0.3);
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-visual {
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
}
.feature-visual svg {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}
.feature-card:hover .feature-visual svg {
  transform: scale(1.03);
}

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-section { padding: 80px 0; }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: var(--olive);
  padding: 120px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.testi-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testi-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 16px;
}
.testi-card > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.8;
  margin-bottom: 28px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 71, 46, 0.1);
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
}
.testi-role {
  font-size: 14px;
  color: var(--forest);
  opacity: 0.6;
  margin-top: 2px;
}

.social-proof {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.sp-item {
  transition: transform 0.4s var(--ease);
}
.sp-item:hover {
  transform: scale(1.08);
}
.sp-item strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  background: linear-gradient(135deg, var(--forest) 0%, var(--whats) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-item span {
  display: block;
  font-size: 14px;
  color: var(--forest);
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .social-proof { grid-template-columns: 1fr 1fr; }
  .testi-section { padding: 80px 0; }
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: var(--sage);
  padding: 120px 0;
}
.offer-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 44px 48px;
  border: 2px solid var(--forest);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.offer-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--whats);
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: ribbonPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(1, 71, 46, 0.4);
}
@keyframes ribbonPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}
.offer-plan {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.6;
  margin-bottom: 24px;
}
.price-block {
  text-align: center;
  margin-bottom: 40px;
}
.price-old {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.6;
  margin-bottom: 12px;
}
.price-old s {
  color: var(--danger);
}
.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.price-currency {
  font-size: 32px;
  font-weight: 900;
  color: var(--forest);
  margin-top: 16px;
}
.price-value {
  font-size: 100px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.04em;
}
.price-period {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.6;
  margin-top: 12px;
}
.price-after {
  font-size: 11px;
  color: var(--forest);
  opacity: 0.4;
  margin-top: 6px;
  font-weight: 500;
}
.offer-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 24px;
}
.offer-divider::before, .offer-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(1, 71, 46, 0.15);
}
.offer-divider span {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  opacity: 0.5;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.5;
}
.offer-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.offer-list li strong {
  display: block;
  font-weight: 700;
  color: var(--forest);
}
.offer-list li em {
  font-style: normal;
  font-size: 14px;
  color: var(--forest);
  opacity: 0.5;
}
.offer-total {
  text-align: center;
  padding: 20px;
  background: var(--olive);
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}
.offer-total s {
  opacity: 0.5;
}
.offer-total strong {
  color: var(--forest);
  font-size: 20px;
}
.offer-fine {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0.5;
  margin-top: 18px;
}
.offer-after {
  text-align: center;
  font-size: 10px;
  color: var(--forest);
  opacity: 0.35;
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .offer-card { padding: 50px 24px 40px; }
  .price-value { font-size: 72px; }
  .price-currency { font-size: 24px; margin-top: 12px; }
  .offer-section { padding: 80px 0; }
}

/* GUARANTEE */
.guarantee {
  max-width: 700px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(1, 71, 46, 0.08);
}
.guarantee-badge {
  flex-shrink: 0;
}
.guarantee-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(1, 71, 46, 0.2);
}
.guarantee-percent {
  font-size: 36px;
  font-weight: 900;
  color: var(--whats);
  line-height: 1;
}
.guarantee-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--sage);
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.guarantee-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 14px;
}
.guarantee-text p {
  font-size: 17px;
  color: var(--forest);
  opacity: 0.8;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .guarantee-badge { display: flex; justify-content: center; }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
  padding: 120px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(1, 71, 46, 0.12);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  transition: opacity 0.3s;
}
.faq-q:hover { opacity: 0.7; }
.faq-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}
.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--forest);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
}
.faq-a p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.75;
  padding-bottom: 28px;
}
.faq-item.open .faq-a {
  max-height: 400px;
}

@media (max-width: 640px) {
  .faq-section { padding: 80px 0; }
  .faq-text { font-size: 18px; }
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--forest);
  padding: 120px 0;
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.cta-final > .container > .cta-inner > p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--sage);
  margin-bottom: 16px;
}
.cta-bold {
  font-size: 20px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 40px !important;
}
.cta-fine {
  font-size: 15px;
  font-weight: 600;
  color: var(--moss);
  margin-top: 20px;
}
.ps-block {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 32px 36px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--whats);
  border-radius: 12px;
  text-align: left;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sage);
}
.ps-block strong {
  color: #fff;
}

@media (max-width: 640px) {
  .cta-final { padding: 80px 0; }
  .ps-block { padding: 24px 20px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #022619;
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.foot-logo-sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.3;
  letter-spacing: 0.08em;
}
.foot-desc {
  font-size: 16px;
  color: var(--sage);
  opacity: 0.7;
  line-height: 1.6;
}
.foot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.foot-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.foot-col a {
  display: block;
  font-size: 16px;
  color: var(--sage);
  padding: 8px 0;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.foot-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: var(--sage);
  opacity: 0.4;
}

@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 60px 0 30px; }
}

/* ===== WA CTA SECTION ===== */
.wa-cta-section {
  background: linear-gradient(160deg, #013d27 0%, #01572f 30%, #068a3c 60%, #25d366 100%);
  overflow: hidden;
  position: relative;
}
.wa-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,211,102,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.wa-cta-top {
  text-align: center;
  padding: 80px 24px 48px;
  position: relative;
  z-index: 2;
}
.wa-cta-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Botao estilo referencia */
.wa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 20px 48px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 18px;
  color: #fff;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wa-cta-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 50px rgba(37,211,102,0.35), 0 16px 48px rgba(0,0,0,0.2);
}
.wa-cta-chevrons {
  font-size: 22px;
  font-weight: 300;
  opacity: 0.6;
  letter-spacing: -3px;
}
.wa-cta-label {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.3;
}

/* Imagem real - sem gap, colada no fundo */
.wa-cta-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 0;
  line-height: 0; /* remove espaço fantasma */
}
.wa-cta-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 640px) {
  .wa-cta-top { padding: 60px 20px 36px; }
  .wa-cta-title { font-size: 26px; }
  .wa-cta-btn { padding: 16px 28px; gap: 16px; }
  .wa-cta-label { font-size: 18px; }
  .wa-cta-chevrons { font-size: 18px; }
  .wa-cta-image { max-width: 100%; }
}

/* ===== FLOAT WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px 16px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 40px rgba(1, 71, 46, 0.5), var(--glow-green);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
  animation: waFloatBounce 3s ease-in-out infinite;
  will-change: transform;
}
@keyframes waFloatBounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-8px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-4px); }
  60%, 100% { transform: translateY(0); }
}
.wa-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 60px rgba(1, 71, 46, 0.6), 0 0 60px rgba(37, 211, 102, 0.4);
  animation: none;
}
.wa-float.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  animation: none;
}
.wa-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--whats);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.wa-text span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}
.wa-text strong {
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .wa-float {
    padding: 14px 20px 14px 14px;
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .wa-icon { width: 40px; height: 40px; }
  .wa-text span { font-size: 11px; }
  .wa-text strong { font-size: 18px; }
}

/* ===== IA SECTION ===== */
.ia-section {
  background: linear-gradient(135deg, var(--forest) 0%, #023d28 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ia-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ia-content {
  position: relative;
  z-index: 1;
}
.ia-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--whats);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  animation: badgeFloat 3s ease-in-out infinite;
}
.ia-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.ia-badge svg {
  animation: pulse 2s ease-in-out infinite;
}
.ia-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ia-desc {
  font-size: 20px;
  line-height: 1.7;
  color: var(--sage);
  max-width: 700px;
  margin-bottom: 56px;
}
.ia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ia-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
}
.ia-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(37, 211, 102, 0.3);
}
.ia-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--whats);
  transition: all 0.4s var(--ease);
}
.ia-card:hover .ia-card-icon {
  background: var(--whats);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}
.ia-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.ia-card p {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.7;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .ia-grid { grid-template-columns: 1fr; }
  .ia-section { padding: 80px 0; }
}

/* ===== ALL-IN-ONE SECTION ===== */
.allinone-section {
  background: var(--cream);
  padding: 120px 0;
}
.section-subtitle {
  font-size: 20px;
  color: var(--forest);
  opacity: 0.75;
  margin-top: 16px;
  line-height: 1.6;
}
.allinone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.allinone-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(1, 71, 46, 0.08);
  transition: all 0.3s var(--ease);
}
.allinone-item:hover {
  border-color: rgba(37, 211, 102, 0.3);
}
.allinone-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--olive);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.allinone-item:hover .allinone-icon {
  background: var(--forest);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(1, 71, 46, 0.3);
}
.allinone-item:hover .allinone-icon svg {
  stroke: #fff;
}
.allinone-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
}
.allinone-text span {
  display: block;
  font-size: 15px;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 4px;
  line-height: 1.4;
}
.allinone-highlight {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(1, 71, 46, 0.05) 100%);
  border-color: rgba(37, 211, 102, 0.2);
}
.allinone-highlight .allinone-icon {
  background: rgba(37, 211, 102, 0.15);
}

@media (max-width: 700px) {
  .allinone-grid { grid-template-columns: 1fr; }
  .allinone-section { padding: 80px 0; }
}

/* ===== ANDROID / MOBILE FULL OPTIMIZATION ===== */

/* Touch devices: disable hover-only effects that cause jank */
@media (hover: none) and (pointer: coarse) {
  /* Disable heavy animations */
  .glow-card:hover { transform: none; }
  .glow-card::before { display: none; }
  .btn-primary::after { display: none; } /* shine effect */
  .btn-glow { animation: none; box-shadow: 0 4px 20px rgba(1, 71, 46, 0.3); }
  .section-tag { animation: none; }
  .section-tag::before { display: none; }
  .section-tag:hover { transform: none; background: rgba(1, 71, 46, 0.08); color: var(--forest); box-shadow: none; }
  .section-tag.light:hover { background: rgba(255,255,255,0.1); color: var(--sage); box-shadow: none; }
  .ia-badge { animation: none; }
  .ia-badge::before { display: none; }
  .ia-badge svg { animation: none; }
  .hero-badge { animation: none; }
  .hero::after { display: none; } /* floating orb */
  .wa-float { animation: none; }
  .step-number::after { animation: none; }
  .offer-ribbon { animation: none; }

  /* Ensure touch targets are min 48px */
  .persona-btn { min-height: 48px; }
  .btn-primary { min-height: 52px; }
  .faq-q { min-height: 56px; }
  .nav-burger { min-width: 48px; min-height: 48px; }

  /* Fix sticky on Android Chrome */
  .nav { position: -webkit-sticky; position: sticky; }
}

/* Small phones (< 400px) */
@media (max-width: 400px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero { padding: 30px 16px 50px; gap: 30px; }
  .hero-title { font-size: 28px; margin-bottom: 16px; }
  .hero-sub { font-size: 17px; margin-bottom: 24px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }
  .hero-proof { gap: 20px; }
  .proof-item strong { font-size: 22px; }
  .hero-badge { font-size: 13px; padding: 8px 16px; }
  .pain-card { padding: 28px 20px; }
  .pain-card h3 { font-size: 18px; }
  .pain-card p { font-size: 16px; }
  .pain-section { padding: 60px 0; }
  .ia-section { padding: 60px 0; }
  .ia-title { font-size: 26px; }
  .ia-desc { font-size: 17px; }
  .ia-card { padding: 28px 20px; }
  .ia-card h3 { font-size: 18px; }
  .ia-card p { font-size: 15px; }
  .steps-section { padding: 60px 0; }
  .step-card { padding: 28px 20px; }
  .step-card h3 { font-size: 18px; }
  .step-card p { font-size: 15px; }
  .allinone-section { padding: 60px 0; }
  .allinone-item { padding: 18px 16px; gap: 14px; }
  .allinone-icon { width: 44px; height: 44px; border-radius: 12px; }
  .allinone-text strong { font-size: 15px; }
  .allinone-text span { font-size: 13px; }
  .testi-section { padding: 60px 0; }
  .testi-card { padding: 28px 20px; }
  .testi-card h3 { font-size: 18px; }
  .offer-section { padding: 60px 0; }
  .offer-card { padding: 48px 20px 36px; }
  .price-value { font-size: 56px; }
  .offer-list li { font-size: 15px; }
  .faq-section { padding: 60px 0; }
  .btn-large { padding: 18px 28px; font-size: 17px; }
  .btn-full { padding: 18px 24px; font-size: 17px; }
  .section-title { font-size: 26px; }
  .section-tag { font-size: 13px; padding: 8px 16px; }
  .social-proof { padding: 32px 20px; }
  .sp-item strong { font-size: 28px; }
  .wa-float { bottom: 12px; right: 12px; padding: 12px 16px 12px 12px; gap: 8px; }
  .wa-icon { width: 36px; height: 36px; }
  .wa-text strong { font-size: 16px; }
  .wa-text span { font-size: 10px; }
  .persona-bar { padding: 8px 12px; }
  .persona-btn { padding: 8px 14px; font-size: 14px; }
  .nav { padding: 10px 16px; }
  .nav-logo { font-size: 17px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-links { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Ensure safe area for phones with notch / gesture bar */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-float {
    bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .footer .foot-bottom {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  @media (max-width: 400px) {
    .wa-float {
      bottom: calc(12px + env(safe-area-inset-bottom));
    }
  }
}

/* Reduce motion for accessibility / battery saving */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
