/* ==========================================
   MovelTech Design System
   Colors: Deep Navy #0D1B2A | Teal #3D6F78 | Wood Bronze #B6844A | Light Gray #E6E9EC
   Fonts: Syne (headings) | Inter (body)
   ========================================== */

:root {
  --navy: #0D1B2A;
  --navy-light: #1a2d42;
  --teal: #3D6F78;
  --teal-light: #4d8a94;
  --bronze: #B6844A;
  --bronze-light: #c99a63;
  --gray-light: #E6E9EC;
  --gray-mid: #9aa3ac;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0a1520;
  --text-dark: #0D1B2A;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* === Colors === */
.text-navy { color: var(--navy) !important; }
.text-teal { color: var(--teal) !important; }
.text-bronze { color: var(--bronze) !important; }
.text-muted-light { color: #8a9bb0 !important; }
.bg-navy { background: var(--navy) !important; }
.bg-teal { background: var(--teal) !important; }
.bg-bronze { background: var(--bronze) !important; }
.bg-gray-light { background: var(--gray-light) !important; }

/* === Brand === */
.brand-movel {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.brand-tech {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}

/* === Buttons === */
.btn-primary-mt {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary-mt:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-teal-mt {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 32px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-teal-mt:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61,111,120,0.3);
}

.btn-outline-mt {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 32px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-mt:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-bronze-mt {
  background: var(--bronze);
  color: var(--white);
  border: 2px solid var(--bronze);
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 32px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-bronze-mt:hover {
  background: var(--bronze-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* === Navbar === */
.mt-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: var(--transition);
  padding: 12px 0;
}
.mt-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy) !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--teal) !important;
  background: rgba(61,111,120,0.08);
}

.dropdown-menu {
  border: 1px solid rgba(13,27,42,0.08);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(61,111,120,0.08);
  color: var(--teal);
}

/* === Hero === */
.hero-mt {
  background: linear-gradient(135deg, var(--navy) 0%, #162640 50%, #1a3a4a 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-mt::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,111,120,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-mt::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(182,132,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,111,120,0.2);
  border: 1px solid rgba(61,111,120,0.4);
  color: #7dd3dc;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--bronze);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card-header {
  background: rgba(0,0,0,0.2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card-body {
  padding: 16px;
}

.hero-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.05);
}

.hero-mock-row .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.hero-mock-row .value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

/* === Section titles === */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* === Cards === */
.card-mt {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
}

.card-mt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,111,120,0.2);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-icon.navy { background: rgba(13,27,42,0.08); color: var(--navy); }
.card-icon.teal { background: rgba(61,111,120,0.1); color: var(--teal); }
.card-icon.bronze { background: rgba(182,132,74,0.1); color: var(--bronze); }

/* === Solution Cards === */
.solution-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--bronze));
  opacity: 0;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solution-card:hover::before {
  opacity: 1;
}

/* === Plan Cards === */
.plan-card {
  background: var(--white);
  border: 2px solid rgba(13,27,42,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.plan-card.featured {
  border-color: var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.plan-price sup {
  font-size: 1rem;
  vertical-align: super;
  font-weight: 600;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  padding: 4px 0;
}

.plan-feature .check {
  color: var(--teal);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-feature .cross {
  color: #cdd3d9;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === Sections === */
.section-mt {
  padding: 80px 0;
}

.section-mt-sm {
  padding: 50px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.section-teal {
  background: var(--teal);
  color: var(--white);
}

.section-gray {
  background: var(--bg-light);
}

/* === Problem section === */
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13,27,42,0.06);
}

.problem-icon {
  width: 36px;
  height: 36px;
  background: rgba(182,132,74,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  flex-shrink: 0;
}

/* === Steps === */
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* === Forms === */
.form-mt .form-control,
.form-mt .form-select {
  border: 1.5px solid rgba(13,27,42,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-mt .form-control:focus,
.form-mt .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,111,120,0.12);
  outline: none;
}

.form-mt label {
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--navy);
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* === Footer === */
.footer-mt {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 3px 0;
  display: block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--bronze-light);
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
}

/* === Admin Layout === */
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}

.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.admin-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-nav {
  padding: 12px 12px;
}

.sidebar-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 12px 8px 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 2px;
}

.sidebar-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-link:hover, .sidebar-link.active {
  background: rgba(61,111,120,0.25);
  color: var(--white);
}

.sidebar-link.active {
  background: var(--teal);
  color: var(--white);
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  background: #f4f6f9;
}

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(13,27,42,0.08);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-content {
  padding: 28px 24px;
}

/* === Admin Cards === */
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid rgba(13,27,42,0.06);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* === Tables === */
.table-mt {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.06);
}

.table-mt table {
  margin: 0;
}

.table-mt thead th {
  background: var(--bg-light);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(13,27,42,0.08);
  padding: 12px 16px;
}

.table-mt tbody td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(13,27,42,0.04);
  vertical-align: middle;
}

.table-mt tbody tr:last-child td {
  border-bottom: none;
}

.table-mt tbody tr:hover td {
  background: rgba(61,111,120,0.03);
}

/* === Breadcrumb === */
.breadcrumb-mt {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.breadcrumb-mt .breadcrumb-item a {
  color: var(--teal);
  text-decoration: none;
}

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a4a 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(182,132,74,0.15), transparent);
}

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #162640 100%);
  padding: 100px 0 60px;
  color: var(--white);
}

/* === Misc === */
.divider-bronze {
  width: 48px;
  height: 3px;
  background: var(--bronze);
  border-radius: 2px;
  margin: 16px 0;
}

/* === Mobile === */
@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
  .hero-mt {
    padding: 100px 0 60px;
  }
  .plan-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .section-mt { padding: 50px 0; }
  .cta-banner { padding: 36px 24px; }
  .hero-stats { gap: 20px; }
}
