@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, input, textarea, button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

.banner {
  color: #ffffff;
  background-image: url(/images/bg-banner-mgp.jpeg?64c55864b3231332c2cdbc0aaaee2582);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
  background-position-y: top;
  height: clamp(25rem, 50vw, 39rem);
}
.banner h2, .banner span {
  text-shadow: 3px 2px 3px #07174A;
}
.banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
}
.banner span {
  font-size: 2rem;
  font-weight: 400;
}

.toast {
  box-shadow: none !important;
}

#toast-container .toast-message, #toast-container .toast-title {
  font-size: 0.875rem;
}

a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.alert-success {
  font-size: 1rem;
}

nav {
  background: linear-gradient(270deg, rgba(7, 23, 74, 0.7) 26.81%, rgba(0, 0, 0, 0.7) 97.15%);
  z-index: 2;
  position: absolute !important;
}
nav .navbar-wrapper {
  gap: 5rem;
}
nav .navbar-brand img {
  width: auto;
  height: 5.875rem;
}
nav .navbar-toggler {
  font-size: 1.25rem;
}
nav .navbar-collapse {
  flex-grow: inherit;
  z-index: 1;
}
nav .mynav .nav-link:focus {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
nav .mynav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  z-index: 0;
}
nav .mynav li a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
nav .mynav a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #D9D9D9;
  white-space: nowrap;
  padding: 0.75rem;
}
nav .mynav a:hover {
  color: #ffffff;
}
nav .mynav li.active, nav .mynav li.active-route a {
  color: #ffffff !important;
}
nav .target {
  position: absolute;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-out;
  pointer-events: none;
  z-index: -1;
}

footer {
  background: #434343;
  color: #ffffff;
  padding: 6rem 0 3rem 0;
  font-size: 1rem;
}
footer .brand img {
  width: 100%;
  max-width: 12rem;
}
footer .offices-wrapper h4 {
  font-weight: 800;
}
footer .offices-wrapper i {
  font-size: 1.5rem;
}
footer .offices-wrapper .telephone, footer .offices-wrapper .whatsapp {
  line-height: 2.2rem;
}
footer .nav-footer .menu li {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.75rem;
}
footer .nav-footer .menu a {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
footer .nav-footer .menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #D9D9D9;
  transition: width 0.2s ease-in;
}
footer .nav-footer .menu a:hover::after {
  width: 100%;
}
footer .nav-footer .redes img {
  height: 3.75rem;
  transition: all 0.3s;
}
footer .nav-footer .redes img:hover {
  filter: drop-shadow(0px 0px 2px #000000);
}
footer .all-rights {
  font-size: 0.875rem;
  font-weight: 300;
}

#whatsapp-icon {
  bottom: 5rem;
  padding-top: 0.6rem;
  position: fixed;
  right: 2rem;
  text-align: center;
  z-index: 999;
  width: clamp(3.5rem, 5vw, 4rem);
  height: clamp(3.5rem, 5vw, 4rem);
}
#whatsapp-icon img {
  width: 100%;
}
#whatsapp-icon strong {
  animation: pulse 1.2s infinite;
  background-color: #FF0A62;
  border: 1px solid red;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(1rem, 5vw, 1.25rem);
  height: clamp(1rem, 5vw, 1.25rem);
}
@keyframes pulse {
  0% {
    scale: 1;
  }
  90% {
    scale: 1.3;
  }
  100% {
    scale: 1;
  }
}

.form-wrapper {
  background-image: url(/images/bg-contact-mgp.jpg?fc29bc352af15d2186cc41fbf0b81197);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
}
.form-wrapper .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.form-wrapper .title {
  margin-bottom: 2.25rem;
}
.form-wrapper .title h2, .form-wrapper .title p {
  color: #07174A;
}
.form-wrapper .title h2 {
  font-size: 4rem;
  font-weight: 700;
}
.form-wrapper .title p {
  font-size: 1.25rem;
  line-height: 1.6rem;
  font-weight: 500;
}
.form-wrapper form input, .form-wrapper form textarea, .form-wrapper form select {
  padding: 1rem;
  border: 1px solid #07174A;
}
.form-wrapper form select option {
  color: red !important;
}
.form-wrapper form textarea {
  max-height: 20rem;
}
.form-wrapper form button {
  padding: 1rem 2.5rem;
  transition: all 0.2s;
  background-color: #07174A !important;
}
.form-wrapper form button:hover {
  filter: brightness(1.4) !important;
}
.form-wrapper form button:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-wrapper form button:disabled {
  filter: brightness(0.8);
  opacity: 0.9;
}

@media screen and (max-width: 1024px) {
  #whatsapp-icon {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  nav.navbar {
    position: initial !important;
    padding: 0.5rem 0 !important;
  }
  nav.navbar .navbar-wrapper {
    display: unset !important;
  }
  nav.navbar .navbar-wrapper .mynav {
    margin-bottom: 0.625rem;
  }
  nav.navbar .navbar-wrapper .mynav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  nav.navbar .navbar-wrapper .mynav .nav-item a {
    padding: 0.5rem 1rem;
  }
  nav.navbar .navbar-wrapper .mynav .nav-item.active-route {
    border-bottom: 2px solid #ffffff;
  }
  nav.navbar .navbar-brand img {
    width: 5rem;
  }
  nav.navbar .target {
    display: none !important;
  }
  #btn-back-to-top {
    right: 7.5rem;
  }
}
@media (max-width: 767px) {
  html {
    /* Cálculo para converter 14px em %: (14 * 100/16)= 87.5 */
    font-size: 87.5%;
  }
  footer {
    padding: 3rem 0 3rem 0;
  }
  footer .all-rights {
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  #btn-back-to-top {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  body {
    overflow-x: hidden !important;
  }
  .owl-carousel .owl-nav {
    display: none !important;
  }
  .team .advocate-card {
    width: initial;
  }
  .activity-areas-content h3 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (max-width: 425px) {
  .team .advocate-card {
    width: 80%;
  }
}
