/* Lumens - Site Institucional Estático */
@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(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #001f27;
}
.highlight { color: #1a2b48; }
.hero-text p { font-size: 1.1rem; color: #5d3f3c; max-width: 32rem; font-weight: 500; }
.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: 340px;
  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; }

/* ── Features ── */
.features { padding: 5rem 0; background: #e2f7ff; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(0,31,39,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,31,39,0.1); }
.bento-large { grid-column: span 8; }
.bento-yellow { grid-column: span 4; background: #fcd400; }
.bento-dark { grid-column: span 4; background: #1a2b48; }
.bento-light { grid-column: span 8; }
.bento-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #001f27;
}
.bento-yellow h3 { color: #221b00; }
.bento-card p { color: #5d3f3c; font-size: 0.95rem; }
.bento-yellow p { color: #544600; }
.feature-icon {
  width: 3rem;
  height: 3rem;
  background: #d0d8e8;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2b48;
}
.feature-icon .material-symbols-outlined { font-size: 1.5rem !important; }
.feature-icon-circle {
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #221b00;
}
.feature-icon-circle .material-symbols-outlined { font-size: 2rem !important; font-variation-settings: 'FILL' 1 !important; }
.feature-img { width: 100%; border-radius: 0.75rem; object-fit: cover; height: 14rem; margin-top: 1rem; }
.feature-img-sm { height: 10rem; }
.avatar-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.avatar-icon { font-size: 2.5rem !important; }
.feature-icon-row { display: flex; gap: 1rem; margin-top: 1rem; }
.feature-icon-row .material-symbols-outlined { font-size: 2rem !important; }

/* ── Second bento row ── */
.bento-grid-second { margin-top: 1.25rem; }
.bento-purple { grid-column: span 3; background: linear-gradient(135deg, #7c3aed, #a855f7); }
.bento-purple h3 { color: #fff; }
.bento-purple p { color: rgba(255,255,255,0.85); }
.bento-green { grid-column: span 3; background: linear-gradient(135deg, #059669, #34d399); }
.bento-green h3 { color: #fff; }
.bento-green p { color: rgba(255,255,255,0.85); }
.bento-orange { grid-column: span 3; background: linear-gradient(135deg, #ea580c, #fb923c); }
.bento-orange h3 { color: #fff; }
.bento-orange p { color: rgba(255,255,255,0.85); }
.bento-grid-second .bento-light { grid-column: span 3; }
.bento-purple .feature-icon-circle,
.bento-green .feature-icon-circle,
.bento-orange .feature-icon-circle {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.chip-soon {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  vertical-align: middle;
  margin-left: 0.5rem;
}


/* ── How it Works ── */
.how-it-works { padding: 5rem 0; position: relative; overflow: hidden; }
.steps { display: flex; flex-direction: column; gap: 2.5rem; }
.step { display: flex; align-items: center; gap: 2rem; }
.step-reverse { flex-direction: row-reverse; }
.step-number {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.step-primary { background: #1a2b48; color: #fff; box-shadow: 0 4px 0 #0a1324; }
.step-secondary { background: #fcd400; color: #6e5c00; box-shadow: 0 4px 0 #544600; }
.step-tertiary { background: #006838; color: #fff; box-shadow: 0 4px 0 #004d28; }
.step-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,31,39,0.06);
}
.step-card-left { border-left: 6px solid #1a2b48; }
.step-card-right { border-right: 6px solid #fcd400; }
.step-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.step-card p { color: #5d3f3c; }

/* ── Testimonials ── */
.testimonials { padding: 5rem 0; background: #d2f4ff; }
.testimonials h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 3rem;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,31,39,0.06);
}
.testimonial-featured { border: 2px solid #fcd400; transform: scale(1.04); }
.quote-icon {
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #705d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.testimonial-card p { color: #5d3f3c; font-style: italic; margin: 1.5rem 0 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #1a2b48;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.75rem; color: #5d3f3c; }


/* ── Pricing ── */
.pricing { padding: 5rem 0; background: #f1fbff; }
.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: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-row { display: flex; align-items: center; gap: 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-brand p { font-size: 0.8rem; color: #0c4a6e; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { text-decoration: none; font-size: 0.875rem; color: #0369a1; transition: color 0.2s; }
.footer-links a:hover { color: #1a2b48; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c4a6e;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.social-btn:hover { transform: scale(1.1); }

/* ── 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; }
  .bento-large, .bento-yellow, .bento-dark, .bento-light,
  .bento-purple, .bento-green, .bento-orange { grid-column: span 12; }
  .bento-grid-second .bento-light { grid-column: span 12; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
  .nav-links { display: none; }
  .step, .step-reverse { flex-direction: column; text-align: center; }
  .step-card-left, .step-card-right { border-left: none; border-right: none; border-top: 6px solid #1a2b48; }
}
