/*
Theme Name: Wise Pirates
Theme URI:
Author: Wise Pirates
Author URI: https://wisepirates.com/
Description: Tailor-made by Wise Pirates
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
@font-face {
  font-family: Nexa Regular;
  src: url(assets/fonts/NexaRegular.woff2) format("woff2"),
}

@font-face {
  font-family: Nexa Bold;
  src: url(assets/fonts/Nexa-Bold.woff2) format("woff2"),
}

:root {
  --white: #FFF;
  --blue: #003C78;
  --light-blue: #008CDC;
  --vibrant-blue: #007BC1;
  --bg-light-blue: #FAFAFA;
  --dark: #4B4B4B;
  --container: 1280px;
  --regular: 'Nexa Regular', sans-serif;
  --bold: 'Nexa Bold', sans-serif;
  --thin: 'Nexa', sans-serif;
}

h1 {
  font-size: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -999px;
  top: -999px;
  font-size: var(--regular);
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  font-smooth: antialiased;
  -moz-osx-font-smoothing: greyscale;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: absolute;
  top: 53px;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  max-width: var(--container);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

header .inner {
  display: flex;
  align-items: start;
}

/* FOOTER */
footer {
  background-color: var(--bg-light-blue);
}

footer .footer-inner {
  max-width: var(--container);
  position: relative;
  margin: 0 auto;
  padding: 55px 0 103px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

footer .footer-inner .nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

footer .footer-inner>.nav>a {
  font-family: var(--regular);
  font-size: 14px;
  color: var(--vibrant-blue);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

footer .footer-inner>.legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .footer-inner>.legal>a {
  font-family: var(--regular);
  font-weight: 300;
  font-size: 16px;
  color: var(--blue);
  text-decoration: none;
}

footer .footer-inner>.socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px dashed #003C7829;
  padding-left: 33px;
  justify-content: center;
}

footer .footer-inner>.socials>h2 {
  font-family: var(--bold);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  margin: 0;
  text-transform: uppercase;
}

footer .footer-inner>.socials>.redes-flex {
  display: flex;
  gap: 16px;
  flex-direction: row;
}

footer .footer-inner>.back-to-top {
  position: absolute;
  top: -16px;
  right: 50px;
  cursor: pointer;
}

/* LP */
#banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 212px 0 73px;
  position: relative;
  background-color: rgba(0, 60, 120, 1);
}

#banner>svg {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 2vw;
  width: 100%;
  z-index: 0;
  max-width: 48vw;
  height: auto;
  opacity: 0.7;
  mix-blend-mode: normal;
}

#banner .banner-inner .col-left::after {
  content: "";
  background-image: url('https://dev.shoppingbuilders.com/alves-bandeira/wp-content/uploads/linhas.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 100%;
  max-width: 687px;
  height: 100%;
  max-height: 92px;
}

#banner .banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#banner .col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

#banner .col-left h2 {
  color: #CBE7F2;
  font-family: var(--bold);
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

#banner .col-left h3 {
  color: var(--white);
  font-family: var(--bold);
  font-size: 56px;
  margin: 0 0 30px;
  max-width: 560px;
}

#banner .col-left p {
  color: var(--white);
  font-family: var(--regular);
  font-size: 18px;
  max-width: 528px;
  margin: 0 0 50px;
}

#banner .col-right {
  max-width: 455px;
  width: 100%;
  z-index: 2;
}

#banner .col-right .form-container {
  background-color: var(--white);
  border-radius: 15px;
  padding: 35px 39px;
}

#banner .col-right .form-container h2 {
  color: var(--blue);
  font-family: var(--bold);
  font-size: 32px;
  margin: 0 0 16px;
}

#banner .banner-inner .col-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--regular);
}

#banner .banner-inner .col-right form .col-2 p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#banner .banner-inner .col-right form p {
  margin: 0;
}

#banner .banner-inner .col-right form input {
  background-color: var(--blue)!important;
  color: var(--white);
  border: none;
  border-radius: 37px;
  padding: 12px 11px 11px 11px;
  font-family: var(--thin);
  font-size: 16px;
  font-weight: 300;
}

#banner .banner-inner .col-right form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--bold);
  color: var(--blue);
  align-items: baseline;
}

#banner .banner-inner .col-right form input::placeholder {
  color: var(--white);
  font-family: var(--thin);
  font-weight: 300;
  opacity: 0.5;
}

#banner .banner-inner .col-right form input:focus-visible {
  outline: none;
}

#banner .banner-inner .col-right form .col-2 input {
  max-width: calc((0.5 * (455px - 78px)) - 30px);
}

#banner .banner-inner .col-right form>p input:not([type="checkbox"]) {
  width: calc(100% + 9px);
}

#banner .banner-inner .col-right form>p .wpcf7-acceptance label {
  flex-direction: row;
  gap: 4px;
}

#banner .banner-inner .col-right form>p .wpcf7-acceptance label .wpcf7-list-item-label {
  font-family: var(--thin);
  font-weight: 300;
  font-size: 13px;
  color: var(--dark);
  line-height: 22px;
}

#banner .banner-inner .col-right form .wpcf7-list-item {
  margin: 0;
}

#banner .banner-inner .col-right form .wpcf7-not-valid-tip {
  color: red;
  font-size: 10px;
  margin-top: 4px;
  font-family: var(--thin);
  font-weight: 100;
  line-height: 14px;
  text-align: center;
}

#banner .banner-inner .col-right form .wpcf7-submit {
  width: max-content!important;
  padding: 14px 24px!important;
  border: 1px solid var(--blue);
  transition: all 0.5s ease-out;
}

#banner .banner-inner .col-right form .wpcf7-submit:hover {
  background-color: var(--white)!important;
  color: var(--blue);
}

#estatisticas {
  max-width: var(--container);
  margin: 110px auto;
  display: flex;
  flex-direction: column;
  gap: 67px;
  align-items: center;
  justify-content: center;
}

#estatisticas h2 {
  font-family: var(--bold);
  font-size: 32px;
  color: var(--blue);
  margin: 0;
}

#estatisticas .estatisticas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

#estatisticas .estatisticas-grid .estatistica-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 41px;
}

#estatisticas .estatisticas-grid .estatistica-item img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

#estatisticas .estatisticas-grid .estatistica-item p {
  font-family: var(--bold);
  font-size: 18px;
  color: var(--blue);
  margin: 0;
  text-align: center;
}

#banner-cta {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--thin);
}

#banner-cta h2 {
  font-size: 32px;
  font-weight: 500;
}

#banner-cta p {
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0 35px;
}

#banner-cta a {
  font-size: 18px;
  font-weight: 300;
  border-radius: 54px;
  line-height: 22px;
  border: 1px solid var(--white);
  padding: 12px 23px 10px 53px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: all 0.5s ease-out;
}

#banner-cta a:hover {
  background-color: var(--white);
  color: var(--blue);
}

#banner-cta a>svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#banner-cta a>svg path {
  transition: all 0.5s ease-out;
}

#banner-cta a:hover>svg path {
  stroke: var(--blue);
}

#linha-informativa {
  max-width: var(--container);
  margin: 113px auto 131px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

#linha-informativa h2 {
  font-size: 32px;
  font-family: var(--bold);
  color: var(--blue);
  margin: 0 0 84px;
}

#linha-informativa .linha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

#linha-informativa .linha-grid .linha-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

#linha-informativa .linha-grid .linha-item img {
  object-fit: contain;
}

#linha-informativa .linha-grid .linha-item p {
  font-family: var(--bold);
  font-size: 17px;
  color: var(--blue);
  margin: 0;
  text-align: center;
  line-height: 24px;
}

#linha-informativa a {
  margin-top: 106px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 54px;
  line-height: 22px;
  border: 1px solid var(--blue);
  padding: 12px 23px 10px 53px;
  text-decoration: none;
  font-family: var(--thin);
  color: var(--blue);
  position: relative;
  transition: all 0.5s ease-out;
}

#linha-informativa a:hover {
  background-color: var(--blue);
  color: var(--white);
}

#linha-informativa a>svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#linha-informativa a>svg path {
  stroke: var(--blue);
  transition: all 0.5s ease-out;
}

#linha-informativa a:hover>svg path {
  stroke: var(--white);
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  padding: 0;
  margin: 16px 0 0;
}

#estatisticas .estatisticas-slide {
  display: none;
}

#linha-informativa .linha-slide {
  display: none;
}

@media (max-width: 1320px) {
  :root {
    --container: 95vw;
  }
}

@media (max-width: 999px) {
  :root {
    --container: calc(100vw - 48px);
  }

  header {
    top: 16px;
  }

  header .inner {
    justify-content: center;
  }

  header .inner img {
    width: 102px;
    height: 60px;
    object-fit: contain;
  }

  #banner {
    padding: 120px 0 410px;
    margin: 0 0 640px;
  }

  #banner .banner-inner {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  #banner .col-left {
    align-items: center;
    text-align: center;
    padding-bottom: 250px;
  }

  #banner .col-left h2 {
    font-size: 12px;
  }

  #banner .col-left h3 {
    font-size: 32px;
    line-height: 38px;
    margin: 13px 0 13px;
  }

  #banner .col-left p {
    font-size: 16px;
    line-height: 23px;
  }

  #banner .banner-inner .col-left::after {
    display: none;
  }

  #banner .col-right {
    max-width: calc(100vw - 48px);
    position: relative;
  }

  #banner .col-right .form-container {
    position: absolute;
    width: 100%;
    max-width: calc(100% - 48px);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    padding: 40px 16px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.32);
  }

  #banner .col-right .form-container h2 {
    color: var(--blue);
    font-family: var(--bold);
    font-size: 32px;
    line-height: 36px;
    margin: 0 0 16px;
    text-align: center;
  }

  #banner .banner-inner .col-right form .col-2 p {
    grid-template-columns: 1fr;
  }

  #banner .banner-inner .col-right form .col-2 input {
    max-width: calc(100vw);
    width: calc(100vw - 118px);
  }
  #banner .banner-inner .col-right form>p input:not([type="checkbox"]) {
    width: calc(100vw - 142px);
    padding: 12px 23px 10px 23px !important;
    font-size: 18px;
    line-height: 22px;
  }

  #estatisticas {
    margin: 110px 24px;
    gap: 55px;
  }

  #estatisticas.extend {
    padding-top: 100px;
  }

  #estatisticas h2 {
    font-size: 22px;
    line-height: 24px;
    text-align: center;
  }

  #estatisticas .estatisticas-slide {
    display: block;
    position: relative;
  }

  #estatisticas .estatisticas-grid {
    display: none;
  }

  #estatisticas .estatisticas-slide .estatistica-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  #estatisticas .estatisticas-slide .estatistica-item p {
    font-size: 18px;
    line-height: 24px;
    color: var(--blue);
    text-align: center;
    font-family: var(--thin);
    font-weight: 700;
    margin: 0;
  }

  #estatisticas .estatisticas-slide .glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  #estatisticas .estatisticas-slide .glide__arrows .glide__arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  #estatisticas .estatisticas-slide .glide__arrows .glide__arrow.glide__arrow--left {
    transform: scaleX(-1);
  }

  #estatisticas .estatisticas-slide .glide__bullets {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: -17px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  #estatisticas .estatisticas-slide .glide__bullets .glide__bullet {
    width: 8px;
    height: 8px;
    background-color: var(--blue);
    border: none;
    opacity: 0.3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease-out;
    padding: 0;
  }

  #estatisticas .estatisticas-slide .glide__bullets .glide__bullet.glide__bullet--active {
    opacity: 1;
  }

  #banner-cta {
    padding: 73px 0;
  }

  #banner-cta h2 {
    font-size: 24px;
    text-align: center;
    line-height: 27px;
    margin: 0;
  }

  #banner-cta p {
    font-size: 16px;
    font-weight: 300;
    margin: 14px 0 25px;
    line-height: 34px;
    text-align: center;
  }

  #banner-cta a {
    font-size: 18px;
    line-height: 22px;
  }

  #linha-informativa .linha-grid {
    display: none;
  }

  #linha-informativa .linha-slide {
    display: block;
    position: relative;
  }

  #linha-informativa .linha-slide .linha-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 31px;
  }

  #linha-informativa .linha-slide p {
    font-family: var(--bold);
    font-size: 16px;
    color: var(--blue);
    margin: 0;
    text-align: center;
    line-height: 24px;
  }

  #linha-informativa .linha-slide .glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  #linha-informativa .linha-slide .glide__arrows .glide__arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  #linha-informativa .linha-slide .glide__arrows .glide__arrow.glide__arrow--left {
    transform: scaleX(-1);
  }

  #linha-informativa .linha-slide .glide__bullets {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: -31px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  #linha-informativa .linha-slide .glide__bullets .glide__bullet {
    width: 8px;
    height: 8px;
    background-color: var(--vibrant-blue);
    border: none;
    opacity: 0.3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease-out;
    padding: 0;
  }

  #linha-informativa .linha-slide .glide__bullets .glide__bullet.glide__bullet--active {
    opacity: 1;
  }

  #linha-informativa h2 {
    font-size: 22px;
    margin: 0 0 42px;
    line-height: 24px;
    text-align: center;
  }

  #linha-informativa {
    margin: 62px auto;
  }

  footer .footer-inner {
    position: relative;
    padding: 52px 24px 107px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    justify-items: center;
    justify-content: start;
  }
  footer .footer-inner .nav,
  footer .footer-inner>.legal,
  footer .footer-inner>.socials {
    align-items: center;
  }

  footer .footer-inner>.socials {
    border-left: none;
    padding-left: 0;
  }

  #banner>svg {
    top: 46%;
    max-width: 96vw;
  }
}

@media (min-width: 500px) and (max-width: 999px) {
  #banner .banner-inner .col-right form .col-2 p {
    grid-template-columns: 1fr 1fr;
  }
  #banner .banner-inner .col-right form .col-2 input {
    width: calc(50vw - 78px);
    max-width: unset;
  }
  #banner .banner-inner .col-right form>p input:not([type="checkbox"]) {
    width: calc(100vw - 118px);
  }
  #banner .banner-inner .col-right form label {
    font-size: 14px;
    line-height: 28px;
  }
  #banner {
    padding: 120px 0 410px;
    margin: 0 0 300px;
  }
}