:root {
  --primary: #00f0a8;
  --primary-dark: #00bf85;
  --secondary: #0ea5e9;
  --accent: #ffb23f;
  --bg: #0a0b0d;
  --bg-alt: #111317;
  --ink: #f3f4f6;
  --ink-soft: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 40px rgba(0, 240, 168, 0.1);
  --radius: 16px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 157, 255, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 157, 255, 0.2);
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 20px rgba(0, 109, 186, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 109, 186, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(17, 24, 39, 0.15);
}

.btn-outline:hover {
  background: rgba(17, 24, 39, 0.03);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-blur {
  display: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-metrics span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

/* Hero Visual Showcase */
.hero-visual-showcase {
  position: relative;
  perspective: 1000px;
}

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius);
  z-index: 1;
}

.showcase-img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.glass-cube {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 157, 255, 0.15);
  z-index: 3;
  top: -30px;
  right: -30px;
  transform: rotate(-15deg);
}

.glass-cube.small {
  width: 80px;
  height: 80px;
  bottom: 40px;
  left: -40px;
  top: auto;
  right: auto;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 195, 137, 0.2), rgba(0, 157, 255, 0.1));
  transform: rotate(20deg);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(17, 19, 23, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.fc-icon {
  font-size: 1.5rem;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.9rem;
}

.floating-card span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-slow {
  animation: float 8s ease-in-out infinite;
}

.float-fast {
  animation: float 5s ease-in-out infinite reverse;
}

/* Marquee */
.marquee-band {
  background: var(--ink);
  color: white;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding: 0 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.marquee-track span::after {
  content: "•";
  position: absolute;
  right: -3px;
  color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: #001b0a;
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(0, 240, 168, 0.2);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

/* Search-focused content */
.seo-section {
  background: var(--bg);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.seo-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 28px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.seo-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

.seo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.seo-card p {
  color: var(--ink-soft);
}

/* Landing pages */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
}

.service-hero {
  min-height: auto;
  padding: 150px 0 70px;
}

.service-hero .hero-subtitle {
  max-width: 580px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-highlights span {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  color: var(--ink-soft);
}

.service-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rounded-image {
  border-radius: 24px;
  width: 100%;
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ink);
}

.about-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--ink-soft);
}

/* Contact / Quote */
.contact-card {
  background: linear-gradient(135deg, var(--ink) 0%, #1f2937 100%);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 157, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-weight: 600;
}

.contact-form-wrapper {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.clean-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
}

.clean-form input,
.clean-form select,
.clean-form textarea {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.2s;
  outline: none;
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 157, 255, 0.1);
}

.clean-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-copy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  width: 100%;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

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

/* Utilities & Animations */
.fade-up-element {
  opacity: 1;
  transform: none;
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container,
  .about-wrapper,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-section {
    padding: 140px 0 60px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-metrics {
    justify-content: center;
  }
  
  .contact-card {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-metrics {
    flex-wrap: wrap;
  }
}

/* Products Modal */
.products-modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
  opacity: 0; transition: opacity 300ms ease;
  pointer-events: none;
}
.products-modal-overlay.active { opacity: 1; pointer-events: all; }
.products-modal-overlay.closing { opacity: 0; pointer-events: none; }

.products-modal-container {
  width: 100%; max-width: 900px;
  background: var(--bg); border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  transform: translateY(30px) scale(0.97);
  transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
  margin: auto; border: 1px solid rgba(255,255,255,0.8);
}
.products-modal-overlay.active .products-modal-container { transform: translateY(0) scale(1); }
.products-modal-overlay.closing .products-modal-container { transform: translateY(30px) scale(0.97); }

.products-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  border-radius: 24px 24px 0 0;
}
.products-modal-header h2 { font-size: 1.8rem; font-weight: 800; margin-top: 8px; }
.products-modal-header p { color: var(--ink-soft); font-size: 1rem; margin-top: 4px; }

.products-modal-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: 1.2rem; cursor: pointer; display: grid; place-items: center;
  color: var(--ink-soft); transition: all 0.2s ease;
}
.products-modal-close:hover { background: #ef4444; color: #fff; border-color: #ef4444; transform: rotate(90deg); }

.products-modal-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; padding: 40px; background: var(--bg); border-radius: 0 0 24px 24px;
}

.modal-product-card {
  background: white; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.modal-product-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }

.modal-product-img {
  height: 200px; overflow: hidden;
  background: var(--bg-alt);
  display: grid; place-items: center;
}
.modal-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.modal-product-card:hover .modal-product-img img { transform: scale(1.05); }

.modal-product-body { padding: 24px; }
.modal-product-body h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.modal-product-body p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; }

.modal-product-colors { display: flex; gap: 6px; margin-bottom: 16px; }
.modal-product-colors span { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border); box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }

@media (max-width: 768px) {
  .products-modal-overlay { padding: 16px; }
  .products-modal-container { margin: 0; }
  .products-modal-header { padding: 24px; }
  .products-modal-header h2 { font-size: 1.4rem; }
  .products-modal-grid { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

/* Bottom Navigation Bar for Mobile */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(17, 19, 23, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-sizing: border-box;
  }
  
  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    gap: 0.2rem;
    flex: 1;
    height: 100%;
    transition: color 0.15s;
  }
  
  .mobile-bottom-nav .nav-item:active {
    opacity: 0.7;
  }
  
  .mobile-bottom-nav .nav-item.active {
    color: var(--primary);
  }
  
  .mobile-bottom-nav .nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
  }
  
  /* Ajuste de Espaçamento do Rodapé */
  body {
    padding-bottom: 70px !important;
  }
  
  /* Ocultar elementos redundantes de menu superior */
  .mobile-menu-btn,
  .nav-actions,
  .whatsapp-float {
    display: none !important; /* Oculta float do WhatsApp para não colidir com o bottom nav */
  }

  /* Cabeçalho Minimalista Tipo App */
  .nav-wrapper {
    height: 56px !important;
    justify-content: center !important;
  }
}
