/* ENTERPRISE B2B DESIGN SYSTEM (INPLACE) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --green-main: #98BA4D;
  --green-dark: #3A4D17;
  
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  
  --border-color: #E2E8F0;
  
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-green { color: var(--green-main); }
.text-center { text-align: center; }

/* UTILS / ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform var(--spring); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; justify-content: center; align-items: center;
  background: var(--green-main); color: #fff;
  font-weight: 700; padding: 14px 28px; border-radius: 6px;
  transition: all 0.2s ease; border: 1px solid transparent;
}
.btn-primary:hover { background: #88A942; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(152,186,77,0.3); }

.btn-secondary {
  display: inline-flex; justify-content: center; align-items: center;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 600; padding: 14px 28px; border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-text { font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.btn-text:hover { color: var(--text-dark); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  transition: all 0.3s ease; padding: 24px 0;
}
.navbar.scrolled {
  padding: 16px 0; background: rgba(15,23,42,0.95); /* Dark Glass */
  backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-links { display: none; gap: 32px; font-weight: 600; color: rgba(255,255,255,0.8); }
.nav-links a:hover { color: #fff; }
.nav-actions { display: none; gap: 24px; align-items: center; }
@media(min-width: 768px){ .nav-links, .nav-actions { display: flex; } }

.btn-text { color: rgba(255,255,255,0.8); }
.btn-text:hover { color: #fff; }
/* Since the logo has white text and a green "i", keeping it on a dark navbar ensures it is always visible without filters! */


/* ENTERPRISE HERO (FULL VIDEO) */
.hero-enterprise {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.3) 100%); /* Lighter for better video visibility */
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 900px; padding: 0 24px; margin-top: 60px;
}
.badge-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(152,186,77,0.2); border: 1px solid rgba(152,186,77,0.4);
  color: var(--green-main); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; border-radius: 4px;
  margin-bottom: 32px;
}
.hero-title {
  color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-subtitle {
  color: #CBD5E1; font-size: 1.25rem; max-width: 700px;
  margin: 0 auto 48px; line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* SOCIAL PROOF */
.trust-bar { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border-color); }
.trust-text { text-align: center; font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 32px; letter-spacing: 1px; }
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 64px; align-items: center; opacity: 0.6; filter: grayscale(100%); }
.logos-grid img { height: 32px; }

/* MODULES (PO COPY) */
.modules-section { padding: 120px 0; background: var(--bg-page); }
.section-header { margin-bottom: 64px; max-width: 700px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--text-dark); line-height: 1.2; }
.section-header p { font-size: 1.15rem; color: var(--text-muted); }

.modules-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width: 768px){ .modules-grid { grid-template-columns: repeat(2, 1fr); } }

.module-card {
  background: var(--bg-surface); padding: 40px;
  border-radius: 8px; border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}
.module-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.05); }
.m-icon { width: 56px; height: 56px; background: rgba(152,186,77,0.1); color: var(--green-main); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 24px; }
.module-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.module-card p { color: var(--text-muted); font-size: 1.05rem; }

/* USE CASES */
.use-cases-section { padding: 120px 0; background: #fff; border-top: 1px solid var(--border-color); }
.cases-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width: 900px){ .cases-layout { grid-template-columns: repeat(3, 1fr); } }

.case-item { background: var(--bg-page); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); }
.case-img-box { width: 100%; height: 200px; overflow: hidden; }
.case-img-box img { width: 100%; height: 100%; object-fit: cover; }
.case-text { padding: 32px; }
.case-text h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.case-text p { color: var(--text-muted); }

/* PRICING WIDGET (DARK) */
.pricing-enterprise { padding: 120px 0; background: var(--bg-page); }
.pricing-card {
  background: #0F172A; border-radius: 16px; color: #fff;
  box-shadow: 0 0 0 1px rgba(152,186,77,0.3), 0 20px 60px rgba(15,23,42,0.6); overflow: hidden;
  position: relative;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-main) 0%, #10B981 100%);
}
.pricing-header { padding: 48px 48px 0; text-align: center; max-width: 700px; margin: 0 auto 48px; }
.pricing-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.pricing-header p { color: #94A3B8; font-size: 1.1rem; }

.pricing-body { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.1); }
@media(min-width: 900px){ .pricing-body { flex-direction: row; } }

.p-left { flex: 1; padding: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media(min-width: 900px){ .p-left { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); } }
.slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.slider-top label { color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.screen-counter { font-size: 3.5rem; font-weight: 800; color: var(--green-main); line-height: 1; }

.ent-slider { -webkit-appearance: none; width: 100%; height: 8px; background: #334155; border-radius: 4px; outline: none; }
.ent-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; background: #fff; border: 4px solid var(--green-main); border-radius: 50%; cursor: pointer; transition: transform 0.2s; }
.ent-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.slider-marks { display: flex; justify-content: space-between; margin-top: 12px; color: #64748B; font-weight: 600; font-size: 0.9rem; margin-bottom: 48px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 500; color: #CBD5E1; }
.icon-check { color: var(--green-main); font-weight: 900; }

.p-right { flex: 0.8; padding: 48px; display: flex; flex-direction: column; justify-content: center; background: rgba(0,0,0,0.2); }
.saving-label { align-self: flex-start; background: rgba(152,186,77,0.2); border: 1px solid rgba(152,186,77,0.4); color: var(--green-main); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; padding: 6px 16px; border-radius: 4px; margin-bottom: 24px; }
.total-box { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.total-box .currency { font-size: 1.5rem; color: #94A3B8; font-weight: 600; }
.total-box .amount { font-size: 4rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.total-box .period { color: #94A3B8; font-weight: 500; }
.unit-text { color: #64748B; margin-bottom: 32px; font-weight: 600; }



/* HARDWARE SECTION */
.hardware-section { padding: 80px 0; background: #fff; border-bottom: 1px solid var(--border-color); }
.hw-content { display: flex; flex-direction: column; gap: 40px; background: var(--bg-page); padding: 48px; border-radius: 16px; border: 1px solid var(--border-color); }
@media(min-width: 900px){ .hw-content { flex-direction: row; align-items: center; justify-content: space-between; } }
.hw-text { flex: 1; }
.hw-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.1; }
.hw-text p { color: var(--text-muted); font-size: 1.1rem; }
.hw-logos { flex: 1; display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.hw-badge { background: #fff; border: 1px solid var(--border-color); padding: 12px 24px; border-radius: 100px; font-weight: 700; color: var(--text-dark); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }

/* PRICING TIERS */
.pricing-tiers-section { padding: 120px 0; background: var(--bg-page); }
.tiers-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
@media(min-width: 900px){ .tiers-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }

.tier-card {
  background: #fff; border: 1px solid var(--border-color); border-radius: 16px;
  padding: 40px 32px; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.tier-highlight {
  background: #0F172A; color: #fff; border-color: #0F172A;
  box-shadow: 0 0 0 1px rgba(152,186,77,0.3), 0 20px 60px rgba(15,23,42,0.6);
  position: relative; padding: 48px 32px;
}
.tier-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-main) 0%, #10B981 100%);
  border-top-left-radius: 16px; border-top-right-radius: 16px;
}
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-main); color: #fff; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; letter-spacing: 1px;
}

.tier-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.tier-highlight h3 { color: #fff; }
.tier-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.tier-highlight .tier-desc { color: #94A3B8; }

.tier-price { margin-bottom: 32px; display: flex; align-items: baseline; gap: 4px; }
.tier-price .currency { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); }
.tier-highlight .tier-price .currency { color: #94A3B8; }
.tier-price .amount { font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.tier-price .period { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.tier-highlight .tier-price .period { color: #94A3B8; }

.tier-features { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; flex: 1; }
.tier-features li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.tier-highlight .tier-features li { color: #CBD5E1; }
.icon-check { color: var(--green-main); font-weight: 900; }

.tier-card .btn-secondary { border-color: var(--border-color); color: var(--text-dark); }
.tier-card .btn-secondary:hover { background: var(--bg-page); }
.tier-highlight .btn-primary { background: var(--green-main); border: none; }
.tier-highlight .btn-primary:hover { background: #88A942; }

/* REWRITE FOOTER TO DARK */
.footer-enterprise { background: #0F172A; padding: 60px 0 40px; border-top: none; color: #fff; }
.f-top { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
@media(min-width: 768px){ .f-top { flex-direction: row; justify-content: space-between; align-items: center; } }
.f-brand p { color: #94A3B8; font-size: 0.95rem; margin-top: 12px; }
.f-links { display: flex; gap: 24px; font-weight: 600; color: #94A3B8; }
.f-links a:hover { color: #fff; }
.f-bottom { text-align: center; color: #64748B; font-size: 0.9rem; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }

/* WORKFLOW SECTION */
.workflow-section { padding: 120px 0; background: #fff; border-top: 1px solid var(--border-color); }
.workflow-steps { display: flex; flex-direction: column; gap: 48px; align-items: center; max-width: 1000px; margin: 0 auto; }
@media(min-width: 768px){ 
  .workflow-steps { flex-direction: row; align-items: flex-start; justify-content: space-between; } 
}
.w-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.w-number { width: 64px; height: 64px; background: var(--bg-page); border: 2px solid var(--border-color); color: var(--green-main); font-size: 1.8rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 10px 20px rgba(0,0,0,0.02); }
.w-step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.w-step p { color: var(--text-muted); font-size: 1.05rem; }
.w-divider { display: none; }
@media(min-width: 768px){
  .w-divider { display: block; flex: 0.5; height: 2px; background: var(--border-color); margin-top: 32px; }
}

/* SHOWCASE (PRINTS DA PLATAFORMA) */
.showcase-section { padding: 120px 0; background: var(--bg-page); border-top: 1px solid var(--border-color); }
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 64px; }
@media(min-width: 900px){
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
}
.showcase-card {
  background: #fff; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.showcase-card:hover {
  transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.sc-img-wrapper {
  width: 100%; height: 220px; overflow: hidden; background: #F8FAFC; border-bottom: 1px solid var(--border-color);
}
.sc-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease;
}
.showcase-card:hover .sc-img-wrapper img {
  transform: scale(1.05);
}
.sc-info { padding: 24px; }
.sc-info h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.sc-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
