*{
    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 {
        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;
    }
}
.middle{
    flex: 1;
}
.history {
  padding: 70px 80px;
  background: #ffffff;
  position: relative;
}

.history h2 {
  text-align: center;
  font-size: 32px;
  color: #0019D1;
  margin-bottom: 60px;
  position: relative;
}

.history h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0019D1;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Linha central */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0019D1, #020E66);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

/* Alternando lados */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Bolinha */
.timeline-dot {
  position: absolute;
  top: 35px;
  width: 18px;
  height: 18px;
  background: #0019D1;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 25, 209, 0.15);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

/* Card */
.timeline-content {
  background: #f5f7ff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.timeline-content h3 {
  color: #0019D1;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-content p {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

/* Efeito lateral */
.timeline-content::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 18px;
  height: 18px;
  background: #f5f7ff;
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -9px;
}

@media (max-width: 768px) {

  .history {
    padding: 50px 20px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-dot {
    left: 1px !important;
    right: auto !important;
  }

  .timeline-content::before {
    left: -9px !important;
    right: auto !important;
  }
}

.banner {
  position: relative;
}

.banner img {
  width: 100%;
  display: block;
}
.banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.banner_text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner_text p {
  font-size: 18px;
  margin-bottom: 15px;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.btn_principal {
  display: inline-block;
  margin-top: 15px;
  background: #0019D1;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn_principal:hover {
  background: #000e66;
}

.MVV {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 80px;
  background: #f5f7ff;
}

.MVV > div {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.MVV > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.MVV > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0019D1;
}

.MVV h2 {
  font-size: 22px;
  color: #0019D1;
  margin-bottom: 12px;
}

.MVV p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .MVV {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}
.about {
  padding: 60px 80px;
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tittle_about h2 {
  font-size: 28px;
  color: #0019D1;
  margin-bottom: 20px;
  position: relative;
}

.tittle_about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0019D1;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  text-align: center;
}

.nossa_pee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 80px;
  background: #f5f7ff;
}

.nossa_pee > div {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nossa_pee > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.nossa_pee > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0019D1;
}

.nossa_pee h2 {
  font-size: 22px;
  color: #0019D1;
  margin-bottom: 12px;
}

.nossa_pee p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.banner_mid {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 60px 0;
}

@media (max-width: 768px) {
  .nossa_pee {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

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