*{
    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 {
        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;
    }
}
.form_contato {
  max-width: 520px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.form_contato:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.form_contato h2 {
  text-align: center;
  color: #0019D1;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 24px;
}

.input_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  position: relative;
}

.input_group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #666;
  font-weight: 500;
}

.input_group input,
.input_group textarea {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.25s ease;
}

.input_group input:hover,
.input_group textarea:hover {
  border-color: #bbb;
}

.input_group input:focus,
.input_group textarea:focus {
  background: #fff;
  border-color: #0019D1;
  box-shadow: 0 0 0 3px rgba(0, 25, 209, 0.1);
  outline: none;
}

.input_group input:invalid:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

textarea {
  resize: none;
}

.btn_form_submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #0019D1, #020E66);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_form_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 25, 209, 0.3);
}

.btn_form_submit:active {
  transform: scale(0.98);
}

.form_contato {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.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 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);
}