@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
html{
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0F202E;
    --secondary-color:#f1cd90;

}
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Light.woff') format('woff'),
    url('../fonts/Helvetica-Light.woff2') format('woff2'),
    url('../fonts/Helvetica-Light.eot') format('eot');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: "Lato", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Lato", sans-serif;
    margin: 0;
    line-height: 1.1;
}
p, li{
    color: var(--primary-color);
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.7;

}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.75rem);
    padding-left: var(--bs-gutter-x, 1.75rem);
    margin-right: auto;
    margin-left: auto;
}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style: none;
}
.grad_btn{
    background: linear-gradient(to right, #c99b62, #e8c892, #f4dab1,  #c99b62, #e8c892); /* Multi-step gradient */
    border: none;
    border-radius: 40px;
    padding: 10px 35px;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px ;
}
.grad_btn:hover {
    background: linear-gradient(to right, #d1a36b, #f2d29e, #fbe5c1,  #d1a36b, #f2d29e); /* Lighter gradient */
    box-shadow: inset 0px 0px 10px rgba(255, 215, 0, 0.4); /* Soft inner glow */
    color: #000;
}
.white_btn{
    background: #fff;
    color: #000;
    padding: 10px 40px;
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 14px;
}
.white_btn:hover,
.blue_btn:hover{
	    color: var(--secondary-color);
}
.blue_btn{
    background: var(--primary-color);
    color: #fff;
    padding: 10px 35px;
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 14px;
}
/************************ Top Bar Section CSS Starts **************/
.sec_top{
    background: var(--primary-color);
    padding: 10px 0;
}
.sec_top .main-logo img{
    max-width: 140px;
}
.sec_top .top-menu{
    margin-left: 80px;
}
.sec_top ul{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}
.sec_top li {
    display: inline-block;
}
.sec_top li a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}

/************************ Top Bar  Section CSS Ends **************/

/************************ Banner  Section CSS Starts **************/
.sec_banner_home .container{
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.sec_banner_home .container h1{
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
    margin-bottom: 30px;
}
.sec_banner_home .container h1 span{
    font-weight: 300;
}


/************************ Banner Section CSS Ends **************/

/************************ Second Menu Section CSS Starts **************/
.sec_second_menu{
    padding: 20px 0;
}

.sec_second_menu .col{
    text-align: center;
    width: 12.5%;
}
.sec_second_menu .col p{
    margin: 0;
    font-weight: 500;
    font-size: 12px;
}
.sec_second_menu .col img{
    max-width: 35px;
    height: 40px;
    object-fit: contain;
}

/************************ Second Menu Section CSS Ends **************/

/************************ Footer Section CSS Start **************/
footer{
    background: var(--primary-color);
    padding: 50px 0;
}
footer ul li a{
    color: #fff;
    text-decoration: none;
}
/************************ Footer Section CSS Ends **************/


/************************ Below Banner  Section CSS Starts **************/
.sec_below_baanner{
    padding: 40px 0;
}
.sec_below_baanner .row{
    background: #F2F2F2;
    border-radius: 30px;
    padding: 30px 40px;
}

.sec_below_baanner img{
    max-width: 120px;
}

.sec_below_baanner  h3{
    font-weight: 900;
    font-size: 50px;
    margin-left: 50px;
}
.sec_below_baanner p{
    font-size: 15px;
}
/************************ Below Banner  Section CSS Ends **************/


/************************ Home About Section CSS Starts **************/
.home_about{
    padding: 30px 0;
}
.home_about .right{
    padding: 0 120px;
}
.home_about .right h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 30px;
}
.home_about .right h3 span{
    font-weight: 400;
}
.home_about .right p{
    margin-bottom: 30px;
    color: #808080;
}
/************************ Home About Section CSS Ends **************/

/************************ Home Assistance Section CSS Starts **************/
.sec_assistance{
    padding: 40px 0;
}

.sec_assistance h3{
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 30px;
}
.sec_assistance h3 span{
    font-weight: 400;
}
.sec_assistance p{
    color: #808080;
}
.sec_assistance ul{
    padding: 30px 20px;
}
.sec_assistance ul li{
    list-style: disc;
}

/************************ Home Assistance Section CSS Ends **************/

.sec_ad{
    padding: 20px 0 60px 0;
}
.sec_ad p{
    color: #808080;
}


.sec_home_company h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 40px;
}
.sec_home_company h3 span{
    font-weight: 400;
}
.sec_home_company h5{
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
}
.sec_home_company p{
    color: #808080;
}
.sec_home_company .sec_btn{
    margin-top: 40px;
}
.sec_home_company .sec_btn .grad_btn{
    margin-left: 15px;
}
.sec_contact{
    background: var(--primary-color);
    padding: 60px 0;
    border-bottom: 5px solid var(--secondary-color);
}

.sec_contact h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 30px;
    color: #fff;
}


.sec_contact h3 span{
    font-weight: 400;
}
.sec_contact p{
    color: #fff;
}


.sec_mission{
    padding: 50px 0 80px 0;
}
.sec_mission .content img{
   max-width: 65px;
    margin-bottom: 10px;
}
.sec_mission .sec_btn{
    margin-top: 50px;
}
.sec_mission .content h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 20px;
}
.sec_mission .content  p{
    color: #808080;
}

.sec_mission_accordion {
    background:#F2F2F2;
    padding: 60px 0 100px 0;
}
.sec_mission_accordion h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 30px;
}

.sec_mission_accordion h3 span{
    font-weight: 400;
}

.sec_mission_accordion .left .sec_btn{
    margin-top: 30px;
}

.sec_mission_banner{
    background:var(--primary-color);

    color: #fff;
}
.sec_mission_banner .container{
    padding: 60px 0;
}
.sec_mission_banner h3{
    color: #fff;
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
    margin-bottom: 30px;
}
.sec_mission_banner h3 span{
    font-weight: 400;
}
.sec_mission_banner h5{
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sec_about_slider{
    padding: 50px 0;
}
.sec_about_slider h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 30px;
}

.sec_about_slider h3 span{
    font-weight: 400;
}
.sec_about_slider .slider-part{
    margin-top: 30px;
}
.sec_about_slider  .swiper-slide img{
    height: 400px;
    object-fit: cover;
}
.sec_assistance.service{
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
}

.scroll-snap-wrapper .sec_assistance{
    height: 100vh;
}

.sec_formacao{
    padding: 30px 0;
}

.sec_formacao .sec_title h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 15px;
}

.sec_formacao .sec_title h3 span {
    font-weight: 400;
}

.sec_formacao .sec_title {
    margin-bottom: 50px;
}

.sec_formacao .online-form{
    padding: 30px 50px;
    background: #F2F2F2;
    text-align: center;
}
.sec_formacao .online-form h3{
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 25px;
}
.sec_formacao .online-form .grad_btn{
    width: 100%;
    color: #fff;
    padding: 14px 20px;
    box-shadow: none;
    letter-spacing: 2px;
}
.sec_formacao .online-form  .form-select{
    padding: 12px 40px;
    color: var(--primary-color);
    /* font-weight: 600; */
    letter-spacing: 0.5px;
    /* font-family: "Lato", sans-serif; */
    font-size: 18px;
    border: none;
    border-radius: 30px;
}

/*.sec_sala a{*/
/*    font-size: 14px;*/
/*    letter-spacing: 1px;*/
/*    padding: 12px 30px;*/
/*}*/

.sec_sala{
    padding: 30px 0;
}
.sec_sala h3{
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.sec_sala p {
    margin-bottom: 25px;
    color: #808080;
    line-height: 1.7;
}
.sec_sala img{
    height: 380px ;
    object-fit: cover;
}
.sec_comunidade{
    padding: 50px 0 ;
}
.sec_comunidade .swiper-slide{
    text-align: center;
}

.sec_comunidade .sec_title h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 30px;
}
.sec_comunidade  img{
    max-width: 160px;
}

.sec_contact_main{
    background: #F2F2F2;
    padding: 60px 0;
}
.sec_contact_main .left{
    padding: 0 100px;
}

.sec_contact_main .left h3{
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 15px;
}
.sec_contact_main .right h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 15px;
}
.sec_contact_main .right h3 span{
    font-weight: 400;
}
.sec_contact_main .left h5{
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.sec_contact_main .left ul li{
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primay-color);
}
.sec_contact_main .left ul li a{
    color: var(--primay-color);
    text-decoration: none;
}
.sec_contact_main .left ul{
    padding-bottom: 30px;
}
.sec_contact_main .main_form{
    margin-top: 50px;
}
.main_form{
    background: #fff;
    padding: 40px 80px;

}

 .main_form .form-select{
    background: #F2F2F2;
    border: none;
    padding: 13px 15px;
}
 .main_form .form-control{
    border: none;
    border-bottom: 1px solid var(--primary-color);
    border-radius: 0;
    color: var(--primary-color);
}
 .main_form input::placeholder,
 .main_form textarea::placeholder
{
    color: var(--primary-color);
}

.last-class{
    background: var(--primary-color);
    text-align: center;
    padding-bottom: 10px ;
}
.last-class p{
    color: #fff;
    margin: 0;
    font-size: 12px;
}
.last-class p a{
    color: #fff;
}


.sec_packs{
    padding:30px 0 60px;
}
.sec_packs h3{
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 10px;
}
.sec_packs h5{
    font-size: 38px;
    margin-bottom: 40px;
}
.sec_packs .item{
    background: #F2F2F2;
    border-radius: 30px;
    overflow: hidden;
    min-height: 1020px;
}
.sec_packs .item h3{
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 20px 0;
    letter-spacing: 1px;
}
.sec_packs .item  .wrapper-content{
    padding: 30px 40px;
}
.sec_packs .item  .wrapper-content h4{
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.sec_packs .item  .wrapper-content .content{
    margin: 20px 0;
}
.sec_packs .item  .wrapper-content .content li{
    color: #808080;
    list-style: disc;
}
.sec_packs .item  .wrapper-content .content ul{
    padding: 0 20px;
}
.sec_packs .item  .wrapper-content .down-content{
    font-weight: 900;
}
.sec_packs .item  .wrapper-content  .blue_btn{
    letter-spacing: 1px;
    margin-top: 40px;
}
.sec_packs .item .price p{
    color:#4D4D4D;
    font-weight: 900;
}
.sec_packs .item .price .main-price{
    color: var(--primary-color);
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 0px;
    line-height: 1.2;
}
.sec_packs .item .price .main-price span{
    font-size: 18px;
}
.home_about.about-page{
    padding-top: 70px;
}

.sec_mission_accordion .accordion-button{
    background: none;
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-color);
    padding: 0px;
    box-shadow: none;
}
.sec_mission_accordion .accordion-body {
    padding: 10px 0px;
    width: 66%;
    color: #808080;
}
.sec_mission_accordion .accordion-item{
    background: none;
    border: none;
    padding: 30px 0 30px 80px;
    border-bottom: 1px solid var(--secondary-color);
}

.sec_mission_accordion .accordion-button span{
    position: absolute;
    left: -60px;
    top: 5px;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 400;
}

.sec_mission_accordion .accordion-button::after {
    font-family: 'Font Awesome 5 Free'; /* or just use content directly */
    content: '+';
    font-weight: bold;
    float: right;
    margin-left: auto;
    transition: transform 0.2s;
    background: none;
    transform:none;
    font-weight: 500;
    font-size: 40px;
    color:var(--secondary-color);
}

.sec_mission_accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(42deg);
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.sec_second_banner{
    padding: 130px 0;
    text-align: center;
    color: #fff;
}
.sec_second_banner h3{
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 20px;
}
.sec_second_banner p{
    color: #fff;
    margin-bottom: 20px;
}
.sec_assistance.service img{
    height: 91vh;
    object-fit: cover;
}

.fixed-bar.scrolled{
    position: fixed;
    width: 100%;
    z-index: 9999;
}
footer h5{
    color: #fff;
    font-size: 12px ;
    font-weight: 900;
    margin-bottom: 20px;
}
footer li{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}
footer .footer-menu li{
    line-height: 2.5;
}
footer .footer-menu li a:hover, .sec_top li a:hover{
    color: var(--secondary-color);
}

.sec_second_menu .col a{
    color: var(--primary-color);
    text-decoration: none;
}

.sec_top  .mobile-menu span{
    color: #fff;
}

.third .item h3{
    background: linear-gradient(to right, #c99b62, #e8c892, #f4dab1, #c99b62, #e8c892);
    color: var(--primary-color);
}
.third .item{
    position: relative;
}
.third .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* thickness of the "border" */
    background: linear-gradient(to right, #c99b62, #e8c892, #f4dab1, #c99b62, #e8c892);
    border-radius: 30px;
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.sec_assistance,
.home_about{
    overflow: hidden;
}

button:focus,
[role="button"]:focus,
input:focus,
textarea:focus,
[aria-expanded]:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
footer ul li a:hover{
	color: var(--secondary-color);
}