/* =========================================================
   Reservas na Mão — Stylesheet
   Paleta da marca: Navy #0A1F44 + Verde #1FA84A
   Tipografia: Fraunces (display) + Plus Jakarta Sans (body)
   ========================================================= */

:root {
  /* Cores da marca */
  --navy: #0A1F44;
  --navy-deep: #060F2A;
  --navy-soft: #1A2D55;
  --green: #1FA84A;
  --green-bright: #25D366;   /* WhatsApp green — familiar */
  --green-dark: #178A3B;
  --green-soft: #E8F7EE;

  /* Neutros quentes */
  --bg: #FAFAF7;
  --bg-warm: #F4F1EA;
  --paper: #FFFFFF;
  --ink: #0A1F44;
  --ink-soft: #4A5670;
  --ink-mute: #8993A8;
  --line: #E6E2D8;
  --line-soft: #EFECE3;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 31, 68, 0.14);
  --shadow-green: 0 16px 40px rgba(31, 168, 74, 0.25);

  /* Tipografia */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--green);
  color: white;
}

/* ================= Tipografia ================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 144;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--green);
}

/* ================= Container ================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= Botões ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(31, 168, 74, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.btn-light:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ================= Header ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo img {
  height: 88px;
  width: auto;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 11px 20px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .logo img { height: 72px; }
}

@media (max-width: 600px) {
  .nav-cta { display: none; }
  .logo img { height: 60px; }
}

/* ================= Hero ================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(31, 168, 74, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(10, 31, 68, 0.06), transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 31, 68, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 31, 68, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  margin: 6px 0 24px;
}

.hero-content h1 .accent {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.hero-content .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-mute);
}

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

.hero-trust .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.hero-trust .dots span:nth-child(2) { animation-delay: 0.3s; }
.hero-trust .dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ================= WhatsApp Mockup ================= */
.phone-stack {
  position: relative;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #0F1A23;
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotate(-2deg);
}

.phone-screen {
  background: #ECE5DD;
  border-radius: 26px;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(31, 168, 74, 0.04), transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(31, 168, 74, 0.04), transparent 40%);
}

.wa-header {
  background: #075E54;
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
}

.wa-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: var(--font-body);
}

.wa-name {
  font-size: 15px;
  font-weight: 600;
}

.wa-status {
  font-size: 11px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CFF8C;
  box-shadow: 0 0 6px #4CFF8C;
}

.wa-icons {
  display: flex;
  gap: 14px;
  opacity: 0.85;
}

.wa-icons svg {
  width: 18px;
  height: 18px;
}

.wa-body {
  flex: 1;
  padding: 16px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  overflow: hidden;
}

.bubble {
  max-width: 78%;
  padding: 8px 12px 6px;
  border-radius: 12px;
  position: relative;
  word-wrap: break-word;
  animation: bubbleIn 0.5s ease both;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bubble.them {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 4px;
  color: #303030;
}

.bubble.us {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 4px;
  color: #303030;
}

.bubble .time {
  display: inline-block;
  font-size: 10px;
  color: #8a9099;
  margin-left: 8px;
  vertical-align: bottom;
}

.bubble .check {
  display: inline-block;
  margin-left: 2px;
  color: #34B7F1;
  font-size: 12px;
}

.bubble.audio {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.bubble.audio .play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bubble.audio .wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  flex: 1;
}

.bubble.audio .wave span {
  width: 2px;
  background: #999;
  border-radius: 2px;
}

.bubble.payment {
  background: white;
  align-self: stretch;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border-top-right-radius: 4px;
  margin-left: auto;
  width: 88%;
}

.payment-card-img {
  height: 86px;
  background:
    linear-gradient(135deg, var(--green) 0%, #16C172 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.payment-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10), transparent 40%);
}

.payment-body {
  padding: 10px 12px;
}

.payment-title {
  font-weight: 600;
  font-size: 13px;
  color: #303030;
}

.payment-subtitle {
  font-size: 11px;
  color: #8a9099;
  margin-top: 2px;
}

.typing {
  align-self: flex-start;
  background: white;
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b0b0b0;
  animation: typing 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: floaty 6s ease-in-out infinite;
}

.float-card .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card .ico svg { width: 18px; height: 18px; }

.float-card.top {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.float-card.bottom {
  bottom: 12%;
  right: -10%;
  animation-delay: 1.5s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@media (max-width: 600px) {
  .float-card.top { left: -4%; }
  .float-card.bottom { right: -4%; }
}

/* ================= Sections geral ================= */
section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head p {
  font-size: 18px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ================= Problem Section ================= */
.problem {
  background: var(--navy);
  color: white;
}

.problem h2,
.problem h3 {
  color: white;
}

.problem .eyebrow {
  color: var(--green-bright);
}

.problem .eyebrow::before {
  background: var(--green-bright);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 64px 0 48px;
}

.problem-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, background 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.problem-card .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--green-bright);
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.problem-quote {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1.3;
}

.problem-quote .highlight {
  color: var(--green-bright);
  font-weight: 500;
}

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

/* ================= Solution Section ================= */
.solution {
  background: var(--bg-warm);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.feature-row:hover {
  transform: translateX(4px);
}

.feature-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-row .icon svg { width: 22px; height: 22px; }

.feature-row .text strong {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.feature-row .text span {
  font-size: 14px;
  color: var(--ink-soft);
}

.solution-visual {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.solution-visual::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green) 0%, transparent 50%);
  z-index: -1;
  opacity: 0.4;
  filter: blur(16px);
}

@media (max-width: 960px) {
  .solution-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ================= How it Works ================= */
.steps {
  background: var(--bg);
}

.steps-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.step {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-num::before {
  content: '/ ';
  color: var(--ink-mute);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .steps-rail { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .steps-rail { grid-template-columns: 1fr; }
}

/* ================= Benefits ================= */
.benefits {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 168, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.benefits h2 { color: white; }
.benefits .eyebrow { color: var(--green-bright); }
.benefits .eyebrow::before { background: var(--green-bright); }
.benefits .section-head p { color: rgba(255, 255, 255, 0.7); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.benefit {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--green-bright);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(31, 168, 74, 0.15);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon svg { width: 24px; height: 24px; }

.benefit h3 {
  color: white;
  font-size: 19px;
  margin-bottom: 8px;
}

.benefit p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

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

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

/* ================= Why WhatsApp ================= */
.why-wa {
  background: var(--bg-warm);
}

.why-wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-wa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-wa-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-wa-list .check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-wa-list .check svg { width: 16px; height: 16px; }

.why-wa-list strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 600;
}

.why-wa-list span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.compare-vs {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.compare-vs h3 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-vs h3 .pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.compare-vs h3 .pill.bad {
  background: #FEE2E2;
  color: #991B1B;
}

.compare-vs h3 .pill.good {
  background: var(--green-soft);
  color: var(--green-dark);
}

.compare-vs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.compare-vs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.compare-vs li:last-child { border-bottom: none; }

.compare-vs li::before {
  font-size: 16px;
  flex-shrink: 0;
}

.compare-vs.bad li::before { content: '✕'; color: #DC2626; font-weight: 700; }
.compare-vs.good li::before { content: '✓'; color: var(--green); font-weight: 700; }

.compare-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .why-wa-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ================= Comparison Antes/Depois ================= */
.compare-section {
  background: var(--bg);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

.compare-grid::after {
  content: '→';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  box-shadow: var(--shadow-green);
  z-index: 2;
}

.compare-col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
}

.compare-col.before {
  background: #FBF7F2;
  border-color: #EDE5D8;
}

.compare-col.after {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.compare-col h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.compare-col.before h3 { color: var(--ink-mute); }
.compare-col.after h3 { color: var(--green-bright); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}

.compare-col.before li {
  color: #6B5D4A;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 93, 74, 0.4);
}

.compare-col.before li::before {
  content: '×';
  font-size: 20px;
  color: #B59A78;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.compare-col.after li {
  color: white;
}

.compare-col.after li::before {
  content: '✓';
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-grid::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ================= Plans / Pricing ================= */
.plans {
  background: var(--bg-warm);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1.5px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.plan.featured {
  border-color: var(--green);
  background:
    linear-gradient(180deg, white 0%, var(--green-soft) 200%);
  box-shadow: var(--shadow-md);
}

.plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--green);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-green);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.plan-tag {
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 24px;
}

.plan-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}

.plan li.muted {
  color: var(--ink-mute);
}

.plan li.muted::before {
  color: #C0C7D5 !important;
}

.plan li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.plan li.muted::before {
  content: '—';
}

.plan .btn {
  width: 100%;
}

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

/* ================= Social Proof ================= */
.proof {
  background: var(--bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.proof-card {
  padding: 36px 36px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.proof-quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}

.proof-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--green);
  vertical-align: -16px;
  margin-right: 4px;
}

.proof-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.proof-info strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.proof-info span {
  font-size: 13px;
  color: var(--ink-mute);
}

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

/* ================= FAQ / Objections ================= */
.faq {
  background: var(--bg-warm);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--green);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--green);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ================= Dashboard do Hoteleiro ================= */
.dashboard {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 168, 74, 0.08), transparent 70%);
  pointer-events: none;
}

.dashboard .section-head {
  margin-bottom: 56px;
}

.dash-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(10, 31, 68, 0.18),
    0 8px 24px rgba(10, 31, 68, 0.08);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Browser chrome */
.dash-chrome {
  background: linear-gradient(180deg, #F4F1EA 0%, #ECE7DC 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.dash-dots {
  display: flex;
  gap: 7px;
}

.dash-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }

.dash-url {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  max-width: 380px;
  margin: 0 auto;
}

.dash-url svg { width: 12px; height: 12px; color: var(--green); }
.dash-url strong { color: var(--navy); font-weight: 600; }

/* Dashboard body */
.dash-body {
  padding: 32px 36px 36px;
  font-family: var(--font-body);
}

.dash-greeting {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.dash-greeting h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.dash-greeting span {
  font-size: 13px;
  color: var(--ink-mute);
}

.dash-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-warm);
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-period::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* KPIs */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.kpi {
  padding: 20px 22px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}

.kpi-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.kpi-value small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
}

.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Pipeline */
.dash-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dash-section-title h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.dash-section-title .helper {
  font-size: 12px;
  color: var(--ink-mute);
}

.dash-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.pipe-col {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-top: 3px solid;
}

.pipe-col.curioso { border-top-color: #94A3B8; }
.pipe-col.orcamento { border-top-color: #F59E0B; }
.pipe-col.interesse { border-top-color: #3B82F6; }
.pipe-col.fechou { border-top-color: var(--green); background: var(--green-soft); }

.pipe-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pipe-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pipe-count {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.pipe-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pipe-card {
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s ease;
}

.pipe-card:hover {
  transform: translateX(2px);
}

.pipe-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

.pipe-avatar.alt-1 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.pipe-avatar.alt-2 { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.pipe-avatar.alt-3 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.pipe-avatar.alt-4 { background: linear-gradient(135deg, #EC4899, #BE185D); }

.pipe-card .pname {
  flex: 1;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pipe-card .pdate {
  font-size: 10px;
  color: var(--ink-mute);
  flex-shrink: 0;
}

.pipe-more {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-mute);
  text-align: center;
  padding: 8px 0 2px;
  letter-spacing: 0.02em;
}

/* Recovery panel */
.dash-recover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 14px;
  padding: 24px 26px;
  color: white;
  position: relative;
  overflow: hidden;
}

.dash-recover::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 168, 74, 0.18), transparent 70%);
  pointer-events: none;
}

.dash-recover-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.dash-recover-head h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.dash-recover-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.dash-recover-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.recover-row {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recover-row .pipe-avatar { flex-shrink: 0; }

.recover-info {
  flex: 1;
  min-width: 0;
}

.recover-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.recover-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.recover-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.recover-tag.t1 { background: rgba(59, 130, 246, 0.2); color: #93C5FD; }
.recover-tag.t2 { background: rgba(245, 158, 11, 0.2); color: #FCD34D; }
.recover-tag.t3 { background: rgba(148, 163, 184, 0.2); color: #CBD5E1; }

.dash-recover-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.dash-recover-cta .btn {
  background: var(--green-bright);
  color: white;
  font-size: 14px;
  padding: 12px 20px;
  border: none;
}

.dash-recover-cta .btn:hover {
  background: white;
  color: var(--navy);
}

.dash-recover-cta small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Below-dashboard takeaways */
.dash-takeaways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 56px auto 0;
}

.dash-take {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dash-take .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-take .ico svg { width: 20px; height: 20px; }

.dash-take strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.dash-take span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-pipeline { grid-template-columns: 1fr 1fr; }
  .dash-takeaways { grid-template-columns: 1fr; gap: 20px; }
  .dash-body { padding: 24px 22px 28px; }
}

@media (max-width: 600px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dash-pipeline { grid-template-columns: 1fr; }
  .kpi-value { font-size: 26px; }
  .recover-info span { font-size: 11px; }
  .dash-greeting { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ================= Final CTA ================= */
.final-cta {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.final-cta::before {
  width: 420px;
  height: 420px;
  background: rgba(31, 168, 74, 0.30);
  top: -100px;
  left: -100px;
}

.final-cta::after {
  width: 360px;
  height: 360px;
  background: rgba(31, 168, 74, 0.18);
  bottom: -120px;
  right: -80px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 28px;
}

.final-cta h2 .accent {
  font-style: italic;
  color: var(--green-bright);
  font-weight: 400;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  background: var(--green-bright);
  font-size: 18px;
  padding: 20px 36px;
}

.final-cta .btn-primary:hover {
  background: white;
  color: var(--navy);
  box-shadow: 0 24px 64px rgba(255, 255, 255, 0.15);
}

/* ================= Footer ================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid img {
  height: 120px;
  margin-bottom: 18px;
}

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--green-bright); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ================= WhatsApp floating button ================= */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-bright);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

.fab-wa svg { width: 32px; height: 32px; }

.fab-wa::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--green-bright);
  opacity: 0.4;
  z-index: -1;
  animation: ring 2s ease-out infinite;
}

@keyframes ring {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================= Reveal on scroll =================
   Só esconde quando o JS aplica .js-ready no <body>.
   Sem JS / leitores de tela / screenshots: tudo visível por padrão.
*/
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================= Lang ribbon ================= */
.lang-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lang-chip {
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-chip .flag {
  font-size: 16px;
}
