header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  padding: 1rem 0;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

body {
  font-family: 'Questrial', sans-serif;
}

/* Classe aplicada quando der scroll */
header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

.logo {
  height: 40px;
}

.menu-btn {
  color: #fff;
}
 
.menu-btn:hover {
  opacity: 0.7;
  color: #fff !important;
}

/* Header content wrapper */
.header-content {
  min-height: 60px;
}

/* Desktop Menu Styles */
.desktop-menu {
  
}

.nav-menu {
  gap: 2rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
  opacity: 0.7;
}

/* Desktop Submenu Styles */
@media screen and (min-width: 768px) {
  .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 0 0 4px 4px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  }

  .nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .sub-menu li {
    margin: 0;
  }

  .nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu .sub-menu li:last-child a {
    border-bottom: none;
  }

  .nav-menu .sub-menu a:hover {
    background-color: rgba(199, 54, 38, 0.3);
    opacity: 1;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.close-menu:hover {
  opacity: 0.7;
}

.mobile-nav-menu {
  text-align: center;
}

.mobile-nav-menu li {
  margin-bottom: 2rem;
}

.mobile-nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.mobile-nav-menu a:hover {
  opacity: 0.7;
}

/* Mobile Submenu Styles */
.mobile-nav-menu .sub-menu {
  margin-top: 1rem;
  padding-left: 2rem;
}

.mobile-nav-menu .sub-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu .sub-menu a {
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

.mobile-nav-menu .sub-menu a:before {
  content: "— ";
  margin-right: 0.5rem;
  opacity: 0.5;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Footer Styles */
.footer-max {
  background-color: #475259;
  padding: 40px 0 0;
  color: #f5f5f5;
  font-family: 'Arial', sans-serif;
}

.footer-row {
  --footer-col-gap: 30px;
}

.footer-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-logo-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.footer-address-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.footer-icons-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.footer-logo {
  max-height: 50px;
  width: auto;
}

.footer-address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

.footer-inc {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.footer-red-line {
  height: 2px;
  width: 100px;
  background-color: #E30613;
  margin: 0 auto;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.footer-social-icon:hover {
  transform: scale(1.1);
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .logo {
    margin-left: 1rem;
  }

  .menu-btn {
    margin-right: 1rem;
  }
  
  .desktop-menu {
    display: none !important;
  }
  
  .footer-max {
    padding: 40px 0;
  }
  
  .footer-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .footer-red-line {
    margin-top: 10px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #8f959b;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #7a8085;
  color: #FFF;
  transform: scale(1.1);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
  }
  
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}
