:root{
    --bl: #000;
    --blo: #000000a8;
    --wt: #fff;
    --cc: #ccc;
    --mm: #666;
    --mmo: #000000af;
    --vd: #5FFFBC;
    --vb: #01D17A;
    --vmb: #007041;
    --ab: #ABABAB;
    --ye: #FFE500;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body{
    height: 100%;
    font-family: "Open Sans", sans-serif;
    /*font-family: "Oldenburg", serif; */
}

.container{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

.title{
    width: 100%;
}

.title h1{
    text-align: center;
    font-weight: 100;
    font-size: 40px;
}

.title .line{
    width: 150px;
    height: 3px;
    background-color: var(--vd);
    margin: 5px auto;
}

.title p{
    text-align: center;
    margin: 15px 0;
    font-family: "Oldenburg", serif; 
    color: var(--ab);
}

.btnwhats{
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.btnwhats p{
    font-size: 13px;
}

.btnwhats button{
    color: var(--wt);
    background-color: #01D17A;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700
}

.opacity{
    width: 100%;
    height: 100%;
    background-color: var(--blo);
    position: absolute;
    z-index: 2;
    border-radius: 10px 10px 0 0;
    left: 0;
    top: 0;
}

.opacity2{
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

header{
    padding: 10px 0;
    background-color: var(--bl);
}

header > .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

header .logo{
    width: 150px;
}

header .logo img{
    width: 100%;
}

header .menu ul{
    display: flex;
    justify-content: space-between;
    align-items:center;
}

header .menu ul li{
    margin: 0 10px;
    font-size: 18px;
}

header .menu ul li a{
    color: var(--wt);
    text-decoration: none;
}

header .menu ul li a:hover{
    color: var(--vd);
}


header .icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header  .icons a{
    font-size: 22px;
    text-decoration: none;
    color: var(--mm);
    margin: 0 10px;
}

header  .icons a:hover{
    color: var(--vd);
}

section.sec01{
    min-height: 75vh;
    position: relative;
    padding: 35px 0;
    background-color: var(--bl);
}

section.sec01 .wave{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: end;
}

section.sec01 .wave img{
    width: 100%;
}

section.sec01 > .container{
    position: relative;
    display: flex;
}

section.sec01 aside{
    width: 50%;
    text-align: center;
    height: 100%;
    align-items:center;
}

section.sec01 .text h1{
    font-size: 45px;
    color: var(--wt);
    text-align: left;
    font-weight: 400;
}

section.sec01 .text h1 i{
    color: var(--vd);
    font-style: normal;
}

section.sec01 .text p{
    font-family: "Oldenburg", serif;
    font-size: 18px;
    color: var(--cc);
    text-align: justify;
    font-weight: 100;
    margin: 20px 0;
}

section.sec01 .text .buttons{
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.sec01 .text .buttons button.prim{
    border: 2px solid var(--vb);
    background-color: transparent;
    color: var(--vb);
}

section.sec01 .text .buttons button{
    width: 250px;
    padding: 10px;
    font-size: 18px;
    background-color: var(--vb);
    color: var(--wt);
    border: none;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 700;
    cursor: pointer;
}

section.sec01 .text .buttons button.prim:hover{
    border: 2px solid var(--wt);
    background-color: transparent;
    color: var(--wt);
}

section.sec01 .text .buttons button:hover{
    background-color: var(--vmb);
    color: var(--wt);
}

section.sec01 .img{
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.sec01 .img img{
    width: 400px;
}

section.sec02{
    padding: 40px 0;
}

section.sec02 .boxContent{
    padding: 20px 0;
}

section.sec02 .boxSingle{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.sec02 .boxSingle:nth-child(2n+2){
    flex-direction: row-reverse;
}

section.sec02 .boxSingle .image{
    width: 37%;
    text-align: center;
}

section.sec02 .boxSingle .image img{
    width: 80%;
}

section.sec02 .boxSingle .text{
    width: 60%;
    padding: 0 40px; 
}

section.sec02 .boxSingle .text h2{
    font-size: 35px;
    color: var(--mm);
}

section.sec02 .boxSingle .text p{
    color: var(--ab);
    font-family: "Oldenburg", serif;
    margin: 10px 0;
}

section.sec03{
    width: 100%;
    background-color: var(--bl);
    padding: 60px 0 5px 0;
}

section.sec03 .contentslide{
    width: 100%;
    display: flex;
    position: relative;
}

section.sec03 .controls{
    width: 100%;
    display: flex;
    position: relative;
}

section.sec03 .controls .controlslide,
section.sec03 .controls .controlslide2{
    width: 60px;
    height: 60px;
    z-index: 99;
    border-radius: 60px;
    display: flex;
    margin: 25% 0;
    cursor: pointer;
    position: absolute;;
    align-items: center;
    justify-content: center;
    background-color: var(--mmo);
}

section.sec03 .controls .controlslide{
    display: none ;
}

section.sec03 .controls .controlslide2{
    left: 95%;
}

section.sec03 .controls .controlslide img{
    width: 30px;
    transform: rotate(180deg);
}

section.sec03 .controls .controlslide2 img{
    width: 30px;
}

section.sec03 .contentslide{
    margin: 80px 0;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

section.sec03 .contentslide::-webkit-scrollbar {
    width: 8px;       
}

section.sec03 .contentslide .slidesingle{
    width: 270px;
    margin: 0 80px 0 0;

}

section.sec03 .contentslide .image{
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    position: relative;

}

section.sec03 .contentslide .image .containerslider{
    position: relative;
    z-index: 99;
    color: var(--wt);
    padding: 10px;
}

section.sec03 .contentslide .image .star{
    width: 100%;
    text-align: end;
    color: var(--ye);
}

section.sec03 .contentslide .image .desc{
    height: 190px;
    display: flex;
    align-items: end;
}

section.sec03 .contentslide .image .desc h3{
    font-size: 20px;
}

section.sec03 .contentslide .text .title{
    width: 100%;
    background-color: var(--wt);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.sec03 .contentslide .text .title img{
    width: 20px;
}

section.sec03 .contentslide .text .title h3{
    font-size: 20px;
    color: var(--mm);
}

section.sec03 .contentslide .descript{
    width: 100%;
    margin: 0 auto;
    padding: 0 10px 10px 10px;
    background-color: var(--wt);
}

section.sec03 .contentslide .descript p{
    width: 100%;
    font-family: "Oldenburg", serif;
    font-size: 16px;
    color: var(--mm);
    margin-bottom:10px;
}

section.sec03 .contentslide .buttons{
    width: 100%;
    background-color: var(--vb);
    border-radius: 0 0 10px 10px;
    color: var(--wt);
}

section.sec03 .contentslide .buttons button{
    width: 100%;
    border: none;
    padding: 8px;
    background-color: var(--vb);
    border-radius: 0 0 10px 10px;
    color: var(--wt);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

section.sec03 .contentslide .buttons button:hover{
    background-color: var(--vmb);
}

.contratar{
    width: 300px;
}