@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ====
   SOFT POWER INFORMÁTICA - Premium Theme
   ==== */

/*  VARIÁVEIS  */
:root {
  --primary: #FF6B00;
  --primary-light: #ff8c3a;
  --primary-dark: #cc5500;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --border: #2a2a2a;
  --success: #00c853;
  --warning: #ffc107;
  --danger: #ff5252;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 30px rgba(255, 107, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
}

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

/*  TIPOGRAFIA  */
h1, h2, h3, h4 {
  font-family: 'Michroma', 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/*  LAYOUT  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/*  HEADER  */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Michroma', 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/*  MOBILE MENU  */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/*  BOTÕES  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/*  HERO  */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 20% 15%, rgba(224,122,31,.20), transparent 36%),
    radial-gradient(circle at 82% 72%, rgba(11,78,91,.14), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(11, 78, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 78, 91, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat-item h3 {
  color: var(--primary);
  font-size: 2rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/*  CARDS  */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  min-width: 0;
}

.card h3,
.card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/*  SERVIÇOS  */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/*  DIFERENCIAIS  */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.differential-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.differential-content {
  flex: 1;
  min-width: 0;
}

.differential-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.differential-content h3 {
  margin-bottom: 10px;
  overflow-wrap: normal;
  word-break: normal;
}

.differential-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/*  ANÚNCIOS  */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 25px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
}

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

.ad-card {
  position: relative;
  overflow: hidden;
}

.ad-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ad-badge.offer {
  background: var(--danger);
  color: white;
}

.ad-badge.top {
  background: var(--primary);
  color: white;
}

.ad-badge.new {
  background: var(--success);
  color: white;
}

.ad-badge.demo {
  background: var(--warning);
  color: #000;
}

.ad-image {
  width: 100%;
  height: 180px;
  background: var(--bg-card-hover);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.ad-card h3 {
  margin-bottom: 10px;
}

.ad-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.ad-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.ad-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
}

/*  DEPOIMENTOS  */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  position: relative;
}

.testimonial-stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/*  LOCALIZAÇÃO  */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .location-section {
    grid-template-columns: 1fr;
  }
}

.location-info h2 {
  margin-bottom: 20px;
}

.location-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.location-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/*  ORÇAMENTO  */
.budget-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/*  FAQ  */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

/*  CONTATO  */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-card {
  text-align: center;
  padding: 40px 25px;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-muted);
}

.contact-card a {
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--primary);
}

/*  FOOTER  */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Michroma', 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 8px 0;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/*  WHATSAPP FLOAT  */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/*  PAGE HEADER  */
.page-header {
  padding: 150px 0 80px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(224,122,31,.18) 0%, transparent 70%),
    #f7f9fb;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/*  DEMO NOTICE  */
.demo-notice {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-sm);
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--warning);
  font-size: 0.9rem;
}

/*  ANIMATIONS  */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 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; }

/*  RESPONSIVE  */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }
}

/*  AJUSTES FINAIS DE IDENTIDADE  */
:root {
  --bg: #f3f5f7;
  --text: #161a1d;
  --card: #ffffff;
  --muted: #5f6770;
  --accent: #ff6b00;
  --matrix-accent: #19a35b;
  --bg-dark: #f3f5f7;
  --bg-card: #ffffff;
  --bg-card-hover: #fbfcfd;
  --text-light: #161a1d;
  --text-muted: #5f6770;
  --border: #d9dfe6;
}

body {
  background-color: #04160f;
  background-image:
    linear-gradient(160deg, rgba(4, 22, 15, 0.22), rgba(4, 22, 15, 0.32)),
    linear-gradient(160deg, rgba(10, 45, 31, 0.10), rgba(6, 31, 21, 0.18)),
    url('../img/fundo.png');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  color: var(--text);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.20;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 107, 0, 0.18), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(255, 107, 0, 0.12), transparent 26%),
    repeating-linear-gradient(90deg, rgba(13, 33, 27, 0.13) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(13, 33, 27, 0.10) 0 1px, transparent 1px 40px);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  opacity: 0.10;
  background: url('../img/fundo.png') center / cover no-repeat;
  mix-blend-mode: multiply;

}

body > * {
  position: relative;
  z-index: 1;
}

.header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  padding-top: 12px;
  height: var(--header-height);
}

.header-inner,
.nav-container {
  min-height: calc(var(--header-height) - 16px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav {
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  padding: 0;
  gap: 12px;
}

.nav-link {
  color: #f3f7f5;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 16, 18, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card,
.shop-card,
.cart-table {
  box-shadow: 0 4px 14px rgba(16, 20, 24, 0.07);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(2px);
}

.logo {
  margin-left: 0 !important;
}

.logo img,
.logo-image {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-image {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero {
  background:
    radial-gradient(circle at 50% 56%, rgba(223, 232, 226, 0.32) 0%, rgba(223, 232, 226, 0.18) 34%, rgba(223, 232, 226, 0.06) 58%, transparent 74%),
    radial-gradient(circle at 20% 15%, rgba(255, 107, 0, 0.10), transparent 34%);
}

.hero::before {
  background:
    linear-gradient(rgba(21, 59, 45, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.45;
}

.hero-logo {
  filter: drop-shadow(0 10px 24px rgba(255, 107, 0, 0.15));
}

.hero-content {
  margin: 0 auto;
  text-align: center;
}

.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-buttons,
.hero-stats {
  justify-content: center;
}

.service-quote-cta {
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(16, 20, 24, 0.08);
}

.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 12px;
}

.promo-track { display: flex; transition: transform .4s ease; }
.promo-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.promo-media img { border-radius: 14px; width: 100%; max-height: 320px; object-fit: cover; }
.promo-seal { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255, 107, 0, 0.14); color: #b55208; font-weight: 600; }
.promo-slide h3 { color: #dee6eb; }
.promo-slide p,
#promo-description { color: #bfcbd3; }
.promo-nav { display: flex; justify-content: space-between; margin-top: 10px; }
.promo-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.promo-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #b4bcc5; }
.promo-dot.active { background: var(--primary); }

.ad-price,
.ad-price span {
  color: var(--primary);
}

@media (max-width: 768px) {
  body::before {
    background-position: center, 60% center;
  }

  .header {
    padding-top: 10px;
  }

  .header-inner,
  .nav-container {
    border-radius: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .menu-toggle span {
    background: var(--text);
  }

  .nav {
    top: calc(var(--header-height) + 8px);
    left: 20px;
    right: 20px;
    border-radius: 14px;
    border: 1px solid rgba(22, 26, 29, 0.12);
    background: rgba(248, 251, 255, 0.84);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(16, 20, 24, 0.08);
    padding: 20px;
    gap: 15px;
  }

  .nav-link {
    color: var(--text);
    background: transparent;
    border: 0;
    padding: 8px 0;
  }

  .logo img,
  .logo-image { height: 46px; }
  .promo-slide { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .logo img,
  .logo-image { height: 40px; }

  body {
    background-position: center, 58% center;
    background-attachment: scroll, scroll;
  }

  body::before {
    opacity: 0.12;
  }

  body::after {
    opacity: 0.07;
  }
}


.section,
.page-header,
.footer {
  background-color: rgba(243, 245, 247, 0.46);
}

section[style*="var(--bg-card)"] {
  background: rgba(243, 245, 247, 0.46) !important;
}

.is-whatsapp-only-hidden {
  display: none !important;
  pointer-events: none !important;
}

/*  AJUSTES FINAIS: TEMA CINZA + CONTRASTE + TIPOGRAFIA  */
:root {
  --logo-font: 'Montserrat', 'Inter', sans-serif;
  --bg-card: #e7eaee;
  --bg-card-hover: #eef1f4;
  --border: #c7ced6;
  --text: #161a1d;
  --text-light: #161a1d;
  --text-muted: #545d66;
}

h1, h2, h3, h4,
.section-title h2,
.hero h1,
.page-header h1 {
  font-family: var(--logo-font) !important;
}

.hero h1 {
  font-family: var(--logo-font) !important;
  font-weight: 700;
  letter-spacing: 0;
}

.card,
.shop-card,
.cart-table,
.promo-slider,
.service-quote-cta,
.faq-item,
.contact-card,
.map-container,
.form-input,
.form-select,

.form-textarea {

  background: rgba(231, 234, 238, 0.82);
  border-color: rgba(154, 164, 176, 0.5);
}

@media (min-width: 769px) {
  .header-inner,
  .nav-container {
    justify-content: center;
    gap: 18px;
  }

  .logo {
    margin-right: 6px;
  }

  .nav-link {
    background: transparent;
    border: 0;
    padding: 8px 2px;
    border-radius: 0;
    color: #f5f8f7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
  }
}
/*  AJUSTE FINAL: CONTAINERS ESCUROS TRANSLÚCIDOS + REMOVER PELÍCULA BRANCA  */
.section,
.page-header,
.footer,
section[style*="var(--bg-card)"] {
  background: transparent !important;
}

.card,
.shop-card,
.cart-table,
.promo-slider,
.service-quote-cta,
.faq-item,
.contact-card,
.map-container,
.form-input,
.form-select,
.form-textarea {
  background: rgba(25, 31, 38, 0.48) !important;
  border: 1px solid rgba(124, 138, 153, 0.35) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(5px);
}

.card p,
.card a,
.contact-card p,
.contact-card a,
.faq-answer p,
.location-info p,
.location-item,
.form-label,
.form-input,
.form-select,
.form-textarea,
.footer,
.footer p,
.footer a,
.footer-bottom,
.text-muted {
  color: rgba(232, 238, 245, 0.9) !important;
}

.section-title p,
.hero-subtitle {
  color: rgba(232, 238, 245, 0.86) !important;
}

.card h2,
.card h3,
.card h4,
.service-quote-cta h3,
.faq-question,
.contact-card h3,
.location-info h2,
.location-item,
.location-item a,
.stat-item p,
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(243, 247, 251, 0.96) !important;
}

@media (max-width: 768px) {
  .card,
  .shop-card,
  .cart-table,
  .promo-slider,
  .service-quote-cta,
  .faq-item,
  .contact-card,
  .map-container,
  .form-input,
  .form-select,
  .form-textarea {
    background: rgba(25, 31, 38, 0.56) !important;
    backdrop-filter: blur(4px);
  }
}

/* ===== HOTFIX MOBILE: fundo, logo navbar e menu sanduíche ===== */
.header .logo,
.header .logo img,
.header .logo-image {
  display: block;
  width: auto;
  height: clamp(52px, 5.2vw, 64px);
  max-height: 64px;
  object-fit: contain;
}

.header-inner {
  padding-inline: clamp(14px, 3vw, 24px);
}

@media (max-width: 768px) {
  body {
    background-size: cover, cover, 100% auto;
    background-position: center top, center top, center 0%;
    background-attachment: scroll, scroll, scroll;
  }

  body::after {
    display: none;
  }

  .header {
    padding-top: 8px;
  }

  .header .logo,
  .header .logo img,
  .header .logo-image {
    height: clamp(56px, 16vw, 64px);
    max-height: 64px;
  }

  .menu-toggle {
    padding: 12px;
  }

  .menu-toggle span {
    height: 3px;
    width: 26px;
    border-radius: 3px;
    background: var(--primary);
    box-shadow: 0 1px 6px rgba(255, 107, 0, 0.35);
  }
}

@media (max-width: 480px) {
  body {
    background-size: cover, cover, 120% auto;
    background-position: center top, center top, center 4%;
  }

  .header-inner {
    padding-inline: 12px;
  }

  .header .logo,
  .header .logo img,
  .header .logo-image {
    height: clamp(52px, 18vw, 60px);
    max-height: 60px;
  }
}

/*  HOTFIX RESPONSIVO FINAL - HOME DARK/MATRIX  */
.header .logo,
.header .logo img,
.header .logo-image {
  display: block;
  width: auto;
  height: clamp(44px, 4.4vw, 56px);
  max-height: 56px;
  object-fit: contain;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 22, 15, 0.62), rgba(4, 22, 15, 0.72)),
    radial-gradient(circle at 50% 90%, rgba(24, 163, 91, 0.22), transparent 58%),
    url('../img/fundo.png') center/cover no-repeat;
}

.hero::before {
  background:
    linear-gradient(rgba(22, 68, 51, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 68, 51, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.hero-logo {
  width: clamp(180px, 24vw, 300px);
}


.hero h1,
.hero-subtitle,
.stat-item p {
  color: #eef7f2 !important;
}

.promo-slide h3,
#promo-description {
  color: rgba(236, 243, 248, 0.96) !important;
}

.menu-toggle span {
  background: var(--primary) !important;
  height: 3px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding-top: 6px;
  }

  .header .logo,
  .header .logo img,
  .header .logo-image {
    height: clamp(38px, 12vw, 48px);
    max-height: 48px;
  }

  .menu-toggle {
    margin-right: 2px;
  }

  .nav {
    top: calc(var(--header-height) - 2px);
    left: 12px;
    right: 12px;
    background: rgba(8, 20, 16, 0.95);
    border: 1px solid rgba(255, 107, 0, 0.35);
  }

  .nav-link {
    color: #f4faf6;
  }

  body {
    background-size: cover, cover, cover;
    background-position: center top, center top, center top;
    background-attachment: scroll, scroll, scroll;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-logo {
    width: clamp(150px, 55vw, 240px);
  }
}

/*  AJUSTE GLOBAL DE FUNDO: MATRIZ MAIS CLARA + CAMADA TRANSLÚCIDA PROFISSIONAL  */
:root {
  --bg-overlay-light: rgba(238, 245, 242, 0.18);
  --bg-overlay-ambient: rgba(209, 230, 221, 0.14);
}

body {
  background-image:
    linear-gradient(160deg, rgba(4, 22, 15, 0.14), rgba(4, 22, 15, 0.26)),
    linear-gradient(160deg, rgba(10, 45, 31, 0.06), rgba(6, 31, 21, 0.13)),
    url('../img/fundo.png');
}

body::before {
  opacity: 0.14;
}

body::after {
  opacity: 0.26;
  background:
    linear-gradient(180deg, var(--bg-overlay-light), rgba(238, 245, 242, 0.10)),
    radial-gradient(circle at 50% 14%, var(--bg-overlay-ambient), transparent 55%),
    url('../img/fundo.png') center / cover no-repeat;
  mix-blend-mode: screen;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 22, 15, 0.42), rgba(4, 22, 15, 0.56)),
    radial-gradient(circle at 50% 90%, rgba(24, 163, 91, 0.24), transparent 58%),
    url('../img/fundo.png') center/cover no-repeat;
}

@media (max-width: 768px) {
  body::after {
    display: block;
    opacity: 0.24;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(4, 22, 15, 0.46), rgba(4, 22, 15, 0.62)),
      radial-gradient(circle at 50% 90%, rgba(24, 163, 91, 0.20), transparent 58%),
      url('../img/fundo.png') center/cover no-repeat;
  }
}

/*  AJUSTE FINAL V2: TOM VERDE MATRIX UNIFICADO EM TODO O SITE  */
:root {
  --matrix-surface: rgba(96, 189, 137, 0.30);
  --matrix-surface-strong: rgba(50, 115, 84, 0.56);
  --matrix-card: rgba(22, 63, 47, 0.80);
  --matrix-card-border: rgba(147, 230, 184, 0.24);
  --matrix-text: rgba(235, 247, 240, 0.96);
}

body {
  background-color: #03140f;
  background-image:
    linear-gradient(180deg, rgba(4, 24, 17, 0.40), rgba(4, 24, 17, 0.62)),
    linear-gradient(160deg, rgba(20, 97, 65, 0.16), rgba(8, 40, 28, 0.28)),
    url('../img/fundo.png');
}

body::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 187, 120, 0.16), transparent 33%),
    radial-gradient(circle at 84% 12%, rgba(53, 187, 120, 0.14), transparent 30%),
    repeating-linear-gradient(90deg, rgba(74, 170, 121, 0.10) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(74, 170, 121, 0.08) 0 1px, transparent 1px 44px);
}

body::after {
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(142, 228, 179, 0.20), rgba(123, 214, 162, 0.14)),
    radial-gradient(circle at 50% 14%, rgba(123, 214, 162, 0.18), transparent 55%),
    url('../img/fundo.png') center / cover no-repeat;
  mix-blend-mode: screen;
}

.section,
.page-header,
.footer,
section[style*="var(--bg-card)"] {
  background: var(--matrix-surface) !important;
  border-top: 1px solid rgba(168, 236, 197, 0.14);
  border-bottom: 1px solid rgba(168, 236, 197, 0.12);
}

.card,
.shop-card,
.cart-table,
.promo-slider,
.service-quote-cta,
.faq-item,
.contact-card,
.map-container,
.form-input,
.form-select,
.form-textarea {
  background: var(--matrix-card) !important;
  border: 1px solid var(--matrix-card-border) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.card p,
.card a,
.contact-card p,
.contact-card a,
.faq-answer p,
.location-info p,
.location-item,
.form-label,
.form-input,
.form-select,
.form-textarea,
.footer,
.footer p,
.footer a,
.footer-bottom,
.text-muted,
.section-title p,
.hero-subtitle,
.promo-slide p,
#promo-description {
  color: rgba(224, 241, 232, 0.92) !important;
}

.card h2,
.card h3,
.card h4,
.service-quote-cta h3,
.faq-question,
.contact-card h3,
.location-info h2,
.location-item a,
.stat-item p,
.hero h1,
.section-title h2,
.promo-slide h3 {
  color: var(--matrix-text) !important;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 22, 15, 0.36), rgba(4, 22, 15, 0.48)),
    radial-gradient(circle at 50% 90%, rgba(88, 193, 135, 0.30), transparent 60%),
    url('../img/fundo.png') center/cover no-repeat;
}

@media (max-width: 768px) {
  .section,
  .page-header,
  .footer,
  section[style*="var(--bg-card)"] {
    background: var(--matrix-surface-strong) !important;
  }

  body::after {
    display: block;
    opacity: 0.30;
  }
}

/*  AJUSTE FINAL V3: TOPO (HERO) COM MESMO TOM GLOBAL DO SITE  */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 24, 17, 0.22), rgba(5, 24, 17, 0.36)),
    radial-gradient(circle at 50% 82%, rgba(111, 217, 164, 0.24), transparent 62%),
    transparent !important;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(138, 224, 174, 0.20), rgba(66, 146, 108, 0.22)),
    radial-gradient(circle at 50% 18%, rgba(154, 236, 188, 0.16), transparent 58%);
  mix-blend-mode: screen;
}

.hero-content,
.hero-brand,
.hero-buttons,
.hero-stats {
  position: relative;
  z-index: 1;
}

.header {
  background: linear-gradient(180deg, rgba(4, 20, 14, 0.72), rgba(4, 20, 14, 0.38)) !important;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5, 24, 17, 0.28), rgba(5, 24, 17, 0.44)),
      radial-gradient(circle at 50% 84%, rgba(111, 217, 164, 0.20), transparent 60%),
      transparent !important;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(138, 224, 174, 0.18), rgba(66, 146, 108, 0.24)),
      radial-gradient(circle at 50% 22%, rgba(154, 236, 188, 0.14), transparent 58%);
  }
}

/*  AJUSTE GLOBAL DE FUNDO: MATRIZ MAIS CLARA + CAMADA TRANSLÚCIDA PROFISSIONAL  */
:root {
  --bg-overlay-light: rgba(238, 245, 242, 0.18);
  --bg-overlay-ambient: rgba(209, 230, 221, 0.14);
}

body {
  background-image:
    linear-gradient(160deg, rgba(4, 22, 15, 0.14), rgba(4, 22, 15, 0.26)),
    linear-gradient(160deg, rgba(10, 45, 31, 0.06), rgba(6, 31, 21, 0.13)),
    url('../img/fundo.png');
}

body::before {
  opacity: 0.14;
}

body::after {
  opacity: 0.26;
  background:
    linear-gradient(180deg, var(--bg-overlay-light), rgba(238, 245, 242, 0.10)),
    radial-gradient(circle at 50% 14%, var(--bg-overlay-ambient), transparent 55%),
    url('../img/fundo.png') center / cover no-repeat;
  mix-blend-mode: screen;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 22, 15, 0.42), rgba(4, 22, 15, 0.56)),
    radial-gradient(circle at 50% 90%, rgba(24, 163, 91, 0.24), transparent 58%),
    url('../img/fundo.png') center/cover no-repeat;
}

@media (max-width: 768px) {
  body::after {
    display: block;
    opacity: 0.24;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(4, 22, 15, 0.46), rgba(4, 22, 15, 0.62)),
      radial-gradient(circle at 50% 90%, rgba(24, 163, 91, 0.20), transparent 58%),
      url('../img/fundo.png') center/cover no-repeat;
  }
}

/*  AJUSTE FINAL V2: TOM VERDE MATRIX UNIFICADO EM TODO O SITE  */
:root {
  --matrix-surface: rgba(96, 189, 137, 0.30);
  --matrix-surface-strong: rgba(50, 115, 84, 0.56);
  --matrix-card: rgba(22, 63, 47, 0.80);
  --matrix-card-border: rgba(147, 230, 184, 0.24);
  --matrix-text: rgba(235, 247, 240, 0.96);
}

body {
  background-color: #03140f;
  background-image:
    linear-gradient(180deg, rgba(4, 24, 17, 0.40), rgba(4, 24, 17, 0.62)),
    linear-gradient(160deg, rgba(20, 97, 65, 0.16), rgba(8, 40, 28, 0.28)),
    url('../img/fundo.png');
}

body::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 187, 120, 0.16), transparent 33%),
    radial-gradient(circle at 84% 12%, rgba(53, 187, 120, 0.14), transparent 30%),
    repeating-linear-gradient(90deg, rgba(74, 170, 121, 0.10) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(74, 170, 121, 0.08) 0 1px, transparent 1px 44px);
}

body::after {
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(142, 228, 179, 0.20), rgba(123, 214, 162, 0.14)),
    radial-gradient(circle at 50% 14%, rgba(123, 214, 162, 0.18), transparent 55%),
    url('../img/fundo.png') center / cover no-repeat;
  mix-blend-mode: screen;
}

.section,
.page-header,
.footer,
section[style*="var(--bg-card)"] {
  background: var(--matrix-surface) !important;
  border-top: 1px solid rgba(168, 236, 197, 0.14);
  border-bottom: 1px solid rgba(168, 236, 197, 0.12);
}

.card,
.shop-card,
.cart-table,
.promo-slider,
.service-quote-cta,
.faq-item,
.contact-card,
.map-container,
.form-input,
.form-select,
.form-textarea {
  background: var(--matrix-card) !important;
  border: 1px solid var(--matrix-card-border) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.card p,
.card a,
.contact-card p,
.contact-card a,
.faq-answer p,
.location-info p,
.location-item,
.form-label,
.form-input,
.form-select,
.form-textarea,
.footer,
.footer p,
.footer a,
.footer-bottom,
.text-muted,
.section-title p,
.hero-subtitle,
.promo-slide p,
#promo-description {
  color: rgba(224, 241, 232, 0.92) !important;
}

.card h2,
.card h3,
.card h4,
.service-quote-cta h3,
.faq-question,
.contact-card h3,
.location-info h2,
.location-item a,
.stat-item p,
.hero h1,
.section-title h2,
.promo-slide h3 {
  color: var(--matrix-text) !important;
}

.hero {
  background:
    linear-gradient(180deg, rgba(4, 22, 15, 0.36), rgba(4, 22, 15, 0.48)),
    radial-gradient(circle at 50% 90%, rgba(88, 193, 135, 0.30), transparent 60%),
    url('../img/fundo.png') center/cover no-repeat;
}

@media (max-width: 768px) {
  .section,
  .page-header,
  .footer,
  section[style*="var(--bg-card)"] {
    background: var(--matrix-surface-strong) !important;
  }

  body::after {
    display: block;
    opacity: 0.30;
  }
}

/*  AJUSTE FINAL V3: TOPO (HERO) COM MESMO TOM GLOBAL DO SITE  */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 24, 17, 0.22), rgba(5, 24, 17, 0.36)),
    radial-gradient(circle at 50% 82%, rgba(111, 217, 164, 0.24), transparent 62%),
    transparent !important;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(138, 224, 174, 0.20), rgba(66, 146, 108, 0.22)),
    radial-gradient(circle at 50% 18%, rgba(154, 236, 188, 0.16), transparent 58%);
  mix-blend-mode: screen;
}

.hero-content,
.hero-brand,
.hero-buttons,
.hero-stats {
  position: relative;
  z-index: 1;
}

.header {
  background: linear-gradient(180deg, rgba(4, 20, 14, 0.72), rgba(4, 20, 14, 0.38)) !important;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5, 24, 17, 0.28), rgba(5, 24, 17, 0.44)),
      radial-gradient(circle at 50% 84%, rgba(111, 217, 164, 0.20), transparent 60%),
      transparent !important;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(138, 224, 174, 0.18), rgba(66, 146, 108, 0.24)),
      radial-gradient(circle at 50% 22%, rgba(154, 236, 188, 0.14), transparent 58%);
  }
}

/* === OVERRIDES FINAIS: FUNDO LIMPO, GRID VERDE E HEADER TRANSPARENTE === */
:root {
  --hero-grid-color: rgba(145, 255, 190, 0.16);
  --hero-text-strong: #f4f8f4;
  --hero-text-muted: rgba(228, 239, 231, 0.92);
  --hero-text-shadow: 0 10px 28px rgba(3, 12, 7, 0.24);
}

body::after,
.hero::after {
  display: none !important;
}

.section,
.page-header,
.footer,
section[style*="var(--bg-card)"] {
  background: transparent !important;
  border-top-color: rgba(145, 255, 190, 0.08) !important;
  border-bottom-color: rgba(145, 255, 190, 0.08) !important;
}

.header,
.header-inner,
.nav-container,
.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.header {
  border-bottom: 0 !important;
}

.nav-link {
  background: transparent !important;
  border: 0 !important;
  color: var(--hero-text-strong) !important;
  text-shadow: var(--hero-text-shadow);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.hero {
  background:
    linear-gradient(180deg, rgba(5, 19, 12, 0.18), rgba(5, 19, 12, 0.32)),
    url('../img/fundo.png') center/cover no-repeat !important;
}

.hero::before {
  background:
    linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(169, 255, 205, 0.16), transparent 56%);
  background-size: 44px 44px, 44px 44px, auto;
  opacity: 1 !important;
}

.hero h1,
.hero-subtitle,
.stat-item p,
.hero-brand,
.hero .btn-outline {
  text-shadow: var(--hero-text-shadow);
}

.hero h1,
.stat-item h3 {
  color: var(--hero-text-strong) !important;
}

.hero-subtitle,
.stat-item p {
  color: var(--hero-text-muted) !important;
}

.hero .btn-outline {
  color: var(--hero-text-strong);
  border-color: rgba(244, 248, 244, 0.65);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .nav {
    top: calc(var(--header-height) - 2px);
    left: 12px;
    right: 12px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(4, 18, 11, 0.88) !important;
    border: 1px solid rgba(145, 255, 190, 0.20) !important;
    box-shadow: 0 18px 40px rgba(1, 8, 5, 0.28) !important;
  }

  .nav-link {
    color: #f7fbf8 !important;
    text-shadow: none;
  }

  .menu-toggle span {
    background: #f4f8f4 !important;
    box-shadow: none !important;
  }

  .hero::before {
    background-size: 34px 34px, 34px 34px, auto;
  }
}
