@font-face {
    font-family: "Burgundia";
    src: url("../../fonts/Burgundia.otf");
}
body{
    width: 100%;
}
.contentPage{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Roboto", "Inter", sans-serif;
    letter-spacing: 0.01071em;
    background-color: #141414;
}
.contentImgs{
    width: 100%;
    position: relative;
    display: none;
    justify-content: center;
}
.banner{
    width: 100%;
    aspect-ratio: 10 / 2;
}
.banner img{
    width: 100%;
    aspect-ratio: 10 / 2;
    object-fit: cover;
    object-position: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.profileImg{
    position: absolute;
    bottom: -140px;
}
.profileImg img{
    width: 230px;
    height: 230px;
    background-color: var(--background);
    object-fit: contain;
    border-radius: 100%;
    border: 2px solid rgb(224, 224, 224);
}
.infoProfile{
    margin-top: 156px;
    display: none;
}
.nameCompany{
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    color: white;
}
.location{
    margin-top: 12px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: gray;
}
.location img{
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.location span{
    display: flex;
    align-items: center;
}
.location a{
    text-decoration: none;
    color: var(--elements);
    margin-top: 8px;
}

.containerSections{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}
.section{
    margin-top: 38px;
    padding-top: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    left: 0px;
    right: 0px;
    position: relative;
    width: 100%;
    opacity: 1;
    transition: all 0.4s;
}
.titleSection{
    font-size: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 75%;
    height: 50px;
    padding-left: 42px;
    box-sizing: border-box;
    text-wrap: nowrap;
    border-radius: 10px;
    background-image: linear-gradient(to right, #10C4A2, #019176);
}
.rowBarbers{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.colBarber{
    margin-left: 28px;
    margin-right: 28px;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
    padding-bottom: 12px;
    transition: all 0.4s;
    overflow: hidden;
    cursor: pointer;
}
.imgColBarber{
    width: 100%;
}
.imgColBarber img{
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    color: white;
}
.nameColBarber{
    margin-top: 28px;
    font-size: 32px;
    color: white;
    font-family: "Burgundia";
    text-align: center;
}
.rowBarbers .colBarber:first-child{
    margin-left: 0px;
}
.rowBarbers .colBarber:last-child{
    margin-right: 0px;
}
.colBarber:hover{
    max-width: 268px;
}
.barberSelected{
    background-color: var(--elements);
}
.barberSelected .nameColBarber{
    color: white;
}

.rowServices{
    width: 75%;
    display: flex;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.colService{
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 12px;
    border-bottom-left-radius: 58px;
    border-top-left-radius: 58px;
    font-weight: 600;
    box-sizing: border-box;
    min-width: 320px;
    margin-right: 20px;
    transition: all 0.4s;
    padding-left: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    overflow: hidden;
    cursor: pointer;
}
.imgService img{
    width: 136px;
    height: 136px;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid rgb(231, 231, 231);
    box-sizing: border-box;
}
.infoService{
    margin-left: 22px;
}
.titleService{
    font-size: 24px;
    width: 170px;
    color: white;
}
.timeService{
    margin-top: 8px;
    font-size: 20px;
    color: gray;
}
.timeService strong{
    margin-bottom: 8px;
    display: block;
    font-size: 30px;
}
.timeService strong span{
    font-size: 20px;
}
.timeService img{
    width: 16px;
    height: 16px;
    margin-right: 12px;
    filter: brightness(0%) invert(61%) sepia(91%) saturate(3559%) hue-rotate(129deg) brightness(96%) contrast(101%);
}
.rowServices .colService:first-child{
    margin-left: 0px;
}
.rowServices .colService:last-child{
    margin-right: 0px;
}
.serviceSelected{
    background-color: var(--elements);
    color: white;
}
.serviceSelected .timeService img{
    filter: brightness(0%) invert(100%);
}
.serviceSelected .timeService{
    color: white;
}
.alertSection{
    margin-top: 18px;
    margin-left: 8px;
    color: red;
    font-weight: 600;
    font-size: 18px;
    display: none;
}

.contentCalendar{
    width: 100%;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleMonth{
    font-size: 28px;
    font-weight: 600;
    color: white;
}
.calendar{
    width: 60%;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}
.calendar::-webkit-scrollbar{
    height: 7px;
}
.calendar::-webkit-scrollbar-track{
    background-color: transparent;
}
.calendar::-webkit-scrollbar-thumb{
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 8px;
}
.dayCalendar{
    min-width: 108px;
    height: 138px;
    border: 2px solid var(--elements);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    border-radius: 12px;
    margin-right: 18px;
    cursor: pointer;
}
.weekDayCalendar{
    margin-top: 20px;
    font-size: 14px;
}
.monthDayCalendar{
    margin-top: 26px;
    font-size: 38px;
    font-weight: 600;
    color: white;
}
.daySelected{
    background-color: var(--elements);

}
.dayU{
    opacity: 0.2;
    cursor: not-allowed;
}

.rowHours{
    margin-top: 18px;
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.colHour{
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 20px;
    width: 100%;
    height: 58px;
    max-width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgb(206, 206, 206);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}
.hourSelected{
    background-color: var(--elements);
    color: white;
    border: 0px;
}

.form{
    margin-top: 78px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inputForm{
    display: flex;
    flex-direction: column;
    width: 60%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--elements);
}
.inputForm input{
    margin-top: 8px;
    width: 100%;
    height: 36px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 10px;
    background-color: transparent;
    box-sizing: border-box;
    padding-left: 18px;
    padding-right: 18px;
    color: white;
    transition: border 0.4s;
}
.inputForm input:focus{
    outline: none;
    border: 1px solid var(--elements);
}
.btnForm{
    margin-top: 12px;
    height: 58px;
    width: 630px;
    z-index: 20;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.btnForm button{
    width: 622px;
    height: 50px;
    background-image: linear-gradient(to right, #00BE8C, #006C4F);
    border-radius: 24px;
    color: white;
    font-weight: 600;
    font-size: 24px;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@keyframes animBtn {
    0%{
        margin-left: 0px;
    }
    100%{
        margin-left: 100%;
    }
}
@keyframes animBorderBtn {
    100%{
        transform: rotate(360deg);
    }
}
.btnForm::before{
    content: '';
    position: absolute;
    top: calc(50% - height);
    left: calc(50% - width);
    width: 100%;
    height: 60%;
    background: conic-gradient(#00ffbb, #00ffbb);
    z-index: -1;
    animation: animBorderBtn 4s linear infinite;
}
.btnForm::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #65f9f8;
    opacity: 0.65;
    z-index: -2;
}


.imgBtn{
    width: 24px;
    margin-left: 18px;
}
.btnC img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.rowBtns{
    display: flex;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 28px;
}
.btnBack{
    margin-right: 20px;
    display: none;
}
.btnBack button{
    background: transparent;
    border: 2px solid var(--elements);
    color: var(--elements);
}
.btnBack::before{
    display: none;
}
.btnBack::after{
    display: none;
}

.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #141414;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    z-index: 9999;
}
.imgPopup img{
    width: 210px;
    height: 210px;
    object-fit: contain;
}
.titlePopup{
    margin-top: 26px;
    font-size: 34px;
    font-weight: 600;
    color: white;
}
.textPopup{
    margin-top: 14px;
    font-size: 18px;
    color: white;
}

.contentImgsLoad{
    display: flex;
}
@keyframes loading{
    0%{
        background-color: rgb(226, 226, 226);
    }
    100%{
        background-color: rgb(189, 189, 189);
    }
}
.bannerLoad{
    height: 240px;
    animation: loading 1s linear alternate infinite;
}
.profileImgLoad{
    width: 168px;
    height: 168px;
    border-radius: 100%;
    animation: loading 1s linear alternate infinite;
}


.infoProfileLoad{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nameCompanyLoad{
    width: 180px;
    height: 22px;
    animation: loading 1s linear alternate infinite;
}
.locationLoad{
    width: 164px;
    height: 18px;
    animation: loading 1s linear alternate infinite;
}
.colServiceLoad{
    width: 100%;
    max-width: 248px;
    height: 330px;
    border-radius: 12px;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 20px;
    animation: loading 1s linear alternate infinite;
}

.calendarLoad{
    width: 630px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleCalendarLoad{
    width: 180px;
    height: 22px;
    animation: loading 1s linear alternate infinite;
}
.weekCalendarLoad{
    margin-top: 8px;
    width: 100%;
    height: 28px;
    animation: loading 1s linear alternate infinite;
}
.daysCalendarLoad{
    margin-top: 12px;
    width: 100%;
    height: 200px;
    animation: loading 1s linear alternate infinite;
}


.contentLoginPopup{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 8000;
    transition: all 0.4s;
}
.blurBg{
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
}
.loginPopup{
    width: 480px;
    background-color: #141414;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 12px 4px var(--elements);
    z-index: 20;
}
.titleLogin{
    width: 90%;
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgb(221, 221, 221);
    color: white;
}
.loginSection{
    margin-top: 28px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleSectionLogin{
    font-size: 38px;
    font-weight: 600;
    color: white;
}
.formLogin{
    width: 90%;
    margin-top: 32px;
}
.inputFormLogin{
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.inputFormLogin span{
    font-weight: 600;
    margin-left: 8px;
    color: var(--elements);
}
.inputFormLogin input{
    margin-top: 8px;
    width: 100%;
    height: 38px;
    background-color: transparent;
    border: 1px solid var(--elements);
    border-radius: 12px;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
    color: white;
}
.inputFormLogin input:focus{
    outline: none;
}
.linkForm{
    width: 100%;
    text-align: right;
}
.linkForm a{
    color: var(--elements);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
.btnFormLogin{
    margin-top: 38px;
    padding-bottom: 32px;
    width: 100%;
}
.btnFormLogin button{
    width: 100%;
    height: 42px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #10C4A2, #019176);
    border: 0px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.alertForm{
    margin-left: 8px;
    margin-top: 8px;
    color: red;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.itemsResume{
    margin-top: 28px;
    padding: 38px 38px 20px 38px;
    border-radius: 12px;
    border: 2px solid var(--elements);
}
.itemResume{
    margin-bottom: 18px;
    font-size: 22px;
    color: white;
}


@media screen and (max-width: 980px){
    .banner img{
        height: 400px;
    }
    .profileImg{
        bottom: -168px;
    }
    .profileImg img{
        width: 380px;
        height: 380px;
    }
    .infoProfile{
        margin-top: 186px;
    }
    .nameCompany{
        font-size: 80px;
        margin-top: 12px;
    }
    .location{
        font-size: 40px;
    }
    .location img{
        width: 48px;
        height: 48px;
    }

    .containerSections{
        height: auto;
    }
    .section{
        margin-top: 48px;
        padding-top: 64px;
        border-width: 2px;
    }
    .titleSection{
        height: 104px;
        font-size: 56px;
        width: 95%;
    }
    .rowBarbers{
        margin-top: 28px;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    .colBarber{
        max-width: none;
        width: 95%;
        font-size: 24px;
        margin: 0px;
        margin-top: 64px;
        text-align: center;
        box-sizing: border-box;
    }
    .nameColBarber{
        font-size: 70px;
        height: 120px;
        letter-spacing: 20px;
    }
    .colBarber:hover{
        max-width: none;
        width: 85%;
    }

    .rowServices{
        margin-top: 28px;
        margin-bottom: 20px;
        align-items: flex-start;
        width: 90%;
    }
    .colService{
        width: 100%;
        height: 320px;
        font-size: 24px;
        margin-top: 98px;
        justify-content: flex-start;
        box-sizing: border-box;
        padding-left: 20px;
    }
    .imgService img{
        width: 300px;
        height: 300px;
    }
    .infoService{
        margin-left: 54px;
    }
    .titleService{
        font-size: 55px;
        text-align: left;
        width: auto;
    }
    .timeService{
        font-size: 48px;
        margin-top: 14px;
    }
    .timeService strong{
        margin-bottom: 24px;
        font-size: 64px
    }
    .timeService strong span{
        font-size: 48px;
    }
    .timeService img{
        width: 42px;
        height: 42px;
        margin-right: 26px;
    }
    .alertSection{
        font-size: 28px;
    }

    .titleMonth{
        font-size: 58px;
    }
    .calendar{
        width: 80%;
    }
    .calendar::-webkit-scrollbar{
        width: 0px;
        height: 0px;
    }
    .dayCalendar{
        min-width: 198px;
        height: 232px;
    }
    .weekDayCalendar{
        font-size: 32px;
    }
    .monthDayCalendar{
        font-size: 72px;
    }

    .rowHours{
        margin-top: 28px;
        margin-bottom: 20px;
    }
    .colHour{
        max-width: 380px;
        height: 94px;
        font-size: 34px;
        text-align: center;
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
    }

    .form{
        margin-top: 64px;
    }
    .inputForm{
        width: 90%;
        font-size: 32px;
        margin-bottom: 36px;
    }
    .inputForm input{
        height: 78px;
        margin-top: 14px;
        font-size: 34px;
        border-radius: 14px;
    }
    .btnForm{
        width: 870px;
        height: 98px;
    }
    .btnForm button{
        height: 92px;
        font-size: 46px;
        border-radius: 48px;
        width: 864px;
    }
    .rowBtns{
        flex-direction: column;
    }
    .btnC{
        margin-top: 48px;
    }
    .btnC img{
        width: 40px;
        height: 40px;
    }
    .btnForm::before{
        width: 100%;
    }
    .btnBack{
        margin: 0px;
    }


    .imgPopup img{
        width: 380px;
        height: 380px;
    }
    .titlePopup{
        margin-top: 38px;
        font-size: 54px;
    }
    .textPopup{
        margin-top: 22px;
        font-size: 32px;
        width: 80%;
        text-align: center;
    }

    .bannerLoad{
        height: 360px;
    }
    .profileImgLoad{
        width: 298px;
        height: 298px;
    }
    .nameCompanyLoad{
        width: 430px;
        height: 46px;
    }
    .locationLoad{
        height: 34px;
        width: 390px;
    }
    .colServiceLoad{
        max-width: 360px;
        height: 460px;
        margin-top: 42px;
    }
    .calendar{
        width: 770px;
    }
    .titleCalendarLoad{
        width: 280px;
        height: 38px;
    }
    .weekCalendarLoad{
        height: 42px;
    }
    .daysCalendarLoad{
        height: 340px;
    }

    .loginPopup{
        width: 95%;
        border-radius: 36px;
    }
    .titleLogin{
        margin-top: 48px;
        font-size: 42px;
        padding-bottom: 56px;
        border-width: 2px;
    }
    .loginSection{
        margin-top: 40px;
    }
    .titleSectionLogin{
        font-size: 76px;
    }
    .formLogin{
        margin-top: 98px;
        width: 95%;
    }
    .inputFormLogin{
        margin-bottom: 48px;
    }
    .inputFormLogin span{
        font-size: 40px;
    }
    .inputFormLogin input{
        margin-top: 12px;
        height: 76px;
        border-radius: 28px;
        font-size: 36px;
        padding-left: 28px;
        padding-right: 28px;
    }
    .linkForm a{
        font-size: 36px;
    }
    .btnFormLogin{
        margin-top: 48px;
        padding-bottom: 86px;
    }
    .btnFormLogin button{
        height: 84px;
        font-size: 38px;
        border-radius: 36px;
    }
    .alertForm{
        margin-top: 12px;
        font-size: 32px;
    }

    .itemsResume{
        margin-top: 68px;
        padding: 76px 76px 48px 76px;
        border-radius: 28px;
    }
    .itemResume{
        margin-bottom: 28px;
        font-size: 48px;
    }
}