html{
  scroll-padding-top: 100px;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffffff;
}

a:hover {
  color: #a5abb1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--- BarraHome ---*/
nav{
    background: #044985;
    padding: 5px 40px;
    scroll-padding-top: 100px;
  }
  nav ul{
    padding-left: 10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  nav ul li{
    padding: 15px 0;
    cursor: pointer;
  }
  nav ul li.items{
    position: relative;
    width: auto;
    margin: 0 16px;
    text-align: center;
    order: 3;
  }
  nav ul li.items:after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 5px;
    height: 2px;
    width: 100%;
    background: #ffffff;
    opacity: 0;
    transition: all 0.2s linear;
  }
  nav ul li.items:hover:after{
    opacity: 1;
    bottom: 8px;
  }
  nav ul li.logo{
    flex: 1;
    color: white;
    font-size: 31px;
    margin: 0;    
    cursor: default;
    user-select: none;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }
  nav ul li a{
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: .4s;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  
  nav ul li:hover a{
    color: rgb(255, 255, 255);
  }
  nav ul li i{
    font-size: 23px;
  }
  nav ul li.btn{
    display: none;
  }
  nav ul li.btn.hide i:before{
    content: '\f00d';
  }
  nav ul li.logo a{
    color: white;
    font-size: 31px;
    text-decoration: none;
    transition: .4s;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  @media all and (max-width: 900px){
    nav{
      padding: 5px 10px;
    }
    nav ul li.items{
      width: 100%;
      display: none;
    }
    nav ul li.items.show{
      display: block;
    }
    nav ul li.btn{
      display: block;
    }
    nav ul li.items:hover{
      border-radius: 5px;
      box-shadow: inset 0 0 5px #ffffff,
                  inset 0 0 10px #ffffff;
    }
    nav ul li.items:hover:after{
      opacity: 0;
    }
    nav ul li.logo{
      
      
      font-size: 25px;
     
    }

    nav ul li.logo a{
      font-size: 25px;
      
    }
  }
  


/* SliderHero */
#hero {
  width: 100%;  
  position: relative;

  background-size: cover;
  position: relative;
  
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: -20px;

}




colorback
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Poppins", sans-serif;
}
#hero h1 img{
 max-width: 400px;
 min-width: 100px;
}


#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

#hero .btn-get-started:hover {
  background: #3194db;
}

#hero .icon-boxes {
  margin-top: 30px;
  margin-bottom: 30px;
}

#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(90, 90, 90, 0.45);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-decoration: none;
}

#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
  text-decoration: none;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title-blog {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title-blog h2 {
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
.section-p div{
 
 max-width: 100%;
  
}

.section-p p {
  
  text-align: justify;
  text-align-last: center;

  margin-bottom: 30px;
  font-size: 17px;
  
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {

  padding-top: 70px;
  padding-bottom: 40px;


}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  text-decoration: none;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}



.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}

.swag .fundo{
  align-items: center;
  background: rgba(0, 0, 0, 0.6);  
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  
}
.swag {background: url('/Assts/Img/imgbannertrtr.avif') no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-attachment: fixed;  }

.swag h1 {align-items: center; color: rgb(255, 255, 255); font-size: 40px; text-transform: uppercase; letter-spacing: 5px; z-index: 1; }
.swag h1 span { display: block; font-size: 25px; margin-top: 20px; }



/* Design */
#produto *,
*::before,
*::after {
  box-sizing: border-box;
}

#produto
{
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f3f5f8;
}

#produto body {
  color: #272727;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
}

#produto .main{
  max-width: 1200px;
  margin: 0 auto;
}

#produto h1 {
   
    text-align: center;


    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

#produto img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

#produto .btncardlink{
  text-decoration: none;
  align-items: center;
  justify-content: center;
  
}

#produto .btncard {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  justify-content: center;
  align-items: center;
}

#produto .btncard:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

#produto .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

#produto .cards_item {
  display: flex;
  padding: 1rem;
  
}

@media (min-width: 40rem) {
  #produto .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  #produto .cards_item {
    width: 33.3333%;
  }
}

#produto .card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  
}

#produto .card_content {
  padding: 1rem;
  height: 100%;
  background: linear-gradient(to bottom left, #0087FF 0%, #5BB2FF 26.01%, #5BB2FF 64.76%, #0087FF 101.36%);
}

#produto .card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0px;
}

#produto .card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
 
}
#produto .made_by{
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}

.section-bg {
  background: #044985;
  overflow: hidden;
}

#contact .section-bg {
 
  overflow: hidden;
}

#contact .section-title {
  text-align: center;
  padding-bottom: 30px;
}


#contact .container {
  position: relative;
  width: 100%;
  min-height: 69vh;
  padding: 2rem;
  
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact .form {
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#contact .contact-form {
  background-color: #2487ce;
  position: relative;
}



#contact .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #2487ce;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

#contact form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

#contact .title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

#contact .input-container {
  position: relative;
  margin: 1rem 0;
}

#contact .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

#contact textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

#contact .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

#contact .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

#contact .btnfrom {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #044985;
  font-weight: 700;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

#contact .btnfrom:hover {
  background-color: transparent;
  color: #fff;
}

#contact .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

#contact .input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #2487ce;
  top: 50%;
  transform: translateY(-50%);
}

#contact .input-container span:before {
  left: 50%;
}

#contact .input-container span:after {
  right: 50%;
}

#contact .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

#contact .input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

#contact .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

#contact .contact-info .title {
  color: #2487ce;
}

#contact .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

#contact .information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

#contact .icon {
  width: 28px;
  margin-right: 0.7rem;
}
#contact .icon p{
  margin-bottom: 0px;
}




#contact .social-media {
  padding: 2rem 0 0 0;
}

#contact .social-media p {
  color: #333;
}

#contact .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

#contact .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #2487ce, #2487ce);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

#contact .social-icons a:hover {
  transform: scale(1.05);
}



#contact .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #2487ce, #2487ce);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

#contact .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

#contact .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  #contact .form {
    grid-template-columns: 1fr;
  }

  #contact .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  #contact .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  #contact.square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  #contact.big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  #contact .text {
    margin: 1rem 0 1.5rem 0;
  }

  #contact.social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  #contact.container {
    padding: 1.5rem;
  }

  #contact .contact-info:before {
    display: none;
  }

  #contact .square,
  .big-circle {
    display: none;
  }

  form,
  #contact .contact-info {
    padding: 1.7rem 1.6rem;
  }

  #contact .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  #contact.title {
    font-size: 1.15rem;
  }

  #contact.social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  #contact.icon {
    width: 23px;
  }

  #contact.input {
    padding: 0.45rem 1.2rem;
  }

 #contact .btnfrom {
    padding: 0.45rem 1.2rem;
  }
}


.footer-basic {
  padding:40px 0;
  background-color:#044985;
  color:#fff;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-basic ul a:hover {
  opacity:1;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:25px;
}

.footer-basic .social > a {
  font-size:24px;
  width:40px;
  height:40px;
  line-height:40px;
  display:inline-block;
  text-align:center;  
  margin:0 8px;
  color:inherit;
  opacity:0.75;
}

.footer-basic .social > a:hover {
  opacity:0.9;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:13px;
  color:#fff;
  margin-bottom:0;
}
hr.sep-3 {
  z-index: 1;
  border: none;
  height: 5px;
  background-image: linear-gradient(to right, #f0f0f0, #8f8f8f, #f0f0f0);
}
hr.sep-3::after {
  content: '/ /';
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) ;
  transform-origin: 50% 50%;
  padding: 1rem;
  color: #fff;
  background-color: #044985;
}

.arrow { font-size: 30px; text-transform: uppercase; color: #ffffff; letter-spacing: 1px; background: url('/Assts/Img/h1-bg.png') no-repeat center bottom; padding-bottom: 30px; font-weight: bold; }


.aboutproduto {

  padding-top: 0px;
  padding-bottom: 40px;


}
.aboutproduto .content h3 {
  font-weight: 600;
  font-size: 26px;
  text-decoration: none;
}

.aboutproduto .content ul {
  list-style: none;
  padding: 0;
}

.aboutproduto .content ul li {
  padding-left: 28px;
  position: relative;
}

.aboutproduto .content ul li + li {
  margin-top: 10px;
}

.aboutproduto .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.aboutproduto .content p:last-child {
  margin-bottom: 0;
  max-width: 1000px;
  min-width: 400px;
}



.aboutproduto .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.aboutproduto .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}


.obrigado #container{
  width: 100vw;
  height: 100vh;
  background-color: #044985;
}

.aboutproduto .section-p div{
 
  max-width: 100%;
}

.pgproduto .section-title {
  text-align: left;  
  padding-left: 12px;
  padding-bottom: 0px;
}

.vantagens { 
text-align: left;

  }

.vantagens ul li{
   font-family: var(--bs-font-sans-serif);    
   font-size: 17px;
   padding-bottom: 10px;
      }
   
    ul li::marker {
      font-size: 150%;
      color: rgb(0, 0, 0);
    }
    

    .anime {
      opacity: 0;
      transform: translate3d(-100px,0,0);
      transition: .1s;
    }
    
    .anime-start {
      opacity: 1;
      transform: translate3d(0,0,0);
      
    }
 













