html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #F9F1F5 ;
    max-width: 1440px;
    margin: 0 auto;
    color: #C78BAE;
}

.home {
    background: url(../images/ACB04256.png) no-repeat;
    background-size: 1600px;
    height: 700px;
    color: #f5f5f5;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px 60px;
    font-family: 'Heebo';
}

.home .titulo {
    display: inline;
}

.home .titulo h2 {
    font-size: 26px;
    font-weight: 400;
    line-height: 70px;
    padding-top: 100px;
    text-transform: uppercase;
    padding-left: 120px;
}

.home .titulo img {
    width: 600px;
    padding-left: 120px;
}

.sobre-360 {
    width: 1030px;
    height: 430px;
    background-color: #E9CADC;
    border-radius: 40px;
    margin: 40px auto;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    color: #000;
}

.sobre-360 .info-sobre-360 h2 {
    font-size: 43px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
    width: 560px;
    margin-bottom: 15px;
}

.sobre-360 .info-sobre-360 p {
    font-size: 29px;
    line-height: 34px;
    text-transform: uppercase;
    width: 400px;
    margin-bottom: 60px;
}

.sobre-360 .info-sobre-360 .fa-arrow-circle-right {
    font-size: 50px;
    color: #C78BAE;
    background-color: #F9F1F5;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.sobre-360 video {
   height: 481px;
   border-radius: 36px; 
   transform: translateY(-20px);
}

.depoimentos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 140px 60px 80px; 
    gap: 40px;
}

.depoimentos video {
    height: 484px;
    border-radius: 43px;
}

.depoimentos .info-depoimento {
    display: flex;
    flex-direction: column;
}

.depoimentos .info-depoimento h2 {
    font-size: 47px;
    font-weight: 400;
    text-transform: uppercase;
    color: #EA8BB6;
    width: 600px;
    margin-bottom: 40px;
}

.depoimentos .info-depoimento h2 .cor2 {
    color: #994F7A;
}

.depoimentos .info-depoimento h2 .weight {
    font-weight: 800;
}

.depoimentos .info-depoimento .linha-fotos {
    display: flex;
}

.depoimentos .info-depoimento .linha-fotos .foto-aluna {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: -10px;
}

.depoimentos .info-depoimento .linha-fotos .foto-aluna:nth-child(odd) {
    background: #EA8BB6;
}

.depoimentos .info-depoimento .linha-fotos .foto-aluna:nth-child(even) {
    background: #E9CADC;
}

.inscricao {
    width: 1050px;
    height: 350px;
    background-color: #C78BAE;
    border-radius: 40px;
    margin: 40px auto;
    padding: 40px 20px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.inscricao .info-inscricao h2 {
    font-size: 49px;
    font-weight: 800;
    line-height: 52px;
    text-transform: uppercase;
    width: 600px;
    margin-bottom: 20px;
}

.inscricao .info-inscricao .btn-inscricao {
    color: #fff;
    background-color: #EA8BB6;
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 10px;
    transition: 0.4s;
}

.inscricao .info-inscricao .btn-inscricao:hover {
    color: #EA8BB6;
    background-color: #fff;
}

.inscricao .info-inscricao .btn-inscricao img {
    width: 30px;
    transform: translate(-10px, 8px);
}

.inscricao .info-inscricao .btn-inscricao .fa-arrow-circle-right {
    font-size: 27px;
    transform: translate(10px, 3px) rotate(-45deg);
}

.inscricao .foto-inscricao {
    width: 335px;
    height: 316px;
    border-radius: 30px;
    background: url(../images/ACB04303.jpg) no-repeat;
    background-size: 520px;
    background-position: -120px -62px;
}

.hidden {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: translateY(0px);
    transition: all 1s;
}