:root {
  --lp-primary: #008cff;
  --lp-primary-dark: #006fd6;
  --lp-primary-light: #e6f4ff;
  --lp-secondary: #0f172a;
  --lp-success: #10b981;
  --lp-warning: #f59e0b;
  --lp-bg: #f8fafc;
  --lp-surface: #ffffff;
  --lp-text: #1e293b;
  --lp-text-secondary: #64748b;
  --lp-text-muted: #94a3b8;
  --lp-border: #e2e8f0;
  --lp-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --lp-radius: 16px;
  --lp-transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================= HEADER ================= */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo {
  height: 42px;
}

.lp-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.lp-nav-links a {
  color: var(--lp-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--lp-transition);
}

.lp-nav-links a:hover,
.lp-nav-links a.active {
  color: var(--lp-primary);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--lp-transition);
  font-family: inherit;
}

.lp-btn-primary {
  background: var(--lp-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 140, 255, 0.25);
}

.lp-btn-primary:hover {
  background: var(--lp-primary-dark);
  transform: translateY(-1px);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-primary);
  border: 1.5px solid var(--lp-primary);
}

.lp-btn-outline:hover {
  background: var(--lp-primary-light);
}

.lp-btn-white {
  background: white;
  color: var(--lp-primary);
}

.lp-btn-white:hover {
  background: #f1f5f9;
}

.lp-btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: 12px;
}

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--lp-text);
  cursor: pointer;
}

/* ================= HERO ================= */
.lp-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.lp-hero h1 span {
  color: var(--lp-primary);
}

.lp-hero p {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.lp-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-hero-checks span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.lp-hero-checks i {
  color: var(--lp-success);
}

.lp-hero-image {
  display: flex;
  justify-content: center;
}

.lp-hero-image img {
  max-width: 100%;
  border-radius: var(--lp-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ================= SECTIONS ================= */
.lp-section {
  padding: 80px 0;
}

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

.lp-section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 0.75rem;
}

.lp-section-title p {
  color: var(--lp-text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= BENEFÍCIOS ================= */
.lp-benefits {
  background: white;
}

.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lp-benefit-card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--lp-border);
  transition: var(--lp-transition);
}

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

.lp-benefit-card i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--lp-primary-light);
  color: var(--lp-primary);
  border-radius: 14px;
  font-size: 1.5rem;
}

.lp-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-benefit-card p {
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
}

/* ================= PLANOS ================= */
.lp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-plan-card {
  background: var(--lp-surface);
  border-radius: var(--lp-radius);
  padding: 2rem;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: var(--lp-transition);
}

.lp-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.lp-plan-card.featured {
  border-color: var(--lp-primary);
  transform: scale(1.02);
}

.lp-plan-card.featured::before {
  content: 'Mais popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-primary);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-plan-card img {
  height: 90px;
  width: auto;
  margin: 0 auto 1rem;
}

.lp-plan-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-primary);
  margin-bottom: 0.25rem;
}

.lp-plan-price span {
  font-size: 1rem;
  color: var(--lp-text-secondary);
  font-weight: 500;
}

.lp-plan-desc {
  color: var(--lp-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.lp-plan-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
}

.lp-plan-card ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--lp-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-plan-card ul li i {
  color: var(--lp-success);
  font-size: 0.8rem;
}

.lp-plan-card .btn-contratar,
.lp-service-card .btn-contratar {
  margin-top: auto;
}

/* ================= SERVIÇOS ================= */
.lp-services {
  background: white;
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-service-card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 2rem;
  border: 1px solid var(--lp-border);
  transition: var(--lp-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lp-service-card:hover {
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow);
  transform: translateY(-4px);
}

.lp-service-card i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-primary-light);
  color: var(--lp-primary);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.lp-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lp-service-card p {
  color: var(--lp-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.lp-service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 1rem;
}

/* ================= SOBRE ================= */
.lp-about {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.lp-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lp-about-text p {
  color: var(--lp-text-secondary);
  margin-bottom: 1rem;
}

.lp-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.lp-stat {
  text-align: center;
  background: white;
  padding: 1.25rem;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--lp-primary);
}

.lp-stat span {
  font-size: 0.8rem;
  color: var(--lp-text-secondary);
}

/* ================= CTA ================= */
.lp-cta {
  background: var(--lp-primary);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.lp-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lp-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= CONTATO ================= */
.lp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.lp-contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lp-contact-info p {
  color: var(--lp-text-secondary);
  margin-bottom: 1.5rem;
}

.lp-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-contact-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--lp-text);
  text-decoration: none;
  font-weight: 500;
}

.lp-contact-link i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-primary-light);
  color: var(--lp-primary);
  border-radius: 10px;
}

.lp-form {
  background: var(--lp-surface);
  padding: 2rem;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}

.lp-form input,
.lp-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--lp-transition);
}

.lp-form input:focus,
.lp-form textarea:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.1);
  outline: none;
}

.lp-form button {
  width: 100%;
}

/* ================= FOOTER ================= */
.lp-footer {
  background: var(--lp-secondary);
  color: white;
  padding: 60px 0 24px;
}

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

.lp-footer-brand img {
  height: 42px;
  margin-bottom: 1rem;
}

.lp-footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.lp-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lp-footer-col ul {
  list-style: none;
}

.lp-footer-col ul li {
  margin-bottom: 0.5rem;
}

.lp-footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--lp-transition);
}

.lp-footer-col a:hover {
  color: var(--lp-primary);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--lp-transition);
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .lp-benefits-grid,
  .lp-plans-grid,
  .lp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-menu-toggle {
    display: block;
  }

  .lp-nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
  }

  .lp-nav-links.open {
    display: flex;
  }

  .lp-nav-actions .lp-btn-outline {
    display: none;
  }

  .lp-hero-inner,
  .lp-about-inner,
  .lp-contact-inner {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding: 120px 0 60px;
  }

  .lp-hero h1 {
    font-size: 2.25rem;
  }

  .lp-benefits-grid,
  .lp-plans-grid,
  .lp-services-grid,
  .lp-about-stats,
  .lp-footer-inner {
    grid-template-columns: 1fr;
  }

  .lp-plan-card.featured {
    transform: none;
  }
}
