* {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background: rgba(0, 0, 0, 0), rgba(0, 0, 0, 0);
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: var(--text-light);
}

html, body {
  height: 100%;
}

.background {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: relative;
  z-index: 1000;
}

.left-space {
  width: 150px;
}

.header_top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(90deg, #0019D1, #020E66);
  padding: 15px 30px;
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.header_top a {
  position: relative;
}

.header_top a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.header_top a:hover::after {
  width: 100%;
}

.header_top:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo {
  justify-self: center;
}

.logo img {
  width: 180px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo img:hover {
  transform: scale(1.03);
  opacity: 0.9;
  border-bottom: none;
}

.logo a:hover {
  border-bottom: none;
  background: transparent;
}

.logo a::after {
  background: transparent;
}

.buttons {
  justify-self: end;
  display: flex;
  align-items: center;
}

.buttons ul {
  display: flex;
  gap: 12px;
  list-style: none;
}

.button_header {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.button_header:hover {
  background: #fff;
}

.button_header:hover a {
  color: #0019D1;
}

.header_top a {
  color: #fff;
  text-decoration: none;
}

.menu {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.menu ul {
  display: flex;
  justify-content: center;
  background: #191919;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu>ul>li {
  position: relative;
  padding: 18px 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu>ul>li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #0019D1;
  transition: 0.3s;
  transform: translateX(-50%);
}

.menu>ul>li:hover::before {
  width: 60%;
}

.menu>ul>li:hover {
  background: rgba(0, 25, 209, 0.15);
}

.submenu {
  position: absolute;
  z-index: 9999;
  overflow: hidden;
  top: 110%;
  left: 0;
  min-width: 240px;
  padding: 10px 0;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.submenu li:hover {
  background: #0019D1;
  color: #fff;
  border-radius: 6px;
}

.submenu li {
  padding: 12px 20px;
  color: #ddd;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu>ul>li:hover>.submenu {
  border-top: 1px solid #0019D1;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  text-align: center;
}

.menu li:hover .submenu {
  display: block;
}

.menu>ul>li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 30px;
  transition: 0.3s;
  color: white;
  cursor: pointer;
  justify-self: start;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.submenu.active {
  display: block;
}

@media (min-width: 769px) {
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #191919;
    min-width: 180px;
  }

  .menu li:hover .submenu {
    display: block;
  }
}

@media (max-width: 768px) {
  .header_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    position: relative;
  }

  .left-space {
    display: none;
  }

  .logo {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo img {
    width: 160px;
  }

  .buttons {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .buttons ul {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .menu-toggle {
    position: static;
    order: 3;
    margin-top: 5px;
    font-size: 28px;
  }


  .menu-toggle {
    justify-self: end;
  }

  .menu ul.active {
    display: flex;
  }

  .menu>ul>li {
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu ul.active {
    display: flex;
  }

  .menu>ul>li {
    width: 100%;
    text-align: center;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    pointer-events: auto;
  }

  .submenu.active {
    display: block;
  }
}

.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 40, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal_overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal_box {
  background: linear-gradient(135deg, #ffffff, #f4f6ff);
  padding: 35px 30px;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);

  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal_overlay.active .modal_box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal_box h2 {
  color: #0019D1;
  margin-bottom: 8px;
}

.modal_box p {
  color: #555;
  margin-bottom: 25px;
  font-size: 15px;
}

.modal_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal_links a {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  background: #f4f6ff;
  color: #0019D1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal_links a:hover {
  transform: translateY(-2px);
  background: #0019D1;
  color: #fff;
}

.btn_whatsapp {
  background: #25D366 !important;
  color: #fff !important;
}

.btn_whatsapp:hover {
  background: #1ebe5d !important;
}

.modal_close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s;
}

.modal_close:hover {
  background: #0019D1;
  color: #fff;
  transform: rotate(90deg);
}

.btn_form {
  background: #0019D1 !important;
  color: #fff !important;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn_form:hover {
  transform: translateY(-2px);
  background: #fff !important;
  color: #0019D1 !important;
}

.breadcrumb {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb a {
  color: #777;
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: #0019D1;
}

.breadcrumb span {
  color: #0019D1;
  font-weight: 500;
}

.breadcrumb a::after {
  content: "›";
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb a:last-of-type::after {
  content: "";
}

.produtos_v2 {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9ff;
}

.produtos_v2 h2 {
  font-size: 28px;
  color: #0019D1;
}

.subtitulo {
  color: #666;
  margin-bottom: 30px;
}

.grid_produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card_produto {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card_produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.img_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.img_box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0019D1;
  color: #fff;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
}

.card_produto h3 {
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  min-height: 40px;
}

.card_produto p {
  font-size: 13px;
  color: #777;
  margin-bottom: 16px;
}

.btn_produto {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: #f4f6ff;
  color: #0019D1;
  transition: 0.25s;
}

.btn_produto:hover {
  background: #0019D1;
  color: #fff;
}

.cta_subcategoria {
  margin-top: 60px;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.cta_content {
  background: #f4f6ff;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 700px;
  text-align: center;
}

.cta_content h2 {
  font-size: 24px;
  color: #0019D1;
  margin-bottom: 10px;
}

.cta_content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.cta_buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.btn_whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.25s;
}

.btn_whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.btn_secundario {
  border: 1px solid #0019D1;
  color: #0019D1;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.25s;
}

.btn_secundario:hover {
  background: #0019D1;
  color: #fff;
}

.cta_info {
  font-size: 13px;
  color: #777;
}

.ecommerce_future {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  background: #f4f6ff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
}

.ecommerce_content {
  max-width: 700px;
  text-align: center;
  background: linear-gradient(135deg, #0019D1, #020E66);
  color: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tag_novo {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.ecommerce_content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.ecommerce_content p {
  font-size: 16px;
  color: #dcdcff;
  margin-bottom: 20px;
}

.ecommerce_diferenciais {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 25px;
}

.btn_aviso {
  display: inline-block;
  background: #fff;
  color: #0019D1;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.25s;
}

.btn_aviso:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.footer_content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 50px 60px;
  background: linear-gradient(180deg, #020E66, #000a4d);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.footer_content div {
  min-width: 200px;
}

.footer_content li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer_content li:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer_content a {
  text-decoration: none;
  color: #ccc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer_content h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
  color: #fff;
}

.logo_footer {
  display: flex;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

.logo_footer img {
  width: 160px;
}

.localizacao a {
  text-decoration: none;
  color: #ccc;
  transition: all 0.25s ease;
}

.localizacao a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer_content ul {
  padding: 0;
}

.footer_content {
  gap: 40px;
}

.footer_bottom {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer_content {
    flex-direction: column;
    text-align: center;
  }

  .footer_content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo_footer {
    justify-content: center;
  }

  .logo_footer {
    border-right: none;
    padding-left: 20px;
  }
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-fixo img {
  width: 28px;
  height: 28px;
}

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

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: 0.3s;
}

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