body { font-family: 'Manrope', sans-serif; }
/* Fade-in animation para toda a página */
body {
  opacity: 0;
  transition: opacity 1s ease;
}
body.page-loaded {
  opacity: 1;
}
.btn-glow {
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-glow:hover {
  box-shadow: 0 0 16px 4px #1C9E20, 0 2px 8px 0 rgba(0,0,0,0.15);
  transform: scale(1.03);
}
.active-link {
  color: #fde047 !important;
}
.icon-header {
  transition: transform 0.2s;
}
.icon-header:hover {
  transform: scale(1.12);
}
.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: pulse 1.5s infinite;
}
.whatsapp-float:hover {
  box-shadow: 0 0 16px 4px #1C9E20;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #25d36688; }
  70% { box-shadow: 0 0 0 16px #25d36600; }
  100% { box-shadow: 0 0 0 0 #25d36600; }
}
/* Menu Mobile */
.mobile-menu {
  display: none;
}
.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
  .desktop-menu {
    display: none !important;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #000;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .mobile-nav.active {
    right: 0;
  }
  .mobile-nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
  }
  .mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  #inicio {
    position: relative;
    min-height: 520px;
    height: auto !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
    background: url('assets/hero-banner-mobile.avif') center center / cover no-repeat !important;
  }
  #inicio > div {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    margin-top: 132px;
  }
  section.bg-yellow-400 {
    min-height: 0 !important;
    height: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.bg-yellow-400 img {
    height: 48px !important;
    margin: 0 auto;
    display: block;
  }
  footer .flex.items-center.gap-2 {
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
  }
  footer .flex.items-center.gap-2:has(i[data-lucide="map-pin"]) {
    align-items: flex-start !important;
  }
  footer .flex.items-center.gap-2:has(i[data-lucide="map-pin"]) span {
    margin-top: 2px;
  }
  footer .flex.items-center.gap-2 span,
  footer .flex.items-center.gap-2 a,
  footer .flex.items-center.gap-2 i {
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  footer .flex.items-center.gap-2 span {
    margin-left: 4px;
  }
  .footer-localizacao {
    align-items: flex-start !important;
  }
  .footer-localizacao i {
    margin-top: 4px !important;
    align-self: flex-start !important;
  }
  .footer-localizacao span {
    margin-top: 0 !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
  }
  .logo-marcas-slider {
    height: 60px !important;
    width: 100vw !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .logo-track img {
    height: 36px !important;
    margin: 0 8px !important;
  }
  .footer-info-center {
    align-items: center !important;
    text-align: center !important;
  }
}
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  .desktop-menu {
    display: flex !important;
  }
}
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.logo-marcas-slider {
  overflow: hidden;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
}
.logo-track {
  display: flex;
  width: calc(200px * 10); /* ajuste conforme a quantidade de logos */
  animation: scroll-logos 18s linear infinite;
}
.logo-track img {
  height: 64px;
  width: auto;
  margin: 0 32px;
  object-fit: contain;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
} 