
.light {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #f1f8fc;
  --darkOne: #312f3a;
  --darkTwo: #45424b;
  --lightOne: #919191;
  --lightTwo: #aaa;
}

.dark {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

.erro{
  font-size: 15px;
  color: rgb(255, 137, 137);
}

.invalido{
  border-color: rgb(255, 137, 137);
  border: 2px solid rgb(255, 137, 137);
}

html{
  scroll-behavior: smooth;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.compra{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 60px;
  display: none;
}

.carro2{
  width: 26px;
}

.carro{
  margin-top:13px;
  width: 26px;
}

.compra p{
  font-size: 12px;
  font-weight: lighter;
  color: #82cdfc;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header h1{
  text-align: center;
}

header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #192e3a; 
  padding: 10px 5px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 120px;
}

.logo h3 {
  color:#64bcf4;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.imagem-logo{
  margin-left: 10px;
}

nav{
  margin-left:29rem;
}

 .links ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
} 

.links a {
  color: var(--lightTwo);
  display: inline-block;
  transition: 0.3s;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  margin-left: 0px;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn1{
  border-radius: 10px;
  font-weight: bold;

}


.go{
  border-radius: 10px;
  font-weight: bold;
  background-color: #192e3a;
  width: 100%;
  padding: 10px ;
}

.btn8{
  display: flex;
  align-items: center;
  width: 190px; 
  font-weight: bold;
  background-color: #64bcf4;
  border-radius: 5px;
}

.btn3{
  width: 130px;
  font-weight: bold;
  cursor: pointer;
}

.btn4{
  width: 150px;
  font-size: 10px;
  font-weight: bold;
}

.btn5{
  background-color: var(--mainColor); 
  padding: 10px; 
  border-radius: 15px;
  display: inline-block;
  color: #fff !important;
  transition: 0.3s;
  padding: 10px 20px ;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.empresa ul{
   position: absolute; 
  background-color: #192e3a;
  width: 200px;
  height: 200px;
   top: 55rem; 
  right: 90px; 
  flex-direction: column;
  display:none;
  z-index: 3000;
  list-style: none;
  text-align: center;
  line-height: 60px;
}

.sinf ul{
  position: absolute; 
 background-color: #192e3a;
 width: 200px;
 height: auto;
  top: 3rem; 
 right: 0px; 
 flex-direction: column;
 z-index: 3000;
 list-style: none;
 text-align: center;
 line-height: 40px;
 display: none;
}

.sinf ul a{
  color: white;
  font-weight: bold;
  transition-duration: .3s;
}

.sinf ul a:hover{
  color: #5bacdf;
  text-decoration: underline;
}
.activo.modal {
  display: flex;
  animation: modal .3s forwards;
}
@keyframes modal{
  from{
      opacity: 0;
      transform: translate3d(0,-30px,0);
  }

  to{
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}

.tela_login h1{
  margin-bottom: 20px;
  font-size: 2rem;
}

.tela_login input{
  padding: 15px;
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 15px;
  width: 100%;
}
.inputSubmit{
  background-color: dodgerblue;
  border: none;
  padding: 15px;
  width: 100%;
  color: white;
  font-size: 15px;
  cursor: pointer;
}
.inputSubmit{
  background-color: deepskyblue;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  margin-right: 10px;
}

.hamburger-menu2{
    color: white;
    position: relative;
    margin-right: 25px;
    text-align: center;
    margin-top: 5px;
}

.hamburger-menu2 .size-6{
    width: 22px;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.menu-tema{
  position: absolute;
  font-size: 12px;
  font-weight: lighter;
  bottom: 6px;
  color: white;
  top: 99%;
}

.pagar{
    display: flex;
}

.menu-tema2{
  font-size: 12px;
  font-weight: lighter;
  color: white;
  width: 100px;
  text-align: center;
}

.showcase-area .container {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkOne);
  line-height: 1.2;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.sec-contacto{
  padding-top: 5px;
  margin: auto;
  width: 600px;
}

.sec-contacto div{
  padding-left: 60px;
}

.sec-sobre{
  padding-top: 5px;
  margin: auto;
  width: 500px;
}

.sec-sevico{
  padding-left: 50px;
  width: 500px;
  margin: auto;
}

.text2 {
  color: #e5e5e5;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  align-items: center;
  display: none;
}

.text3 {
  color: #e5e5e5;
  font-size: 1rem;
  margin-left: 90px;
  max-width: 600px;
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sobre{
  text-align: center;
  font-size: 1.5rem;
  color: #5bacdf;

}

.sobre1{
  text-align: center;
  font-size: 1.5rem;
  color: #5bacdf;
}

.sub-sobre{
  padding: 5px;
  color: #64bcf4;
  margin-left: 90px;
}

.icone{
  width: 20px;
  margin: 10px;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
  display: none;
}


.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

footer{
  position: relative;
  background-color: #192e3a;
  display: flex;
  flex-direction: row;
  align-items: center;
} 

footer img{
  width: 30px;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}


.out{
    text-align: center;
    margin-top: 20px;
}
.sair{
  color: #5bacdf;
 
}

.sair:hover{
  text-decoration: underline;
}

.semconta{
  color: #5bacdf;
}

.semconta:hover{
  text-decoration: underline;
}


.tempo{
   display: flex;
  flex-direction: row;
  align-items: center;
  width: 127px;
}

.tema{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  font-weight: normal;
}


/*h3::before{*/
/*  content: ' ';*/
/*  width: 5px;*/
/*  height: 5px;*/
/*  border-radius: 50%;*/
/*  background-color: #5bacdf;*/
/*  display:inline-block ;*/
/*  margin-right: 5px;*/
/*}*/

.activo.text2{
  display: block;
  animation: modal 0.5s;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght'400,
  'GRAD' 0,
  'opsz' 24
}

nav ul li{
  margin: 15px;
  padding: 10px;
}



.sub_menu{
  display: none;
}

.empresa li a{
  text-decoration: none;
  color: white;
  text-align: center;
  font-weight: bolder;
  transition-duration: .5s;
}

.empresa  a:hover{
  color: #64bcf4;
  text-decoration: underline;
}



.activo.empresa ul{
  display: flex;
  animation: modal .3s forwards;
}
@keyframes modal{
  from{
      opacity: 0;
      transform: translate3d(0,-30px,0);
  }

  to{
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}

.activo.sinf ul{
  display: flex;
  animation: modal .3s forwards;
}
@keyframes modal{
  from{
      opacity: 0;
      transform: translate3d(0,-30px,0);
  }

  to{
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}

.modalParticulares, .modal {
  position: fixed;
  z-index: 900;
  backdrop-filter: blur(20px);
  background-color: rgba(25, 46, 59, 0.445);
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.tela_login{
  background-color: #192e3a;
  position: relative;
  padding: 30px;
  border-radius: 15px;
  color: white;
}

.activo.modalParticulares {
  display: flex;
  animation: modal .3s forwards;
}
@keyframes modal{
  from{
      opacity: 0;
      transform: translate3d(0,-30px,0);
  }

  to{
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}



.modalAdmistrativa{
  position: fixed;
  z-index: 900;
  background-color: rgba(25, 46, 59, 0.445);
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}
.activo.modalAdmistrativa {
  display: flex;
  animation: modal .3s forwards;
}
@keyframes modal{
  from{
      opacity: 0;
      transform: translate3d(0,-30px,0);
  }

  to{
      opacity: 1;
      transform: translate3d(0,0,0);
  }
}

.fecharAdmistrativa{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid white;
  top: -30px;
  right: -30px;
  background-color: #64bcf4;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
  font-size: 1.2rem;
  color: white;
  cursor:pointer;
  z-index: 300;
  margin-bottom: 22.5rem;
  margin-left: 22rem;
}


.check, .checkes{
  display: none;
}

.pass, .palavraPasse{
  position: relative;
}

.visibility{
  width: 20px;
  position: absolute;
  top: 25%;
  right: 5%;
}


@media screen and (min-width: 1024px){
    
.container {
  padding: 0 3.3rem;
  z-index: 10;
}

nav ul li{
    margin: 0px;
}
    
.drive{
    display: none;
}
    
.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1rem 0 1rem;
  max-width: 600px;
  line-height: 1.7;
}
  .btn5{
    background-color: var(--mainColor); 
    border-radius: 15px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 50px ;
    top: 42% !important;
    width: 50%;
    text-align: center;
    font-size: 20px;
    display: none;
  }
  
  .hamburger-menu2{
      display: none;
  }
  
  .go{
      display: none;
  }
  .empresa ul{
    position: absolute; 
    background-color: #192e3a;
    width: 200px;
    height: 120px;
     top: 5rem; 
    right: 170px;
    flex-direction: column;
    display:none;
    z-index: 3000;
    list-style: none;
    text-align: center;
    line-height: 40px;
  }

  .sinf ul{
    position: absolute; 
    background-color: #192e3a;
    width: 200px;
    height: auto;
     top: 5rem; 
    right:10px;
    flex-direction: column;
    display:none;
    z-index: 3000;
    list-style: none;
    text-align: center;
    line-height: 40px;
  }

  footer{
    position: relative;
    background-color: #192e3a;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 1px;
    padding-top: 50px;
  }
  
  .sec-contacto{
    margin-top: -5px;
  }

  .sec-sobre{
    margin-top: -5px;
  }

  .toggle-btn{
    position: absolute;
    top: 10px;
  }

  .fecharParticulares, .fechar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid white;
    top: -30px;
    right: -30px;
    background-color: #64bcf4;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
    font-size: 1.2rem;
    color: white;
    cursor:pointer;
    z-index: 300;
  }
  
  .person{
      width: 450px;
  }
  
    .big-title{
      padding-top: 68px;
  }
  
}

  .cta{
      display: flex;
      flex-direction: row;
      align-items: center;
  }
  
  .btn3{
     position: absolute;
     right: 30px;
  }
  
   .btn6{
    background-color: var( --darkTwo); 
    border-radius: 10px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 20px ;
    top: 42% !important;
    width: 45%;
    text-align: center;
    font-size: 20px;
    margin-left: 20px;
    font-weight: normal;
    display: none;
  }
@media screen and (max-width: 767px) {
    
    .person{
        display: none;
    }
    
    .right{
        display: none;
    }

  .box{
    background-color: white;
    width: 100%;
    padding: 10px;
    margin: auto;
    margin-top: 10rem;
  }
  .btn1{
    width: 150px;
    border-radius: 10px;
  
  }
  
  
  .btn2
  {
    width: 150px;
    border-radius: 10px;
  }
  
  .btn8
  {
    display: flex;
    align-items: center;
    width: 150px; 
    font-weight: bold;
    background-color: #64bcf4;
    border-radius: 5px;
  }
  
  .btn3{
    width: 150px;
    cursor: pointer;
    position: static;
  }
  
  .btn4{
    width: 150px;
    font-size: 10px;
    font-weight: bold;
  }
  
  .carro2{
    display: none;
  }
  .compra{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 60px;
  }


  .fecharParticulares, .fechar{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    top: -20px;
    right: -20px;
    background-color: #64bcf4;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
    font-size: 1.2rem;
    color: white;
    cursor:pointer;
    z-index: 300;
  }


  .btn5{
    background-color: var(--mainColor); 
    border-radius: 10px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 20px ;
    top: 42% !important;
    text-align: center;
    font-size: 20px;
  }
  
  
 .btn6{
    background-color: var( --darkTwo); 
    border-radius: 10px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 20px ;
    top: 42% !important;
    width: 45%;
    text-align: center;
    font-size: 20px;
    margin-left: 20px;
  }
  
   .btn6{
    background-color: var( --darkTwo); 
    border-radius: 10px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 20px ;
    top: 42% !important;
    width: 45%;
    text-align: center;
    font-size: 20px;
  }
  
  
  
  .linkAdmistrativa{
    display: none;
  }

  nav{
    margin-left:0rem;
  }

  footer{
    flex-direction: column;
    margin-top: 0px;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .sec-contacto div{
    padding-left: 0px;
    width: 100%;
  }
  .sec-contacto{
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
  }
  
  .sec-sobre{
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .sec-sevico{
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
  }

  .sobre{
    margin-left: 0px;
    font-size: 1.5rem;
    color: #5bacdf;
  
  }
  
  .sobre1{
    margin-bottom: 15px;
    margin-left: 0px;
    font-size: 1.5rem;
    color: #5bacdf;
  }
  
  .sub-sobre{
    padding: 5px;
    margin-bottom: 10px;
    color: #aadefd;
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 0px;
  }

  .text2 {
    margin-left: 0px;
  }
  
  .text3 {
    margin-left: 0px;
  }
  
  .hamburger-menu {
    display: flex;
  }

  nav{
    line-height: 20px;
    margin-top: 40px;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 110%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: start;
    justify-content: left;
    transform: translateX(100%);
    transition: 0.5s;
    padding-bottom: 20px;
  }

  .links ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-left: 20px;
  }

  .links a {
    color: #fff;
    line-height: 15px;
    font-size: 20px;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
     transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
    height: auto; 
    position: absolute;
  }
  
  .active.overlay{
      backdrop-filter: blur(30px);
      background: #eee;
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
    backdrop-filter: blur(20px);
  }

  .showcase-area {
    padding: 1.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
    margin-top: 50px;
  }

  .big-title h1{
    font-size: 2.1rem;
  }
  
  .big-title {
    margin-top: 40px;
  }
  

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }
  
 .logo img {
    margin: 0px;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }

  .empresa ul{
    position: absolute;
    background-color: #192e3a;
    width: 200px;
    height: auto;
    top: 17rem;
    left: 40px;
    flex-direction: column;
    display:none;
    z-index: 3000;
    list-style: none;
    text-align: center;
    line-height: 40px;
    padding: 20px;
  }

.sinf ul  {
    position: static;
    background-color: #192e3a;
    width: 200px;
    height: auto;
    flex-direction: column;
    z-index: 3000;
    list-style: none;
    line-height: 40px;
    padding: 20px;
    font-weight: normal;
  }
  
  .sinf ul a{
      font-weight: normal;
      font-size: 15px;
  }
  
 nav ul li {
    margin: 15px;
    padding: 25px 5px;
    font-weight: bold;
}
  
    .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
    margin-top: 0px;
  }
}

@media screen and (max-width: 470px) {
        .person{
        display: none;
    }
        .right{
        display: none;
    }
  .fecharAdmistrativa{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid white;
    top: -30px;
    right: -20px;
    background-color: #64bcf4;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
    font-size: 1.2rem;
    color: white;
    cursor:pointer;
    z-index: 300;
    margin-bottom: 22.5rem;
    margin-left: 22rem;
  }
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 767px) and (max-width:1023px){
  .box{
    background-color: white;
    width: 100%;
    padding: 10px;
    margin: auto;
    margin-top: 10rem;
  }
  .btn1{
    width: 150px;
    border-radius: 10px;
    font-weight: bold;
  
  }
  
  
  .btn2
  {
    width: 150px;
    border-radius: 10px;
     font-weight: bold;
  }
  
  .btn8
  {
    display: flex;
    align-items: center;
    width: 150px; 
    font-weight: bold;
    background-color: #64bcf4;
    border-radius: 5px;
  }
  
  .btn3{
    width: 150px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn4{
    width: 150px;
    font-size: 10px;
    font-weight: bold;
  }
  
  .carro2{
    display: none;
  }
  .compra{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 60px;
  }


  .fecharParticulares{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    margin-top: -22rem;
    margin-left: 20rem;
    background-color: #64bcf4;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.3);
    font-size: 1.2rem;
    color: white;
    cursor:pointer;
    z-index: 300;
  }



  .btn5{
    background-color: var(--mainColor); 
    border-radius: 15px;
    display: inline-block;
    color: #fff !important;
    transition: 0.3s;
    padding: 15px 50px ;
    top: 42% !important;
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
  
  .linkAdmistrativa{
    display: none;
  }

  nav{
    margin-left:0rem;
  }

  footer{
    flex-direction: column;
    margin-top: 0px;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .sec-contacto div{
    padding-left: 0px;
    width: 100%;
  }
  .sec-contacto{
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
  }
  
  .sec-sobre{
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .sec-sevico{
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
  }

  .sobre{
    margin-left: 0px;
    font-size: 1.5rem;
    color: #5bacdf;
  
  }
  
  .sobre1{
    margin-bottom: 15px;
    margin-left: 0px;
    font-size: 1.5rem;
    color: #5bacdf;
  }
  
  .sub-sobre{
    padding: 5px;
    margin-bottom: 10px;
    color: #aadefd;
    font-size: 1.3rem;
    font-weight: normal;
    margin-left: 0px;
  }

  .text2 {
    margin-left: 0px;
  }
  
  .text3 {
    margin-left: 0px;
  }
  
  .hamburger-menu {
    display: flex;
  }

  nav{
    line-height: 20px;
    margin-top: 40px;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 220%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: start;
    justify-content: left;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .links a {
    color: #fff;
    line-height: 15px;
    font-size: 20px;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
     transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
    height: 60vh; 
    position: absolute;
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
    margin-top: 40px;
  }
  

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }

  .empresa ul{
    position: absolute;
    background-color: #192e3a;
    width: 200px;
    height: auto;
    top: 17rem;
    left: 40px;
    flex-direction: column;
    display:none;
    z-index: 3000;
    list-style: none;
    text-align: center;
    line-height: 40px;
    padding: 20px;
  }

  .sinf ul{
    position: absolute;
    background-color: #192e3a;
    width: 200px;
    height: auto;
    top: 12rem;
    left:40px;
    flex-direction: column;
    z-index: 3000;
    list-style: none;
    line-height: 40px;
    padding: 20px;
  }
}


