/* ═══════════════════════════════════════════════
   LANDING PAGE — Dappio (Etapa 7)
   Design inspirado em iFood/Anota.ai com toque próprio
   ═══════════════════════════════════════════════ */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: #0F1115;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ═══ CONTAINER ═══ */
.lp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ TIPOGRAFIA ═══ */
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FF5F00;
  margin-bottom: 0.6rem;
}

.lp-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 0.8rem;
  color: #0F1115;
}

.lp-section-subtitle {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 620px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-text-accent {
  background: linear-gradient(135deg, #FF5F00 0%, #FF8B3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══ BUTTONS ═══ */
.lp-btn-primary,
.lp-btn-secondary,
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #FF5F00 0%, #FF8B3D 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 95, 0, 0.35);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 0, 0.45);
}

.lp-btn-secondary {
  background: #FFF1E6;
  color: #FF5F00;
  border: 2px solid #FFE4D0;
}
.lp-btn-secondary:hover {
  background: #FFE4D0;
}

.lp-btn-ghost {
  background: transparent;
  color: #0F1115;
  border: 1.5px solid #EAEAF0;
}
.lp-btn-ghost:hover {
  border-color: #FF5F00;
  color: #FF5F00;
}

.lp-btn-large {
  padding: 16px 30px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.lp-btn-block {
  width: 100%;
}

.lp-arrow {
  transition: transform 0.2s;
}
.lp-btn-primary:hover .lp-arrow,
.lp-btn-ghost:hover .lp-arrow {
  transform: translateX(4px);
}

/* ═══ HEADER ═══ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #EAEAF0;
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 2rem;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 1.35rem;
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #111118;
}

.lp-logo-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Quando ainda é span (legado/emoji) */
span.lp-logo-icon {
  background: linear-gradient(135deg, #FF5F00, #FF8B3D);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 95, 0, 0.25);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-logo-text {
  display: inline-block;
}

/* Footer (fundo escuro): texto branco */
.lp-footer-brand .lp-logo,
.lp-footer-brand .lp-logo-text { color: #fff; }

@media (max-width: 480px) {
  .lp-logo { font-size: 1.2rem; gap: 0.3rem; }
  .lp-logo-icon { width: 34px; height: 34px; }
}

.lp-nav {
  display: flex;
  gap: 2rem;
}

.lp-nav a {
  color: #6B7280;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.lp-nav a:hover { color: #FF5F00; }

.lp-header-actions {
  display: flex;
  gap: 0.6rem;
}

/* Mostrar apenas o botão "Acessar painel" se logado */
body.user-logged .lp-btn-guest { display: none; }
body:not(.user-logged) .lp-btn-logged { display: none; }

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

@media (max-width: 880px) {
  .lp-nav { display: none; }
  .lp-menu-toggle { display: block; }
  .lp-header-actions .lp-btn-ghost { display: none; }
  body:not(.user-logged) .lp-header-actions .lp-btn-primary { display: inline-flex; }
}

/* ═══ HERO ═══ */
.lp-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #FFF8F2 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  background: rgba(255, 95, 0, 0.1);
  color: #FF5F00;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.lp-pulse-dot {
  width: 8px;
  height: 8px;
  background: #FF5F00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.lp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.lp-hero-subtitle {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 2rem;
  max-width: 560px;
}

.lp-hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.lp-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.88rem;
  color: #6B7280;
}

.lp-hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #047857;
  font-weight: 700;
  font-size: 0.7rem;
}

/* ═══ HERO MOCKUP ═══ */
.lp-hero-visual {
  position: relative;
  height: 580px;
}

.lp-phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: 1;
}

.lp-phone-frame {
  width: 280px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.lp-phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  height: 520px;
}

.lp-phone-header {
  padding: 0;
}

.lp-phone-cover {
  height: 130px;
  background: linear-gradient(135deg, #FF5F00 0%, #FF8B3D 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.lp-phone-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.4));
}

.lp-phone-store-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.lp-phone-store-logo {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lp-phone-store-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-phone-store-meta {
  font-size: 0.72rem;
  opacity: 0.9;
}

.lp-phone-categories {
  display: flex;
  gap: 0.5rem;
  padding: 12px;
  border-bottom: 1px solid #F3F4F6;
  overflow-x: auto;
}

.lp-phone-cat {
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #F3F4F6;
  color: #6B7280;
  border-radius: 999px;
  white-space: nowrap;
}

.lp-phone-cat.active {
  background: #FF5F00;
  color: #fff;
}

.lp-phone-product {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px;
  border-bottom: 1px solid #F3F4F6;
}

.lp-phone-product-img {
  width: 60px; height: 60px;
  background: #FFF1E6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.lp-phone-product-info { flex: 1; min-width: 0; }
.lp-phone-product-name { font-weight: 600; font-size: 0.85rem; color: #0F1115; }
.lp-phone-product-desc {
  font-size: 0.7rem;
  color: #9CA3AF;
  margin: 2px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-phone-product-price { font-weight: 700; font-size: 0.85rem; color: #FF5F00; }

.lp-phone-add {
  width: 28px; height: 28px;
  background: #FF5F00;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 95, 0, 0.4);
}

.lp-floating-notif {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  animation: floatY 4s ease-in-out infinite;
  z-index: 2;
}

.lp-floating-icon {
  width: 38px; height: 38px;
  background: #ECFDF5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.lp-floating-content { display: flex; flex-direction: column; }
.lp-floating-content strong { font-size: 0.85rem; color: #0F1115; }
.lp-floating-content small { font-size: 0.72rem; color: #6B7280; }

.lp-floating-stat {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  animation: floatY 4s ease-in-out infinite 1s;
  z-index: 2;
}

.lp-floating-stat-label {
  font-size: 0.7rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.lp-floating-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F1115;
  margin: 2px 0;
}

.lp-floating-stat-trend {
  font-size: 0.78rem;
  color: #047857;
  font-weight: 600;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lp-hero-visual { height: 480px; }
  .lp-phone-mockup { transform: translate(-50%, -50%) scale(0.85) rotate(-3deg); }
}

/* ═══ TRUST BAR ═══ */
.lp-trust {
  padding: 3rem 0;
  background: #FAFAFC;
  border-bottom: 1px solid #EAEAF0;
}

.lp-trust-label {
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.lp-trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.lp-trust-stat {
  text-align: center;
}

.lp-trust-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0F1115;
  line-height: 1;
}

.lp-trust-stat small {
  font-size: 0.85rem;
  color: #6B7280;
  margin-top: 4px;
  display: block;
}

.lp-trust-divider {
  width: 1px;
  height: 36px;
  background: #EAEAF0;
}

@media (max-width: 640px) {
  .lp-trust-divider { display: none; }
  .lp-trust-stats { gap: 1.5rem; }
}

/* ═══ FEATURES ═══ */
.lp-features {
  padding: 5rem 0;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lp-feature {
  padding: 1.8rem;
  background: #fff;
  border: 1px solid #EAEAF0;
  border-radius: 16px;
  transition: all 0.25s;
}

.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 95, 0, 0.3);
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FFF1E6, #FFE4D0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.lp-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #0F1115;
}

.lp-feature p {
  font-size: 0.92rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.55;
}

/* ═══ HOW IT WORKS ═══ */
.lp-how {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
}

.lp-steps {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 3rem;
}

.lp-step {
  flex: 1;
  background: #fff;
  border: 1px solid #EAEAF0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.lp-step-number {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #FF5F00, #FF8B3D);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 16px rgba(255, 95, 0, 0.3);
}

.lp-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.lp-step p { font-size: 0.92rem; color: #6B7280; margin: 0; }

.lp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FF5F00;
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .lp-steps { flex-direction: column; }
  .lp-step-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
}

.lp-how-cta {
  text-align: center;
}

/* ═══ FOR WHO (NICHES) ═══ */
.lp-for-who {
  padding: 5rem 0;
  background: #FAFAFC;
}

.lp-niches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.lp-niche {
  padding: 14px 22px;
  background: #fff;
  border: 1px solid #EAEAF0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0F1115;
  transition: all 0.2s;
}

.lp-niche:hover {
  background: #FFF1E6;
  border-color: #FF5F00;
  color: #FF5F00;
  transform: translateY(-2px);
}

/* ═══ COMPARE TABLE ═══ */
.lp-compare {
  padding: 5rem 0;
}

.lp-compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #EAEAF0;
}

.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #F3F4F6;
}

.lp-compare-table th {
  font-size: 0.92rem;
  font-weight: 600;
  color: #6B7280;
  background: #FAFAFC;
}

.lp-compare-table td {
  font-size: 0.92rem;
  color: #6B7280;
}

.lp-compare-table td:first-child {
  font-weight: 500;
  color: #0F1115;
}

.lp-compare-us {
  background: rgba(255, 95, 0, 0.04) !important;
  text-align: center;
  font-weight: 600;
  color: #0F1115 !important;
}

.lp-compare-us-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FF5F00, #FF8B3D);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.lp-compare-yes {
  color: #047857;
  font-weight: 700;
}

.lp-compare-no {
  color: #B91C1C;
  font-weight: 600;
}

/* ═══ PRICING ═══ */
.lp-pricing {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-pricing-card {
  background: #fff;
  border: 1px solid #EAEAF0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-pricing-card.lp-pricing-featured {
  border-color: #FF5F00;
  border-width: 2px;
  box-shadow: 0 12px 40px rgba(255, 95, 0, 0.15);
  transform: scale(1.02);
}

.lp-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF5F00, #FF8B3D);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-pricing-header { margin-bottom: 1.5rem; }

.lp-pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.lp-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.lp-pricing-currency {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 600;
}

.lp-pricing-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0F1115;
  line-height: 1;
}

.lp-pricing-period {
  font-size: 0.95rem;
  color: #6B7280;
}

.lp-pricing-desc {
  font-size: 0.88rem;
  color: #6B7280;
  margin: 0;
}

.lp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.lp-pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: #0F1115;
  border-bottom: 1px solid #F3F4F6;
}

.lp-pricing-features li:last-child { border-bottom: none; }

.lp-pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: #6B7280;
}

/* ═══ FAQ ═══ */
.lp-faq {
  padding: 5rem 0;
}

.lp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid #EAEAF0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.lp-faq-item[open] {
  border-color: #FF5F00;
  box-shadow: 0 6px 20px rgba(255, 95, 0, 0.08);
}

.lp-faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0F1115;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}

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

.lp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #FF5F00;
  font-weight: 600;
  transition: transform 0.2s;
}

.lp-faq-item[open] summary::after {
  content: '−';
}

.lp-faq-item p {
  padding: 0 1.5rem 1.2rem;
  margin: 0;
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══ FINAL CTA ═══ */
.lp-final-cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #FF5F00 0%, #FF8B3D 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.lp-final-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  position: relative;
}

.lp-final-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.lp-btn-cta-final {
  background: #fff !important;
  color: #FF5F00 !important;
  position: relative;
}

.lp-btn-cta-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-final-mini {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
  position: relative;
}

/* ═══ FOOTER ═══ */
.lp-footer {
  background: #0F1115;
  color: #9CA3AF;
  padding: 3.5rem 0 1.5rem;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.lp-footer-brand .lp-logo { color: #fff; margin-bottom: 1rem; }
.lp-footer-brand p { font-size: 0.9rem; max-width: 320px; line-height: 1.6; }

.lp-footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lp-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #9CA3AF;
  padding: 5px 0;
  transition: color 0.15s;
}

.lp-footer-col a:hover { color: #FF8B3D; }

.lp-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.lp-footer-bottom small { font-size: 0.85rem; }

@media (max-width: 760px) {
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ RESPONSIVE GERAL ═══ */
@media (max-width: 640px) {
  .lp-hero { padding: 3rem 0 2rem; }
  .lp-features,
  .lp-how,
  .lp-for-who,
  .lp-compare,
  .lp-pricing,
  .lp-faq,
  .lp-final-cta { padding: 3.5rem 0; }
  .lp-section-header { margin-bottom: 2rem; }
  .lp-pricing-card.lp-pricing-featured { transform: none; }
}

/* ═══ Mobile menu open ═══ */
@media (max-width: 880px) {
  .lp-nav.lp-nav-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 24px;
    border-bottom: 1px solid #EAEAF0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    animation: slideDown 0.2s ease-out;
  }

  .lp-nav.lp-nav-open a {
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 1rem;
  }

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

/* ═══════════════════════════════════════════════
   FASE DE TESTES — overrides temporários
   Esconde seções e preços enquanto o produto está em validação.
   Reverter: remover este bloco e restaurar lp-pricing-price no HTML.
   ═══════════════════════════════════════════════ */

.lp-trust,
.lp-compare {
  display: none !important;
}

.lp-pricing-price-tbd {
  /* Mantém a altura aproximada do bloco de preço pra não quebrar layout */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 8px 0 12px;
}

.lp-pricing-tbd {
  font-size: 1rem;
  font-weight: 600;
  color: #FF5F00;
  letter-spacing: 0.01em;
  background: rgba(255, 95, 0, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  text-align: center;
}
