/* Lumens - Site Institucional */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

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

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
}

/* ── Base ── */
.landing {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #001f27;
  background: #f1fbff;
  overflow-x: hidden;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,31,39,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-img { height: 2.5rem; width: 2.5rem; object-fit: cover; border-radius: 6px; }
.nav-logo-name { font-size: 1.25rem; font-weight: 700; color: #0c4a6e; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0c4a6e;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1a2b48; }
.nav-cta { text-decoration: none; }

/* ── Buttons ── */
.btn-primary {
  background: #1a2b48;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.15), 0 4px 0 #0a1324;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(2px); box-shadow: none; }

.btn-ghost {
  background: #d2f4ff;
  color: #705d00;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: #c4effe; }

.btn-outline {
  background: transparent;
  color: #1a2b48;
  border: 2px solid #1a2b48;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(26,43,72,0.05); }

.btn-lg { font-size: 1.05rem; padding: 1rem 2.25rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-blob-1 { width: 18rem; height: 18rem; background: #d2f4ff; top: 5rem; left: 2rem; }
.hero-blob-2 { width: 22rem; height: 22rem; background: #c4effe; bottom: 3rem; right: 2rem; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fcd400;
  color: #6e5c00;
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}
.badge-icon { font-size: 1rem !important; font-variation-settings: 'FILL' 1 !important; }
.hero-text h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: #001f27;
}
.highlight { color: #1a2b48; }
.hero-text p { font-size: 1.1rem; color: #5d3f3c; max-width: 34rem; font-weight: 500; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-glow {
  position: absolute;
  inset: -2rem;
  background: rgba(208,216,232,0.3);
  border-radius: 50%;
  filter: blur(3rem);
}
.hero-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 6px solid #fff;
}
.hero-badge {
  position: absolute;
  background: #fff;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-badge-stars { right: -1rem; top: 25%; }
.hero-badge-rocket { left: -1rem; bottom: 25%; animation-delay: 1s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Sections common ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #001f27;
  margin-bottom: 0.75rem;
}
.section-header p { color: #5d3f3c; font-weight: 500; }
.divider { height: 6px; width: 5rem; background: #1a2b48; border-radius: 9999px; margin: 1rem auto 0; }
.text-center { text-align: center; }

/* ── Philosophy Section ── */
.philosophy {
  padding: 5rem 0;
  background: #e2f7ff;
}
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.philosophy-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #001f27;
  margin-bottom: 1.25rem;
}
.philosophy-text > p {
  color: #5d3f3c;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.philosophy-highlight {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0,31,39,0.08);
  border-left: 5px solid #006838;
}
.philosophy-highlight-text {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.philosophy-highlight-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #001f27;
}
.philosophy-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #006838;
}
.philosophy-highlight h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #001f27;
  margin-bottom: 0.5rem;
}
.philosophy-highlight p {
  color: #5d3f3c;
  font-size: 0.95rem;
  line-height: 1.6;
}
.philosophy-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.philosophy-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.philosophy-option {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,31,39,0.06);
}
.philosophy-option-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-option h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #001f27;
  margin-bottom: 0.35rem;
}
.philosophy-option p {
  color: #5d3f3c;
  font-size: 0.9rem;
  line-height: 1.6;
}
.philosophy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.philosophy-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,31,39,0.08);
}
.philosophy-arrow {
  font-size: 2rem;
  color: #5d3f3c;
  font-weight: 700;
}
.philosophy-caption {
  font-size: 0.9rem;
  color: #5d3f3c;
  font-weight: 600;
  text-align: center;
}

/* ── Features (Blocos Z-Pattern) ── */
.features { padding: 5rem 0; background: #f1fbff; }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block-reverse { direction: rtl; }
.feature-block-reverse > * { direction: ltr; }

.feature-block-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-block-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #d0d8e8;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2b48;
}
.feature-block-icon .material-symbols-outlined { font-size: 1.75rem !important; }
.feature-block-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #001f27;
}
.feature-block-text p {
  color: #5d3f3c;
  font-size: 1.05rem;
  line-height: 1.7;
}
.feature-block-image {
  display: flex;
  justify-content: center;
}
.feature-mockup {
  width: 100%;
  max-width: 420px;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,31,39,0.1);
  border: 4px solid #fff;
}

/* ── Target Audience ── */
.target-audience {
  padding: 5rem 0;
  background: #e2f7ff;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,31,39,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,31,39,0.1);
}
.audience-check {
  color: #006838 !important;
  font-size: 1.5rem !important;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.audience-item p {
  color: #001f27;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Pricing ── */
.pricing { padding: 5rem 0; background: #f1fbff; }
.pricing-trial-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #e8f5e9;
  color: #006838;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  width: fit-content;
  margin: -2rem auto 2.5rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 0 #d0d8e8, 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 15px 0 #d0d8e8, 0 20px 40px rgba(0,0,0,0.1); }
.plan-featured { border: 3px solid #1a2b48; }
.plan-badge {
  position: absolute;
  top: -0.875rem;
  background: #fcd400;
  color: #6e5c00;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.plan-icon .material-symbols-outlined { font-size: 2rem !important; }
.plan-icon-0 { background: #e2f7ff; color: #1a2b48; }
.plan-icon-1 { background: #d0d8e8; color: #1a2b48; }
.plan-icon-2 { background: #fcd400; color: #1a2b48; }
.plan-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.plan-subtitle { color: #5d3f3c; font-size: 0.9rem; margin-bottom: 1rem; }
.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.plan-price span { font-size: 1rem; font-weight: 700; color: #5d3f3c; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; width: 100%; text-align: left; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li { display: flex; align-items: center; gap: 0.5rem; color: #5d3f3c; font-size: 0.9rem; }
.check { color: #006838 !important; font-variation-settings: 'FILL' 1 !important; font-size: 1.1rem !important; }
.plan-btn { width: 100%; justify-content: center; margin-top: auto; }
.plans-loading { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem; grid-column: 1 / -1; }
.plans-loading-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #e2f7ff;
  border-top-color: #1a2b48;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ── */
.footer { background: #e0f2fe; border-radius: 2rem 2rem 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-logo-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.footer-logo { height: 2rem; width: 2rem; object-fit: cover; border-radius: 4px; }
.footer-logo-name { font-size: 1rem; font-weight: 700; color: #0c4a6e; }
.footer-dev { font-size: 0.8rem; color: #0c4a6e; display: flex; align-items: center; gap: 0.35rem; }
.footer-viva-logo { height: 4.2rem; width: auto; object-fit: contain; }
.footer-viva-link { display: inline-flex; align-items: center; gap: 0.35rem; color: #0c4a6e; text-decoration: none; }
.footer-viva-link:hover { text-decoration: underline; }
.footer-cnpj { font-size: 0.75rem; color: #5d3f3c; text-align: center; font-weight: 700; }
.footer-copy { font-size: 0.75rem; color: #5d3f3c; margin-top: 0.25rem; text-align: center; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(0,31,39,0.1); margin-top: 2rem; padding-top: 1.5rem; padding-bottom: 20px; text-align: center; }
.footer-nav,
.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #001f27;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.footer-nav a,
.footer-legal a,
.footer-contact a {
  text-decoration: none;
  font-size: 0.875rem;
  color: #0369a1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-nav a:hover,
.footer-legal a:hover,
.footer-contact a:hover { color: #1a2b48; }

/* ── WhatsApp Widget ── */
.wa-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-popup {
  width: 320px;
  background: #f0f0f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: waPopupIn 0.2s ease;
}
@keyframes waPopupIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-popup-header {
  background: #25d366;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wa-header-info { flex: 1; }
.wa-header-info strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 700; }
.wa-header-info span { color: rgba(255,255,255,0.9); font-size: 0.8rem; display: flex; align-items: center; gap: 0.3rem; }
.wa-online-dot { width: 0.5rem; height: 0.5rem; background: #fff; border-radius: 50%; display: inline-block; }
.wa-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.wa-close:hover { color: #fff; }
.wa-popup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.wa-bubble {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #111;
}
.wa-bubble p { margin: 0 0 0.35rem; }
.wa-bubble p:last-child { margin: 0; }
.wa-preview {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.wa-preview-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #aaa;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.wa-preview p { margin: 0; font-size: 0.88rem; color: #333; line-height: 1.5; }
.wa-popup-footer { padding: 1rem 1.25rem 1.25rem; }
.wa-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.wa-continue-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-fab {
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
.wa-fab.open { background: #128c7e; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { align-items: center; }
  .hero-image { display: none; }

  .philosophy-content { grid-template-columns: 1fr; }
  .philosophy-visual { margin-top: 1rem; }
  .philosophy-options-grid { grid-template-columns: 1fr; }

  .feature-block,
  .feature-block-reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-block-image { order: -1; }

  .audience-grid { grid-template-columns: 1fr; }

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav, .footer-legal, .footer-contact { align-items: center; }
  .footer-logo-row { justify-content: center; }

  .nav-links { display: none; }
}
