
:root{
    /* colors */
    --detail-color: #c4b108;

    --color--titles:#9e9e9e;

    --color--text:#151515;

    --white--:#fff;

    /* fonts */
    --font-montserrat : "montserrat";

    --font-messiri: "el messiri";

    --font-poppins : "poppins";

    /* Size Fonts */
    --size-titles: 10rem;

    --size-subTitles: 4.2rem;

    --size-topicos: 2rem;

    --size-text: 1.5rem;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
    text-transform: none;
}

*:before, *:after {
    box-sizing: inherit;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* -------------------Header------------------- */

header{
    width: 95%;
    position: fixed;
    top: 3rem;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 2rem 2rem;
    z-index: 1000;
    transform:translateX(-50%);
    background-color: rgba(28, 0, 0, 0);
}

#home{
    position: relative;
}

.active-header{
    top: 0;
}

.header-active{
    top: 0;
    width: 100%;
    border-radius: 0;
    background-color:#1d1d1dec;
    padding: 1.5rem 1.5rem;
}

.header-logo{
    width: 205px;
    height: 180px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 0 0 17px;
    border-bottom-right-radius: 50%;
    background-color: #ffffff;
}

.header-logo img{
    width: 150px;
    height: 150px;
    position: relative;
    top: 10px;

}

.header-logo h2{
    color: var(--white--);
    font-size: var(--size-text);
    font-family: var(--font-montserrat);
    font-weight: 200;
    margin-left: 5rem;
    margin-top: 1.5rem;
    position: fixed;
    z-index: 1500;
}

.header-logo h2 span{
    font-size: var(--size-text);
    font-weight: 200;
    color: yellow;
}

header .nav-bar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav-bar ul li{
    margin: 0 2.5rem;
}

header
.nav-bar
ul li a{
    font-size: 1.5rem;
    color: var(--white--);
    transition: 0.2s all;
    font-family: var(--font-montserrat);
}

header
.nav-bar
ul li a:hover{
    color: #c2c2c2;

}


header
.nav-bar
ul li a .detail-color{
    font-size: 2.5rem;
    color: var(--detail-color);
    font-weight: 600;
}

header .fa-bars{
    font-size: 3rem;

    color: #f7f7f7;
    cursor: pointer;
    display: none;
    transition: .2s;
}

header .fa-times{
    transform: rotate(180deg);
}

@media (max-width: 800px){

    header .fa-bars{
        display: block;
    }
    header .nav-bar{
        position: fixed;
        top: -100rem; left: 0;
        width: 100%;
        background: rgba(62, 61, 61, 0.963);
        border-radius: 1rem;
        opacity: 0;
        transition: .2s linear;
    }
    header .nav-bar ul{
        flex-flow: column;
        padding: 2rem 0;
    }
    header .nav-bar ul li{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    header .nav-bar ul li a{
        font-size: 3rem;
        display: block;
        border-bottom: none;
    }
    header .nav-toggle{
        top: 8rem;
        opacity: 1;
    }

    .section-home aside .section-home-h2{
        font-size: 3rem;
    }

    .section-home aside .section-home-h1{
        font-size: 100rem;
    }

    .section-home aside .section-home-p{
        font-size: 2rem;    
    }
}

.parallaxBG{ 
    display: flex;
    flex-direction: column;
    justify-content: center;


    background-position: relative;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.parallax-img-header{
    /* box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5); */
    /* background-image: url(/img/home-img.jpg.webp); */
    /* background-image: url(/img/footer-banner.png); */
    background-image: linear-gradient(rgba(39, 39, 39, 0.329),rgba(0, 0, 0, 0.274)),url("../img/home-img.jpg.webp");
    /* background-size: cover; */
}


/* ------------------and Header-------------------- */


/* ------------------About section-------------------- */
.section-home{
    text-align: center;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url(../img/home-img.jpg.webp); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.section-home aside{
    cursor: default;
}

.section-home aside .section-home-h2{
    margin-left: 1%;
    color: #f7f7f7;
    font-size: 5rem;
    line-height: 70px !important;
    font-family: var(--font-montserrat);
    padding: 15px;
}

.section-home aside .section-home-h1{
    color: #f7f7f7;
    font-size: 12rem;
    font-family: var(--font-montserrat);
}

.section-home aside .section-home-h1 .detail-color{
    color: var(--detail-color);
    font-size: 12rem;
}

.section-home aside .section-home-p{
    position: relative;
    top: 25px;
    text-transform: none;
    color: var(--detail-color);
    font-size: 3.6rem;
    font-weight: 500;
    margin-left: 1%;
    font-family: var(--font-poppins);

    line-height: 70px !important;
}

.section-home aside{
    line-height: 85px;
}

.skill{
    position: relative;
    /* background-image: url(../img/background-about.png); */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 50;
}


.about-content .about-img-div .about-img-hero{
    width: 80%;

    border-radius: 14px;
    box-shadow: 4px 5px 7px rgba(0, 0, 0, 0.5);

}



@media (max-width: 1250px){

    .section-home aside .section-home-h2{

    }

    .section-home aside .section-home-h1{
        font-size: 9rem;

    }

    .section-home aside .section-home-h1 .detail-color{
        font-size: 8rem;
    }

    .section-home aside .section-home-p{
        font-size: 3.5rem;
        line-height: 40px !important;
    }

    .section-home aside{
        line-height: 70px;
    }

    .btn-home-contact{
        position: relative;
        top: 20px;
    }

    .about-img-hero img{
        width: 65%;

    }
}

@media (max-width: 950px){

    .section-home aside .section-home-h2{
        font-size: 4.8rem;
    }

    .section-home aside .section-home-h1{
        font-size: 6.2rem;
        line-height: 45px !important;
    }

    .section-home aside .section-home-h1 .detail-color{
        font-size: 7rem;
    }

    .section-home aside .section-home-p{
        font-size: 2.7rem;
    }

    .section-home aside{
        line-height: 60px;
    }

    .about-img-hero img{
        width: 75%;

    }
}


@media (max-width: 720px){

    .section-home aside .section-home-h2{
        font-size: 4rem;
    }

    .section-home aside .section-home-h1{
        font-size: 6.3rem;
    }

    .section-home aside .section-home-h1 .detail-color{
        font-size: 3.5rem;
    }

    .section-home aside .section-home-p{
        font-size: 2.5rem;
    }
    .btn-home-contact{
        position: relative;
        top: 20px;
    }
    .section-home aside form .btn-home-contact{
        font-size: 1.5rem;
    }

    header .nav-bar ul li a{
        font-size: 2rem;
        display: block;
        border-bottom: none;
    }

    .about-img-hero img{
        width: 80%;

    }
}

@media (max-width: 580px){

    .section-home aside .section-home-h2{
        font-size: 3.5rem;
    }

    .section-home aside .section-home-h1{
        font-size: 5.5rem;

    }

    .section-home aside .section-home-h1 .detail-color{
        font-size: 3.5rem;
        line-height: 0;
    }

    .section-home aside .section-home-p{
        font-size: 2rem;
    }
    .btn-home-contact{
        position: relative;
        top: 10px;
    }
    header .nav-bar ul li a{
        font-size: 2rem;
        display: block;
        border-bottom: none;
    }
    .about-img-hero img{
        width: 80%;

    }
}

/* ----------------------- */
.about{
    cursor: default;
    /* background-color: rgb(211, 211, 211); */
    height: 100vh auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about-content{
    max-width: 1200px;
    /* display: flex;
    flex-direction: row; */
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr)); 
    text-align: center;
    gap: 5rem;
    justify-content: center;
    padding: 75px 0 75px 0;
}

.about-img-div{
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 1000px){
    .about-content .about-img-div .about-img-hero{
        width: 60%;
        transition: all 0.3s;
    }
}

@media (max-width: 700px){ 
    .about-content .about-img-div .about-img-hero {
    width: 85%;
    transition: all 0.3s;
    }
}
.about .about-txt-two{
    width: 80%;
}
.about-txt-one{
    padding-left: 50px;
}
.about-txt-one .about-txt-one-h2{
    text-align: left;
    font-size: 7rem;
    color: var(--color--text);
    font-weight: bold;
    font-family: var(--font-poppins);
    margin-bottom: 14px;
    text-shadow: 5px 4px rgba(0, 0, 0, 0.2);
}

.about-h2-span{
   color: #555555;
    font-size: 7rem;
}

.about-txt-one .about-p-one{
    font-size: var(--size-text);
    font-family: var(--font-poppins);
    color: var(--color--text)
}

.about .about-txt-two{
    padding: 25px;
}

.about .about-txt-two .about-p-two{
    font-size: var(--size-text);
    color: #151515;
}


.about-txt-one p{
    text-align: left;
}
@media (max-width: 376px){
    .about .about-content .about-txt-one .about-txt-one-h2{
        font-size: 3.8rem;
    }
    .section-home aside .section-home-h1{
        font-size: 3.8rem !important;
    }

    .section-home aside .section-home-h2{
        font-size: 3rem !important;
    }
}

@media (max-width: 1100px){

    .about .about-txt-two .about-p-two{
        font-size: 1.5rem;
        color: #151515;
    }

    .about-txt-one .about-p-one{
        font-size: 1.5rem;
        color: #151515;
    }

    .about-content .about-img img{
        width: 350px;
        height: 350px;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 50%;
    }
}

@media (max-width: 999px){

    .about-content {
        grid-template-columns: repeat(1,minmax(0,1fr));
        gap: 10rem;
        margin-top: 40px;
    }
    .about-txt-one{
        margin: 0 75px 0 75px !important;
        padding: 0;
    }

    .msg-one .container-msg-one h3{
        font-size: 1.5rem !important;
    }

    .about-txt-one .about-txt-one-h2{
        font-size: 5rem;
    }
    .about-txt-one .about-txt-one-h2 span{
        font-size: 5rem;
    }

}

@media (max-width: 700px){
    .about-txt-one{
        margin: 0 20px 0 20px !important;
    }
}

.msg-one{
    margin: 50px 0 50px 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0c0c;
    padding: 50px;
}

.msg-one .container-msg-one{
    max-width: 1000px;
}

.msg-one .container-msg-one h3{
    text-align: center;
    font-size: 2rem;
    color: #707070;
    font-family: var(--font-montserrat);

}

/* -------------Section Skills---------------- */
.skill{
    height: 100vh auto;
    display: flex;
    justify-content: center;
}
.skill-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 100px;
    /* align-items: center; */
}

.skill-items{
    max-width: 366px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.397);
    padding: 14px;
    margin: 14px;
    border-radius: 7px;
}

.skill-items img{
    padding: 17px;
    width: 85px;
    border-radius: 50%;
}

.title-h3-skills{
    font-size: var(--size-topicos);
    color:  var(--color--text);
    /* color:  var(--color--text); */
    font-family: var(--font-montserrat);
    font-weight: 600;
    padding-bottom: 14px;
}

.h3-p-skill p{
    font-size: var(--size-text);
    color:  var(--color--text);
    /* color:  var(--white--); */
    /* color: #000000; */
    font-family: var(--font-poppins);
}

@media (max-width: 950px){

    .skill-items{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .title-h3-skills{
        text-align: center;
        font-size: 1.7rem;
        color:  var(--detail--color);
        font-weight: 600;
    }
    
    .h3-p-skill p{
        padding: 20px;
        font-size: 1.5rem;
        color: #151515;
    }
    
}
@media (max-width: 800px){

    .h3-p-skill p{
        padding: 7px;
    }

    .skill-container{
        display: flex;
        flex-direction: column;

    }

}
@media (max-width: 550px){
}

/* ---------------Plano----------------------------------- */

  .container-cards-plano{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px 0 100px 0;
    justify-content: center;
    background-image: url(../img/hero-planos.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* box-shadow: 0px 17px 20px 5px rgba(0, 0, 0, 0.3); */

}

.content-cards-plano{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));  
    align-items: center;
    gap: 10rem;
}

.card-plano{
    min-width: 335px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: none;
    border-radius: 7px;
    background-color: white;
    text-align: center;
    cursor: default;
    transition: all .3s;
    align-items: center;
}

.h2-plano-one, .h2-plano-two, .h2-plano-three{
    color: var(--color--text);
    font-family: var(--font-poppins);
    font-weight: 600;
}

.h2-plano-one{
    font-size: var(--size-topicos);
}

.h2-plano-two{
    font-size: 7rem;
    transition: all .3s;
}

.card-plano h3{
    padding-top: 17px;
    font-family: var(--font-montserrat);
    font-size: 2.2rem;
}

.h2-plano-two-total{
    font-family: var(--font-poppins);
    font-size: 1.7rem;
}

.card-plano .hr-plano{
    width: 90%;
}

.h2-plano-treino{
    width: 100%;
    padding: 14PX;
    color: #c4b108;
    background-color: #000000;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 3rem;
}

.h2-plano-two:hover{
    transform: scale(1.2);
    transition: all .3s;
}

.h2-plano-three{
    font-size: var(--size-topicos);
}

.h2-plano-title-one{
    color:  #151515;
    font-size: 5rem;
    padding-bottom: 1.5rem;
}

.h2-plano-title-two{
    cursor: default;
    font-family: var(--font-poppins);
    color: var(--white--);
    font-size: 8rem;
}

.plano-span-valor{
    font-size: 3rem;
}

.plano-p{
    font-size: var(--size-text);
    color:var(--color--text);
    font-family: var(--font-poppins);
}

.card-plano .btn-plano{
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    font-size: 1.6rem;
    /* background-color: #0c0c0c; */
    background-color: #D7C207;
    color: white;
    font-weight: 500;
    padding: 7px 25px;
    border-radius: 7px;
    font-family: var(--font-montserrat);
    margin: 14px 0 17px 0;
}

.card-plano .btn-plano:hover{
    background-color: #0c0c0c;
    /* background-color: #D7C207; */
    /* background-color: var(--detail--color); */
    color: #ffffff;
    border: none;
    transition: .3s;
    border: none;
  }

.line-hr{
    margin: auto;
    width: 80%;
    border: 2px solid var(--detail--color);
    margin-left: 50%;
    transform: translate(-50%);
    background-color: var(--detail--color)
}


@media screen and (max-width: 1267px) {

    .card-plano{
        min-width: 275px;
        height: 550px;
        transition: all .5s;
    }

    .h2-plano-one{
        font-size: 4rem;
    }
    
    .h2-plano-two{
        font-size: 5.5rem;
        transition: all .3s;
    }

    .content-cards-plano{
        /* display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));  
        align-items: center; */
        gap: 5rem;
    }
    

}

@media screen and (max-width: 1000px) {
    .content-cards-plano{
        grid-template-columns: repeat(1,minmax(0,1fr));  
        gap: 10rem;
    }  
    .card-plano{
        min-width: 435px;
        height: 550px;
    }
    .plano-span-valor{
        font-size: 3.4rem;
    }
    .h2-plano-two{
        font-size: 8rem;
    }
}

@media screen and (max-width: 700px) {
    .card-plano{
        min-width: 350px;
        height: 550px;
    }
}

@media screen and (max-width: 500px) {
    .card-plano{
        min-width: 320px;
        height: 550px;
    }

    .plano-span-valor{
        font-size: 2.9rem;
    }
    .h2-plano-two{
        font-size: 5rem;
    }
}



/* ------------------------Slider------------------------------ */

.carousel-section{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
}
.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 55px !important;
  text-align: center;
}

.slide-content{
    display: flex;
    align-items: center;
    justify-content: center;
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
  padding-bottom: 1rem;
  padding-top: 100px;
  align-content: center;
}

.slide-container .slider-title-h2{
    margin: 25px;
    font-size: 5rem;
    /* color: #151515; */
}

.slider-title-span{
    color: var(--detail--color);
}

.card{
  border-radius: 25px;
  background-color: #f7f7f7;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  background-color: #151515;
}

.card-content{
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0px 7px 3px 0px rgba(96, 96, 96, 0.5);
    
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;

}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  
}

.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #151515;
  
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #f7f7f7;
  padding: 3px;
}

.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--detail--color);
}

.name{
  font-size: 1.7rem;
  font-weight: 500;
  color: #f7f7f7;
}

.description{
  font-size: 1.5rem;
  color: #707070;
  text-align: center;
}

.button{
  border: none;
  font-size: 16px;
  color: var(--detail--color);
  padding: 8px 16px;
  background-color: #151515;
  border-radius: 6px;
  margin: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--detail--color) !important;
}
.button:hover{
  background-color: var(--detail--color);
  color: #151515;
  border: none;
  transition: .3s;
  border: none
}

.swiper-navBtn{
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: var(--detail--color);
}
.swiper-navBtn::before,
.swiper-navBtn::after{
    position: relative;
    top: 50px;
    font-size: 35px;
}

.swiper-button-next, .swiper-button-prev{
    color: #151515 !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
    color: var(--detail--color) !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 50px !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    top: 75px;
}

.swiper-button-next{
  right: 0 !important;
}
.swiper-button-prev{
  left: 0 !important;
}
.swiper-pagination-bullet{
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: var(--detail--color);
}

@media screen and (max-width: 1200px) {

   .swiper-button-next{
    right: 20px !important;
  }

  .swiper-button-prev{
    left: 20px !important;
  } 


}

@media screen and (max-width: 768px) {

    .swiper-navBtn{
        display: none;
  }

   .swiper-button-next{
    right: -30px !important;
  }

  .swiper-button-prev{
    left: -30px !important;
  } 

    .swiper-button-next{
        margin-right: 50px;
    }

    .swiper-button-prev{
        margin-left: 50px;
    }

    /* .slide-container{
        height: 550px; 
    } */

}

@media screen and (max-width: 520px) {

    .slide-container{
         width: 100%;
    }

    .section-home aside .section-home-h2{
        font-size: 3.7rem;
    }

    .section-home aside .section-home-h1{
        font-size: 4.7rem;
        line-height: 10px !important;
    }

    .section-home aside .section-home-p{
        font-size: 1.8rem;
        line-height: 90px !important;
    }
}


/* ------------------------end Slider------------------------------- */

.parallax{ 
    width: 100%;
    height: 80vh auto;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-img-hero{
    background-image: linear-gradient(rgba(39, 39, 39, 0.8),rgba(14, 14, 14, 0.678)),url(../img/home-img.jpg.webp);
    background-size: cover;
    
}

.hero-p{
    height: 25vh;
    display: flex;
    align-items: end;
    justify-content: center;
    line-height: 0.7;
    font-weight: 600;
    font-size: 15rem;
    color: var(--white--);
    cursor: default;
    font-family: var(--font-poppins);
}

/* .hero-p{
    width: 70%;
    height: 35vh;
    margin: 0 auto;
    padding: 25px;

    display: flex;
    text-align: center;
    align-items: center;

    font-size: 3.2rem;
    color: var(--detail-color);
    font-family: var(--font-montserrat);
} */

@media (max-width: 950px){

    .container-about2{
        display: grid;
    }

    .contact-div-p{
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .hero-p{
        font-size: 13rem;
        line-height: 0.68;
    }
}

@media (max-width: 700px){
    .hero-p{
        font-size: 11rem;
    }
}

@media (max-width: 575px){
    .hero-p{
        font-size: 3rem;
        display: flex;
        align-items: center;
    }
}

.container-consultoria{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    max-width: 1000px;
    gap: 2.5rem;
    padding: 17px;
}

.container-consultoria h2{
    font-size: 8rem;
    text-shadow: 7px 7px rgba(0, 0, 0, 0.2);
    font-family: var(--font-poppins);
    color: var(--white--);
}

.container-consultoria h3{
    font-size: 2rem;
    font-family: var(--font-poppins);
    color: var(--white--);
}
.container-consultoria p{
    font-size: 1.7rem;
    color: var(--white--);
    font-family: var(--font-montserrat);
    max-width: 800px;
}

.container-consultoria button{
    max-width: 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background-color: #09b826;
    border: none;
    border-radius: 4px;
    box-shadow: 10px 10px 14px 0px rgba(0, 0, 0, 0.25);
}

.container-consultoria button :hover{
    transform: scale(1.05);
}

.container-consultoria button a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.7rem;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: white;
}

.container-consultoria button a:hover{
    transform: scale(1.05);
}

#whatsappp{
    font-size: 4.5vh;
}

.section-consultoria{
    padding: 75px 0 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/banner-consultoria.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 950px){
    .container-consultoria h2{
        font-size: 5rem;
    }
    .container-consultoria h3{
        font-size: 2rem;
    }
    .container-consultoria p{
        font-size: 1.7rem;
        color: var(--white--);
        font-family: var(--font-montserrat);
        max-width: 800px;
    }
}

@media (max-width: 750px){
    .content-title-plano{
        padding: 17px !important;
    }
    .container-consultoria h2{
        font-size: 3.5rem;
    }
    .container-consultoria h3{
        font-size: 1.8rem;
    }
    .container-consultoria p{
        font-size: 1.6rem;
        color: var(--white--);
        font-family: var(--font-montserrat);
        max-width: 800px;
    }
    .container-consultoria button a{
        font-size: 1.5rem;
    }
    .container-consultoria button{

        padding: 10px 7px 10px 7px;

    }
}

.section-clientes{
    margin: 25px 0 25px 0;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-clientes h2 {
    font-size: 7rem;
    color:  var(--color--text);
    font-family: var(--font-montserrat);
    font-weight: 600;
}

.section-clientes .content-clientes{
    display: grid;
    gap: 10rem;
    grid-template-columns: repeat(2,minmax(0,1fr));

    margin: 35px 0 35px 0;

}

.card-cleintes{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
}


.card-cleintes p{
    font-size: var(--size-text);
    text-align: center;
    padding-bottom: 14px;
    font-family: var(--font-poppins);
    color: rgb(66, 66, 66);
    width: 400px;
}

.card-cleintes h3{
    font-size: var(--size-topicos);
    font-family: var(--font-montserrat);
    padding-bottom: 14px;
}


.card-cleintes .card-client-img-hero{
    max-width: 22rem;
    max-height: 22rem;
    border-radius: 50%;
    padding-bottom: 14px;
}

.star-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 14px;
}

.star-div img{
    width: 3rem;
}

#face, #insta, #linke, #git, #whatsapp{
    color: var(--color--titles);
    font-size: 4.5vh;
}

#face:hover{
    color:   #3765ffef;
}
#insta:hover{
    color:#fb07d9;
}
#linke:hover{
    color:#0750a3;
}
#git:hover{
    color:#3765ffef;
}

#whatsapp:hover{
    color: #09b826;
}


@media (max-width: 700px){

    .contact-in{
        display: flex;
        /* flex-direction: column; */
        padding: 20px;
    }

}

@media (max-width: 600px){

    .container-contact{

        padding-top: 0 !important;
    }

}
/* ----------Mobile----------- */
@media (max-width: 420px){
    .section-home aside{
        width: 90%;
        margin: 0 auto;;
    }
    /* ------home------- */
    .section-home aside .section-home-h2{
        font-size: 2.5rem;
        line-height: 50px !important;
    }

    .section-home aside .section-home-h1{
        font-size: 3.8rem;
        line-height: 20px !important;
    }
    .section-home aside .section-home-p{
        font-size: 1.7rem;
        line-height: 30px !important;
    }

    .section-home aside .section-home-h1 .detail-color{
        font-size: 5rem;
    }

    /* ------about------- */
    .about-content{
        width: 90%;
    }
    .about-txt-one .about-txt-one-h2{
        font-size: 4rem;
        text-align: left;
    }
    /* ------skills------- */

    .skill-container{
        width: 90%;
        gap: 1rem;
        margin-bottom: 7rem;
    }
    .skill-items img{
        width: 75px;
        height: 75px;
    }

    .skill-items p{
        padding: 7px;
        line-break: anywhere;

    }
    /* ------Plano---------- */

    .container-section-plano{
        width:80%;
        display: flex;
        flex-direction: column;
        margin-bottom: 75px;
    }
    
    .h2-plano-title-one{
        font-size: 3.8rem;
    }



    /* ------Slider-------- */
    .slide-container{
        /* margin-bottom: 1rem; */
        height: auto;
    }

    .slide-container{
        padding: 0px 0px 100px !important
    }
    .swiper-button-next:after, .swiper-button-prev:after{
        position: relative;
        top: 265px;
    }

    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
        top: 45px;
    }
    /* ----hero and-------- */
    .parallax{ 
        width: 100%;
        height: auto;
        display: flex;
        overflow: hidden;
        flex-direction: column;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    
    .parallax-img-hero{
        /* background-image: url(../img/about-img.png); */
        background-image: linear-gradient(rgba(39, 39, 39, 0.8),rgba(14, 14, 14, 0.678)),url(../img/background-hero.png);
        background-size: cover;
        cursor: default;

    }
    
    .hero-p{
        width: 90%;
        height: 50vh;
        margin: 0 auto;
        font-size: 2rem;
        padding: 25px;
        color: #f7f7f7;
        text-align: center;
        display: flex;
        cursor: default;
        align-items: center;
    }
    
}

@media (max-width: 700px){ 
    .skill-items {
        margin: 0;
    }

    .header-logo img{
        width: 80px;
        height: 80px;
    }
    .header-logo{
        width: 120px;
        height: 115px;
    }
}
@media (max-width: 420px){
    .section-home aside .section-home-h1{
        font-size: 6rem !important;
        line-height: .9 !important;
    }

    .section-home aside .section-home-h2{
        font-size: 2.5rem !important;
        line-height: .5 !important;
    }
    .section-home aside .section-home-p{
        font-size: 1.5rem !important;
        position: relative;
        top: 0px;
    }

    .card-cleintes p{
        width: 320px;
    }
    /* form input{
        width: 90vw !important;
    }
    form textarea {
        width: 90vw !important;
    } */

    .hero-p {
        width: 100%;
        height: 10vh;
        margin: 0 auto;
        font-size: 5rem;
        line-height: 1.3;

    }


}


.about .about-content .about-txt-one,
.about .about-content .about-img-div,
.skill .skill-container .skill-items{
    visibility: hidden;
}


.contact-form-map{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-form-map h2{
    margin-top: 100px;
    text-align: center;
    font-size: 8rem;
    text-shadow: 7px 7px rgba(0, 0, 0, 0.2);
    font-family: var(--font-poppins);
    color: var(--color--text);
}

.hr-h2{
    width: 300px;
    padding: 3px;
    background-color: #e7d20e;
    border: none;
    margin-bottom: 50px;
}

.hr-h22{
    width: 300px;
    padding: 3px;
    background-color: #e7d20e;
    border: none;
    margin-bottom: 25px;
}


.container-map-form{
    cursor: default;
    display: grid;
    gap: 10rem;
    margin: 35px 0 125px 0;
    grid-template-columns: repeat(2,minmax(0,1fr));  
    align-items: center;
}

.map-div{
    position: relative;
    top: -15px;
    width: 32vw;
    height: 32vh;
    display: flex;
    box-shadow: 6px 6px 22px 4px rgba(0, 0, 0, 0.3);
    
}


.section-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form{
    width: 32vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form label{
    font-size: 2rem;
    margin-bottom: 0.7rem;
    font-family: var(--font-poppins);
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}

form input{

    height: 3.7rem;
    padding: 0.5px;
    border: 0.1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 21px;
}

form textarea{
    padding: 0.5px;
    border: 0.1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 21px;
    font-size: 1.5rem;
}

.div-btn-footer{
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact-footer{
    border: none;
    font-size: 16px;
    color: #f7f7f7;
    padding: 12px 66px;
    background-color: #0750a3;
    border-radius: 3px;
    
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

}

.btn-contact-footer:hover{
    background-color: transparent;
    color: #151515;
    border: none;
    transition: .3s;
    border: 1px solid #151515; 
    
}



.content-footer{
    background-image: url(../img/footer-banner.png) ;
    /* background-color: #151515; */
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding-top: 50px;
    padding: 70px;
}
.content-footer .contact-icon ul{
    gap: 3rem;
}
.content-footer .contact-icon ul li{
    margin-top: 7px;

}

.content-footer .content-footer-one p{
    font-size: var(--size-text);
    font-family: var(--font-poppins);
    color: var(--color--titles);
    line-height  : 1.4;
    cursor: default;
    padding-left: 7px ;
}

.icon-footer{
    font-size: 2rem;
    position: relative;
    top: 5px;
    right: 5px;
}

.hr-effect{
    width: 100vw;
    height: 2vh;
    border: none;
    background-color: rgb(31, 31, 31);
}

.item-A h2{
    font-size: 3rem;
    font-family: var(--font-poppins);
    /* color: var(--color--titles); */
    color: #c4b108;

}
.item-B h2{
    font-size: 3rem;
    font-family: var(--font-poppins);
    /* color: var(--color--titles); */
    color: #c4b108;
}
.item-C h2{
    font-size: 3rem;
    font-family: var(--font-poppins);
    /* color: var(--color--titles); */
    color: #c4b108;

}

.ul-icons-box-one{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 1300px){

    .content-footer{
        padding: 100px 17px 75px 17px;
    }

}



@media (max-width: 1200px){

    .section-clientes .content-clientes {
        width: 96vw !important;
    }
}

@media (max-width: 1000px){

    .map-div{
        width: 60vw ;      
    }

    form{
        width: 60vw !important;
    }

    .container-map-form{
        margin-bottom: 75px;
        grid-template-columns: repeat(1,minmax(0,1fr));  

    }
}

@media (max-width: 500px){
    .map-div{
        width: 90vw ;      
    }
    form{
        width: 90vw !important;
    }

    .contact-form-map h2{
        font-size: 5.2rem;
    }

    .section-clientes h2{
        font-size: 5rem !important;
    }
    .header-logo h2{

        margin-left: 1rem;
        margin-top: 1.5rem;

    }
}

@media (max-width: 970px){
    .section-clientes .content-clientes {
        width: 96vw !important;
    }
    .card-cleintes{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0
    }
    .text-clientes-A{
        margin-top: 0px;
    }
    .text-clientes-B{

        margin: 75px 0 75px 0
    }


    .section-clientes .content-clientes{
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 980px) {

    .content-footer {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .item-C{
        margin: 35px 0 35px 0;
    }

    .content-footer .contact-icon ul{
        display: flex;
        gap: 2rem;
    }
    .content-footer .contact-icon ul li{


    
    }

    .ul-icons{
        /* display: flex;
        align-items: center;
        justify-content: center; */
        
    }

    
    .ul-icons-box-one{
        /* display: flex; */
        gap: 2rem;
    }

    .item-A, .item-B, .item-C{
        padding-bottom: 25px;
    }

    .item-A{
        text-align: center;
    }

}

@media (max-width: 400px){

    .item-A h2, .item-B h2, .item-C h2{
        font-size: 2.5rem !important;
    }

    .content-footer{
        padding: 30px 17px 30px 17px;
    }
}



.desenvolvedor{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-poppins);
    color: rgb(54, 54, 54);
    background-color: #000000;
    padding: 1rem;
}

.desenvolvedor h2 a{
    color: var(--color--titles);
}
.desenvolvedor h2 a:hover{
    color: rgb(182, 182, 3);
}