header {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  position: relative;
  width: 100%;
}
header nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}
header nav .logo {
  max-height: 50px;
}

#banner {
  display: flex;
  overflow-x: hidden;
  height: calc(100dvh - 82px);
}

.banner-img {
  position: absolute;
  top: 0;
  background-image: url("../img/bgtopo.webp");
  background-size: cover;
  background-position: top;
  height: 100dvh;
  width: 100%;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-content h1 {
  font-size: 4rem;
  text-align: center;
  line-height: 1;
}
.banner-content h2 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile {
    display: flex;
  }
  .mobile li {
    padding: 0.5rem;
  }
  .mobile li a {
    font-size: 1.8rem;
    transition: all 0.3s ease-in-out;
  }
  .mobile li a:hover {
    color: #E29906;
  }
}

.navlinks {
  display: block;
  padding-bottom: 0;
}
.navlinks li {
  padding-bottom: 0.4rem;
  display: flex;
}
.navlinks li a {
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.navlinks li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D37B0D;
  transition: all 0.3s ease-in-out;
}
.navlinks li a:hover {
  color: #E29906;
}
.navlinks li a:hover::after {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .navlinks {
    display: none;
  }
}

#solutions {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #F6F6F6;
}

section:not(#banner) {
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
  z-index: 3;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.box {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  border: solid 1px #FFC643;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.box p {
  margin: 1rem;
}
.box:hover {
  box-shadow: 2px 1px 15px rgba(0, 0, 0, 0.3);
}
.box .icon {
  transition: all 0.3s ease-in-out;
  height: 120px;
}

.btn-center {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seguradoras {
  display: grid;
  justify-content: center;
  align-items: center;
  /* grid max 200px */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  /* screen md and down, max width 100px */
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .seguradoras {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
.seguradoras img {
  max-width: 100%;
}

.out-left {
  position: absolute;
  background-color: #fff;
  top: -1px;
  left: -50%;
  width: 50%;
  border-top: solid 1px #FFC643;
  border-bottom: solid 1px #FFC643;
  height: calc(100% + 2px);
  z-index: 1;
}

.out-right {
  position: absolute;
  background-color: #fff;
  top: -1px;
  right: -50%;
  width: 50%;
  border-top: solid 1px #FFC643;
  border-bottom: solid 1px #FFC643;
  height: calc(100% + 2px);
  z-index: 1;
}

.out {
  padding: 2rem;
  position: relative;
  background-color: #fff;
  border: solid 1px #FFC643;
  border-radius: 5px;
  z-index: 3;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.input-group label {
  font-size: 1rem;
  margin-bottom: 0;
}
.input-group input {
  padding: 0.5rem;
  border-radius: 5px;
  border: solid 1px #FFC643;
  font-size: 1rem;
}

.box:hover {
  display: flex;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.box:hover.carga {
  background-image: url("../img/carga.webp");
}
.box:hover.patrimonio {
  background-image: url("../img/patrimonio.webp");
}
.box:hover.empresarial {
  background-image: url("../img/empresarial.webp");
}
.box:hover.consult {
  background-image: url("../img/consult.webp");
}
.box:hover.vida {
  background-image: url("../img/vida.webp");
}
.box:hover.saude {
  background-image: url("../img/saude.webp");
}
.box:hover .icon {
  filter: invert(100%);
}

.whatsapp-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}
.whatsapp-icon img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease-in-out;
}
.whatsapp-icon:hover img {
  transform: scale(1.2);
}

footer .container div {
  min-width: 260px;
}
footer .title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
footer .title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #D37B0D;
  margin: 0;
}
footer .logo-footer {
  max-width: 250px;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  text-align: center;
}
.copyright a {
  color: #03359A;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.copyright a:hover {
  font-weight: 600;
}

*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  width: 100dvw;
  line-height: 1.2;
  color: #141414;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #141414;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "League Spartan", sans-serif;
  font-weight: 400;
}

h3 {
  font-size: 1.8rem;
  padding-bottom: 0.8rem;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.title {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #D37B0D;
  margin: 0;
}

.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

ul {
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
}

section {
  background-color: #F6F6F6;
}

.text-orange {
  color: #D37B0D;
}

.text-yellow {
  color: #FFC643;
}

.text-white {
  color: #ffffff;
}

.text-blue {
  color: #03359A;
}

.text-center {
  text-align: center;
}

.text-xl {
  font-size: 1.3rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 2.8rem !important;
}

.line-0 {
  line-height: 0.8 !important;
}

.line-1 {
  line-height: 0.9 !important;
}

.btn {
  background-color: #D37B0D;
  color: #ffffff;
  padding: 0.4rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid #E29906;
}
.btn:hover {
  background-color: #03359A;
}

.block {
  display: block;
}

@media screen and (max-width: 768px) {
  .sm-none {
    display: none;
  }
}

.py-1 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pb-1 {
  padding-bottom: 0.75rem;
}

.px-3xl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.pt-2 {
  padding-top: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.flex {
  display: flex;
}

.gap-2 {
  gap: 2rem;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

p {
  margin-bottom: 1rem;
}

.flex-column {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.links:not(footer .links) {
  padding-top: 1.8rem;
}

.links a {
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.links a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #D37B0D;
  transition: all 0.3s ease-in-out;
}
.links a:hover {
  color: #03359A;
}
.links a:hover::after {
  width: 80px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.none {
  display: none !important;
}

.msg-success {
  background: #d4edda;
}
.msg-success p {
  color: #155724 !important;
}

.msg-error {
  background: #f8d7da;
}
.msg-error p {
  color: #721c24 !important;
}

.msg {
  max-width: 50rem;
  margin: 10px 0;
  padding: 1rem 0;
}
.msg p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1rem !important;
  line-height: 1.2rem;
  color: #141414;
}

.chat-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.chat-box.active {
  display: block;
}

.chat-box-header {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-box-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.chat-box-header h2 {
  font-size: 20px;
}

.chat-box-header p {
  font-size: 14px;
  line-height: 1;
}

.chat-box-body {
  padding: 1rem;
}

.chat-box-body p {
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1;
  color: #5d5759;
  padding-bottom: 0rem;
}

.chat-box-input {
  width: 100%;
  height: 40px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.chat-box-btn {
  width: 100%;
  height: 40px;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid #08680C;
  border-radius: 15px;
  background-color: #08680C;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.chat-box-btn:hover {
  border: 1px solid #03359A;
  background-color: #03359A;
  color: #fff;
}

.close-btn {
  align-self: flex-start;
  justify-self: self-end;
  color: #aaa;
  font-size: 1.2rem;
  cursor: pointer;
}
.close-btn:hover {
  color: #03359A;
}

.contact-btn {
  display: flex;
  margin-top: 3rem !important;
}
.contact-btn .btn {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .box {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .break {
    display: none;
  }
  .text-3xl {
    font-size: 1.8rem !important;
  }
  .text-2xl {
    font-size: 1.2rem !important;
  }
  h1 {
    font-size: 3rem !important;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */