/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');*/
:root{
    --main-color: #e77707;
    --secondary-color: #194355;
    --accent-color: #375165;
    --black: #000;
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #353535;
    --custom-bg: rgba(0, 0, 0, 0.8);
    --border-radius-1: 3rem;
    --border-radius-2: 1rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 42%);
    --custom-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}
article, aside, figure, footer, header, nav, section, details, summary {display: block;}
html{
    font-size: 62.5%;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
 }
*, *::before, *::after{
    box-sizing: border-box;
    }
 *:not(.project-item){
    transition: color 0.2s linear, background-color 0.2s linear;
}
*::selection{
    color: var(--white);
    background-color: var(--main-color);
}
body{
    /* background: #cbc8c8; */
    overflow-x: hidden;
    max-width: 120rem;
    margin: 0 auto;
    text-shadow: 0 3px 5px #00000030;
}
section{
    padding: 3rem 5%;
    /* box-shadow: var(--box-shadow); */
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
p{
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--black);
}
img, svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.telefone {
  opacity: 0;
  visibility: hidden;
}
/*----- 1- Heading CSS -----*/
.heading{
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading .sub{
    letter-spacing: 0.2rem;
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.heading h2{
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    letter-spacing: 0.1rem;
    line-height: 1.2;
}
.linear-bg .heading h2{
    color: var(--white);
}
/*----- 2- Button CSS -----*/
.btn{
    display: inline-block;
    font-size: 2rem;
    padding: 1rem 1.3rem;
    margin-top: 2.7rem;
    text-align: center;
    /* text-transform: uppercase; */
    color: var(--white);
    background-color: var(--secondary-color);
    border-radius: var(
    --border-radius-1);
    cursor: pointer;
}
.btn:hover{
    background-position: 100% 0px;
}
/*----- 3- Logo Area CSS -----*/  
.logo{
    z-index: 100000;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.logo img{
    height: 5.8rem;
    width: 5.5rem;
}
.logo h2 {
    font-size: 3rem;
    color: #f7f3f3;
    font-weight: bold;
}
.logo h2 span {
    color: var(--main-color);
    font-weight: bold;
}
.logo p {
    font-size: 1.2rem;
    line-height: 0.6;
    color: var(--white);
}
/*----- 5- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    /* left: 50%; */
    /*transform: translateX(-50%);*/
    max-width: 120rem;
    width:  100%;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    box-shadow: var(--box-shadow);
}
.header .header-contacts{
    display: flex;
    gap: 0.3rem;
    list-style-type: none;
    flex-direction: column;
    align-items: flex-start;
}
.header .header-contacts li{
    display: flex;
    gap: 0.6rem;
    font-size: 1.7rem;
    color: var(--white);
    align-items: center;
}
.header .header-contacts li i{
    color: var(--main-color);
}
.header .header-contacts span{
    text-transform: none;
}
.header .social-contacts li a:hover{
    color: var(--secondary-color);
}
.header .header-2{
    display: flex;
    /* gap: 0rem; */
    height: 6rem;
    padding: 0rem 5%;
    background-color: var(--secondary-color);
    align-items: center;
    justify-content: space-between;
}
.header.active .header-2{
    border-bottom: 0.1rem solid var(--main-color);
    /* box-shadow: var(--box-shadow); */
}
.header.active .logo img{
    padding-top: 0;
    height: 6rem;
}
.header #menu-btn{
    cursor: pointer;
    display: none;
}
.header .navbar{
    list-style-type: none;
    display: flex;
    height: 100%;
    gap: 2rem;
}
.mobile-menu{
    display: none;
}
.header .container{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.header .dropdown-menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 2rem;
    color: var(--main-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    background: none;
    gap: 0.5rem;
    border: 0;
}
.header .navbar .nav-btn:hover{
    color: var(--main-color);
}
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    width: 20rem;
    box-shadow: var(--box-shadow);
    flex-direction: column;
    display: none;
    transition:  all 0.5s;
    z-index: 1000;
    overflow: hidden;
}
.header .dropdown-menu:hover button{
    color: var(--main-color);
}
.header .dropdown-menu:hover .dropdown-content{
    display: flex;
    border-bottom: var(--custom-border);
}
.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    padding: 1rem 1.5rem;
    cursor: pointer;
}
.header .dropdown-content a:hover{
    background-color: var(--main-color);
}
.header .icon-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.header .icon-container .icon{
    font-size: 2rem;
    color: var(--main-color);
    cursor: pointer;
}
.header .icon-container .icon:hover{ 
    color: var(--main-color);
}
/*----- 6- Footer Area CSS -----*/
.footer{
    background: var(--secondary-color);
    border-radius: var(--border-radius-1);
}
.footer .logo h2 {
    color: var(--light-grey);
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    padding: 2rem 5% 5rem 5%;
}
.footer-item > p{
    padding-top: 1.5rem;
    font-size: 1.6rem;
}
.footer-item p{
    color: var(--white);
    line-height: 1.5;
    font-weight: bold;
}
.footer-item .connect{
    padding-top: 1rem;
}
.footer-item .connect p{
    margin-bottom: 0.5rem !important;
}
.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--main-color);
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-item .gmail{
    text-transform: none;
}
.footer-item .info p{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-item:last-child p{
    padding-top: 0rem;
    padding-bottom: 0.7rem;
    line-height: 1.6;
}
.footer .content{
    text-align: center;
    padding: 0.7rem 2rem 0.7rem 2rem;
    background-color: var(--grey);
}
.footer .content p{
    font-size: 1.5rem;
    color: var(--white);
}
/*----- 7- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--main-color);
    border-radius: 100% 100% 100% 100%;
    background-color: var(--main-color);
    /* transition: all 0.2s; */
    z-index: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
 } 
  .scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}
 /*------------------------------ (00)- Global CSS (End) ------------------------------*/
/*------------------------------ (01)- Home (Start) ------------------------------*/
/*----- 1- Home-Slider -----*/
.home{
    padding: 0rem 0 0 0;
    position: relative;
}
.home-item{
    height: 100vh;
}
.home-item .content{
    padding: 10rem 5%;
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 79%));
}
.home-item .content .text{
    width: 70rem;
    margin-top: 5rem;
    text-shadow: 0 3px 5px #000000fc;
}
.home-item .content h5{
    font-size: 2.8rem;
    /* font-weight: 500; */
    margin-bottom: 2rem;
    color: var(--white);
    display: flex;
    gap: 1.3rem;
    align-items: center;
}
.home-item .content h5 span{
    color: var(--main-color);
}
.home-item .content h5 i {
    font-size: 2.2rem;
    color: rgb(255 255 255 / 90%);
    }
.home-item .content h4{
    font-size: 2.8rem;
    /* font-weight: 500; */
    /* margin-bottom: 1rem; */
    color: var(--white);
    display: flex;
    gap: 1.3rem;
    align-items: center;
}
.home-item .content h4 span{
    color: var(--main-color);
}
.home-item .content h4 i {
    font-size: 2.6rem;
    color: rgb(255 255 255 / 90%);
    }
.home-item .content h3{
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    color: var(--main-color);
    letter-spacing: 0.1rem;
    line-height: 1;
    border-left: var(--custom-border);
    border-left-color: var(--secondary-color);
    padding-left: 1rem;
}
.home-item .content h3 span{
    color: var(--white);
}
/*----- 2- Features -----*/
.features{
    padding-bottom: 6rem;
}
.features .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    column-gap: 2rem;
    margin-top: -3rem;
}
.feature-item {
    margin-top: 2rem;
    cursor: pointer;
    text-align: center;
    padding: 3rem 1.5rem;
    padding-top: 6.7rem;
    position: relative;
    background-color: #ddd;
    border: 0.1rem solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-1);
    /* box-shadow: var(--box-shadow); */
}
.feature-item:nth-child(2) {
    background-image: linear-gradient(144deg, #282f5a, var(--secondary-color), #282f5a);
    background-size: 300% 100%;
}
.feature-item i {
    position: absolute;
    top: 0%;
    right: 50%;
    transform: translate(50%, -4.5rem);
    height: 10rem;
    height: 10rem;
    width: 10rem;
    margin: 0rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    /* color: #161a34; */
    background-color: #ddd;
    border-radius: 100%;
    border: 1rem solid #f2f3f8;
}
.feature-item:nth-child(2) i {
    background-image: linear-gradient(144deg, #282f5a, var(--secondary-color), #282f5a);
    background-size: 300% 100%;
    color: #ddd;
}
.feature-item h3{
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: bold;
}
.feature-item p{
    color: var(--grey);
}
.feature-item:nth-child(even) h3,
.feature-item:nth-child(even) p {
    color: var(--white);
}
/*----- 5- Why Choose Us -----*/
.whyUs{
    padding: 0;
}
.whyUs .box-container{
    background-image: url("../images/WhyUs.webp");
    background-position: center;
    background-size: cover;
}
.whyUs .content{
    padding: 4rem 5%;
    width: 50%;
    background-color: rgb(0 0 0 / 86%);
}
.whyUs .heading{
    align-items: flex-start;
}
.whyUs .heading h2{
    text-align: left;
}
.whyUs .content p{
    letter-spacing: 0.5px;
    /* font-weight: 400; */
    color: var(--light-grey);
} 
.whyUs .whyUs-points{
    list-style-type: none;
    padding-top: 0.5rem;
}
.whyUs .whyUs-points li{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
}
.whyUs .whyUs-points li .icon {
    border-radius: 100% 100% 100% 100%;
    background-image: linear-gradient(144deg, var(--main-color), #ff98007a, var(--main-color));
    background-size: 300% 100%;
    margin-top: 1rem;
}
.whyUs .whyUs-points li .icon i{
    height: 6rem;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    color: var(--white);
}
.whyUs .whyUs-points .text{
     flex: 1 1 30rem;
}
.whyUs .whyUs-points li h5{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--main-color);
    padding-bottom: 0.5rem;
}
.whyUs .whyUs-points li p{
    color: var(--light-grey);
}
/*------------------------------ (01)-Home (End) ------------------------------*/
/*------------------------------ (02)-About (Start) ------------------------------*/
/*----- 1- About Us -----*/
.about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}
.about .image{
    /* flex: 1 1 40rem; */
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-1);
}
.about .sub-image{
    height: 65rem;
}
.about .image img{
    box-shadow: var(--box-shadow);
}
.about .sub-image.first {
    height: 52rem;
}
.about .experience{
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 12.5rem;
    font-size: 2.5rem;
    padding: 1.5rem;
    color: var(--white);
    background-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
    display: flex;  
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}
.about .experience .icon {
    background: var(--main-color);
    background-size: 300% 100%;
    border-radius: 100% 100% 100% 100%;
    /* transform: rotate(45deg); */
    border: 0.2rem solid var(--accent-color);
    /* margin-top: 1.5rem; */
}
.about .experience i {
    height: 7rem;
    width: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: var(--secondary-color);
}
.about .experience .experience-content span {
    font-size: 4rem;
    font-weight: bolder;
}
.about .experience .experience-content p {
    color: var(--main-color);
}
.about .content {
    flex: 1 1 40rem;
}
.about .heading{
    align-items: flex-start;
}
.about .heading h2{
    text-align: left;
}
.about .content p{
    padding-bottom: 1rem;
}
.about .about-features{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}
.about .about-features li{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}
.about .about-features i{
    color: var(--secondary-color);
}
.about .about-features span{
    color: var(--main-color);
    font-size: 2rem;
    font-weight: bold;
}
/*----- 5- Faqs -----*/
.faq .box-container{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.accordion-container{
    flex: 1 1 52rem;
}
.accordion{
    background: var(--light-grey);
    margin-bottom: 2.2rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-1);
} 
.accordion:last-child{
    margin-bottom: 0rem;
}  
.accordion .accordion-heading{
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    font-size: 1.9rem;
    border-bottom: 0.1rem solid var(--main-color);
    background-color: var(--light-grey);
    display: flex;
    font-weight: bold;
}
.accordion .accordion-heading .icon {
    border-radius: 100% 100% 100% 100%;
    background-size: 300% 100%;
    background-color: var(--secondary-color);
}
.accordion .accordion-heading i{
    height: 4rem;
    width: 4rem;
    border-radius: 0.2rem;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion .accordion-heading h3{
    color: var(--black);
    font-size: 1.9rem;
    font-weight: bold;
}
.accordion-content{
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--grey);
    /* display: none; */
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-heading::marker { content: ""; }

.accordion[open] .icon i {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}
.accordion[open] .accordion-content {
    max-height: 50rem;
    padding: 0.3rem 1.5rem 1.4rem 1.5rem;
}
/*--------------------- Responsive (Start) ---------------------*/
@media (max-width: 991px){
    .header .navbar{  
        display: none; 
    }
    .header #menu-btn{
        display: initial;
    }
    .header .icon-container .btn{
        display: none;
    }
    .mobile-menu { 
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 10000;
        max-height: 80vh;
        overflow-y: auto; 
        background: var(--secondary-color);
        transition: all 0.5s ease-in-out;
        box-shadow: var(--box-shadow);
        border-top: 0.2rem solid var(--main-color);
        border-bottom: 0.2rem solid var(--main-color);
        padding: 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    } 
    .mobile-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .mobile-navbar{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .mobile-navbar .nav-link{
        background: var(--main-color);
        overflow: hidden;
    }
    .mobile-navbar .main-nav-link{
        color: var(--white);
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer; 
        width: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: space-between; 
        align-items: center;
    }
    .mobile-navbar .main-nav-link a{
        color: var(--white);
    }
    .footer .box-container{
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    }
    .features .box-container{
        /* grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr)); */
    }
    .whyUs .content,
    .custom-form .content {
        width: 100%;
    }
}
@media (max-width: 768px){ 
    section{
        padding: 3rem 2rem;
    }
    .header .header-2{
        /* padding: 0rem 2rem; */
    }
    .header .header-contacts{
        /* display: none; */
    }
    .footer .box-container{
        /* padding: 2rem; */
    }
    .home-item{
        height: 100vh;
    }
    .home-item .content{
        padding: 7rem 2rem;
    }
    .home-item .content h3 {
        font-size: 5.2rem;
    }
.telefone{
    position: fixed;
    bottom: 5rem;
    left: 2rem;
    right: 7rem;
    height: 5rem;
    color: var(--white);
    border-radius: var(--border-radius-1);
    background-color: var(--secondary-color);
    transition: all 0.2s;
    z-index: 900;
    display: flex;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    justify-content: center;
    align-items: center;
    gap: 1rem;
 } 
 .telefone i{
     font-size: 3rem;
     color: var(--main-color);
    }
 .telefone span{
     font-size: 1.6rem;
     font-weight: 400;
    }
  .telefone.show {
  opacity: 1;
  visibility: visible;
}
.telefone:hover{
    background-color: var(--accent-color);
    cursor: pointer;
 }}
@media (max-width: 450px){ 
    section{
        /* padding: 3rem 1rem; */
   }
    .header .header-2{
        padding: 0rem 1rem;
    }
    .footer .box-container{
        /* padding: 2rem 1rem; */
    }
    .footer-item > p{
        font-size: 1.8rem;
    }
    .home-item{
        height: 100vh;
    }
    .features{
        padding-bottom: 5rem;
    }
    .whyUs .content,
    .custom-form .content{
        padding: 4rem 5%;
        clip-path: none;
    }
} 