/* ==========================================================
   PedeDireto — Landing Page Styles
   Mobile-first · Premium · High-conversion
   ========================================================== */

:root {
  /* Brand Colors */
  --color-red: #e11d48;
  --color-red-hover: #be123c;
  --color-red-light: rgba(225, 29, 72, 0.08);
  --color-red-glow: rgba(225, 29, 72, 0.35);

  --color-green: var(--color-red);
  --color-green-hover: var(--color-red-hover);
  --color-green-light: var(--color-red-light);

  /* Neutrals */
  --color-bg: #fafaf9;
  --color-surface: #ffffff;
  --color-text: #1c1917;
  --color-text-secondary: #44403c;
  --color-text-muted: #78716c;
  --color-border: #e7e5e4;
  --color-border-hover: #d6d3d1;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
  --shadow-red: 0 4px 16px var(--color-red-glow);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1140px;
  --header-h: 68px;
}

/* ==========================================================
   RESET & BASE
   ========================================================== */

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

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol { list-style: none; }

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

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ==========================================================
   LAYOUT
   ========================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

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

.section-header .subtitle {
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-red-glow);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-bg);
  border-color: var(--color-border-hover);
}

.btn-whatsapp {
  background: var(--color-green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--color-green-hover);
  transform: translateY(-2px);
}

/* ==========================================================
   HEADER
   ========================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,229,228,0.6);
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.nav-links a:hover {
  color: var(--color-red);
}

.header .btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header .btn-primary { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: var(--color-red-light);
  color: var(--color-red);
  border: 1px solid rgba(225,29,72,0.15);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-content .subtitle {
  max-width: 520px;
  margin-bottom: 1.5rem;
}

/* Price callout in hero */
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-red-light);
  border: 1px dashed rgba(225,29,72,0.2);
  border-radius: var(--radius-md);
}

.hero-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.hero-price .period {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.hero-price .after {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  width: 100%;
}

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.microcopy svg {
  color: var(--color-green);
  flex-shrink: 0;
}

/* Hero product visual (WhatsApp chat mockup) */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Phone frame ── */
.phone-frame {
  width: 100%;
  max-width: clamp(320px, 100%, 360px);
  height: 600px;
  background: #000;
  border-radius: 44px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  /* Subtle highlight on top edge */
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Status bar ── */
.wa-statusbar {
  background: #0b141a;
  padding: 6px 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.wa-time-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e9edef;
}

.wa-statusbar-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e9edef;
}

/* ── WhatsApp Header ── */
.wa-header {
  background: #202c33;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-back-icon { color: #aebac1; }

.wa-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a3942;
}

.wa-contact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-contact-name {
  font-size: 1rem;
  font-weight: 500;
  color: #e9edef;
}

.wa-contact-status {
  font-size: 0.8rem;
  color: #8696a0;
}

.wa-header-right {
  display: flex;
  gap: 18px;
  color: #aebac1;
}

/* ── Chat body ── */
.wa-chat-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* WhatsApp dark mode background with subtle doodle pattern */
  background-color: #0b141a;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%23111b21' fill-opacity='0.6'%3E%3Ccircle cx='25' cy='25' r='1.5'/%3E%3Ccircle cx='75' cy='25' r='1'/%3E%3Ccircle cx='125' cy='75' r='1.5'/%3E%3Ccircle cx='175' cy='125' r='1'/%3E%3Ccircle cx='25' cy='125' r='1'/%3E%3Ccircle cx='75' cy='175' r='1.5'/%3E%3Ccircle cx='150' cy='50' r='1'/%3E%3Ccircle cx='50' cy='150' r='1'/%3E%3Ccircle cx='175' cy='25' r='1'/%3E%3Ccircle cx='100' cy='100' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wa-chat-body::-webkit-scrollbar { display: none; }

/* ── Chat messages ── */
.chat-msg {
  max-width: 82%;
  padding: 6px 8px 4px 9px;
  border-radius: 7.5px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #e9edef;
  word-wrap: break-word;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-msg .msg-text { display: inline; }

.chat-msg .msg-time {
  float: right;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.chat-msg.shop {
  background: #202c33;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.chat-msg.client {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.chat-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WhatsApp Footer ── */
.wa-footer {
  background: #202c33;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.wa-input-bar {
  flex-grow: 1;
  background: #2a3942;
  border-radius: 21px;
  display: flex;
  align-items: center;
  padding: 7px 12px;
  gap: 10px;
}

.wa-input-text {
  flex-grow: 1;
  color: #8696a0;
  font-size: 0.9rem;
}

.wa-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00a884;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Floating order card (dark) ── */
.order-card {
  position: absolute;
  right: -90px;
  top: 38%;
  bottom: auto;
  width: 280px;
  background: #1a1a2e;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  padding: 1.25rem;
  z-index: 3;
  opacity: 0;
  transform: translateX(10px) scale(0.95);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  color: #e9edef;
}

.order-card.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.order-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

.order-card-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.order-card-title-group {
  display: flex;
  flex-direction: column;
}

.order-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.order-card-id {
  font-size: 0.72rem;
  color: #8696a0;
  margin-top: 2px;
}

.order-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.order-card-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: #d1d7db;
  line-height: 1.35;
}

.order-card-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.order-card-row strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
}

.order-card-price {
  margin-left: auto;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
}

.order-card-total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d7db;
}

.order-card-total-value {
  font-size: 1rem;
  font-weight: 800;
  color: #00a884;
}

.order-card-timestamp {
  font-size: 0.7rem;
  color: #8696a0;
  margin-top: 0.5rem;
  text-align: center;
}

.mockup-caption {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1.25rem;
  max-width: 420px;
  line-height: 1.4;
}

/* ── Responsive: Tablet ── */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content .subtitle { margin-left: auto; margin-right: auto; }
  .hero-price { justify-content: center; }
  .hero-actions { justify-content: center; }
  .microcopy { justify-content: center; }
  .hero-visual { margin-top: 2.5rem; }
  .mockup-container {
    max-width: 100%;
    justify-content: center;
  }
  .phone-frame {
    max-width: 320px;
    height: 540px;
  }
  .order-card {
    width: 260px;
    right: 0;
    top: auto;
    bottom: 30px;
    padding: 1rem;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .mockup-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .phone-frame {
    width: 100%;
    max-width: 320px;
    height: 500px;
    border-radius: 36px;
  }
  .order-card {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 300px;
    margin: -40px auto 0;
    transform: none;
    opacity: 0;
    z-index: 4;
  }
  .order-card.visible {
    transform: none;
  }
  .chat-msg {
    font-size: 0.8rem;
  }
  .wa-contact-name {
    font-size: 0.9rem;
  }
}

/* ==========================================================
   PROBLEMA (Pain points)
   ========================================================== */

.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card-dor {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.card-dor:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(225,29,72,0.25);
}

.card-dor .icon-wrapper {
  width: 44px;
  height: 44px;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-dor h3 {
  font-size: 1.05rem;
}

.card-dor .text-muted {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================
   COMO FUNCIONA (How it works)
   ========================================================== */

.bg-white {
  background-color: var(--color-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px var(--color-red-glow);
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.impact-phrase {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-green);
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-grid::before { display: none; }
}

/* ==========================================================
   PRODUTO (Product showcase)
   ========================================================== */

.produto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.produto-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.produto-img-wrapper img {
  width: 100%;
  display: block;
}

.produto-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--color-green-light);
  color: var(--color-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.produto-cta {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .produto-grid {
    grid-template-columns: 1fr;
  }
  .produto-img-wrapper {
    order: -1;
  }
}

/* ==========================================================
   ANTES E DEPOIS (Before & After)
   ========================================================== */

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.comparison-card-header {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comparison-card.before .comparison-card-header {
  background: #f5f5f4;
  color: #78716c;
  border-bottom: 1px solid #e7e5e4;
}

.comparison-card.after .comparison-card-header {
  background: var(--color-red-light);
  color: var(--color-red);
  border-bottom: 1px solid rgba(225, 29, 72, 0.2);
}

.comparison-card ul {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-surface);
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.comparison-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-card.before li svg { color: #a8a29e; }
.comparison-card.after li svg { color: var(--color-red); }

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

/* ==========================================================
   PARA QUEM É
   ========================================================== */

.audience-text {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}

.niche-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s ease;
}

.niche-tag:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.niche-tag svg {
  color: var(--color-red);
  flex-shrink: 0;
}

/* ==========================================================
   BENEFÍCIOS
   ========================================================== */

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.beneficio-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}

.beneficio-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

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

.beneficio-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.beneficio-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================
   PREÇO
   ========================================================== */

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-red);
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #fff;
  padding: 0.45rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.pricing-amount {
  margin-top: 1.5rem;
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.pricing-amount small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.pricing-period {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.pricing-features li svg {
  color: var(--color-green);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================
   FAQ
   ========================================================== */

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-q::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-a {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ==========================================================
   CTA FINAL
   ========================================================== */

.cta-final {
  background: var(--color-text);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: var(--radius-xl);
  margin: 0 1rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(225,29,72,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-final .subtitle {
  color: #a8a29e;
  max-width: 540px;
  margin: 0 auto 2.25rem;
  position: relative;
}

.cta-final .btn {
  position: relative;
}

@media (max-width: 640px) {
  .cta-final {
    padding: 3.5rem 1.25rem;
    margin: 0 0.75rem;
    border-radius: var(--radius-lg);
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 24px;
  width: auto;
  opacity: 0.5;
}

.footer p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-green);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px var(--color-red-glow);
  transition: all 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: var(--color-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--color-red-glow);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

/* Desktop: icon only, smaller */
@media (min-width: 769px) {
  .whatsapp-float {
    padding: 0.9rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-float .float-label { display: none; }
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */

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

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* Smooth scroll offset for fixed header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ==========================================================
   RESPONSIVE FINE-TUNING
   ========================================================== */

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  h2 { font-size: 1.5rem; }
  .dores-grid { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
}
