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

a {
  text-decoration: none;
  color: inherit;
  padding: 4px 2px;
  font-size: inherit;
}

:root {
  --primary: #0019D1;
  --primary-dark: #000e66;
  --bg-dark: #0d0d0d;
  --bg-menu: #191919;
  --text-light: #fff;
  --text-muted: #ccc;
  --transition: 0.3s ease;
}

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 {
    grid-template-columns: auto auto;
  }

  .logo {
    justify-self: start;
  }

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

  .buttons {
    display: none;
  }

  .menu ul.active {
    display: flex;
  }

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

  .menu-toggle {
    display: block;
  }

  .buttons {
    display: none;
  }

  .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;
}
.conteudo_limpeza {
  max-width: 1100px;
  margin: 50px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  line-height: 1.7;
}

.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;
}

.conteudo_limpeza h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0019D1;
}

.conteudo_limpeza p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}

.conteudo_limpeza strong {
  color: #000;
}

.cta_limpeza {
  margin-top: 25px;
}

.btn_limpeza {
  display: inline-block;
  background: linear-gradient(90deg, #0019D1, #020E66);
  color: #fff;
  padding: 12px 26px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn_limpeza:hover {
  background: #000e66;
  transform: translateY(-2px);
}

.como_comprar {
  padding: 40px 20px;
  text-align: center;
  background: #f4f6ff;
}

.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.passo {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn_destaque {
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.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;
}

.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);
}

.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;
}

.cta_final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0019D1, #020E66);
  display: flex;
  justify-content: center;
}

.cta_box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 30px;
  max-width: 700px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta_box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta_box p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #dcdcff;
}

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

#btn_whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#btn_whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
}

.btn_secundario {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

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

.cta_info {
  font-size: 14px;
  color: #ccc;
}

footer {
  margin-top: 50px;
}

.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);
}

.footer_content h3 {
  margin-bottom: 12px;
  font-size: 16px;
  padding-bottom: 6px;
  color: var(--text-light);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer_content ul {
  padding: 0;
}

.footer_content li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.footer_content li:hover {
  color: var(--text-light);
  transform: translateX(3px);
}

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

.logo_footer img {
  width: 160px;
}

.localizacao a {
  color: var(--text-muted);
  transition: var(--transition);
}

.localizacao a:hover {
  color: var(--text-light);
}

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

@media (max-width: 768px) {

  .header_top {
    grid-template-columns: auto auto;
  }

  .logo {
    justify-self: start;
  }

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

  .buttons {
    display: none;
  }

  .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;
    display: none;
  }

  .submenu.active {
    display: block;
  }

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

  .logo_footer {
    border-right: none;
    padding-right: 0;
  }
}

.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);
}