@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {padding:0;margin:0}
*, div {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
html {
    width: 100%;
    height: 100%;
    font-size: 10px; /*1px = 0.1rem*/
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    color: #1D1E1C;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: auto;
}
a {
    color: #1D1E1C;
}
input[type="text"],input[type="password"],input[type="email"],input[type="button"],select,textarea, button {-webkit-appearance:none;-moz-appearance:none;}

::placeholder {
    color: #1D1E1C;
    opacity: 1; 
}
:-ms-input-placeholder {
    color: #1D1E1C;
}
::-ms-input-placeholder {
    color: #1D1E1C;
}
@media only screen and (max-width: 640px) {
    .mobilehd {
        display: none;
    }
}
@media only screen and (min-width: 691px) {
    .mobilesw {
        display: none;
    }
}
.wrapper {
    width: 100%;
    max-width: 112rem;
    height: 100%;
    margin: 0 auto;
    padding: 0 0 2rem;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-flow: row;
    flex-wrap: wrap;
}
@media only screen and (max-width: 1280px) {
    .wrapper {
        align-content: space-between;
    }
    .wrapper--int {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}
@media only screen and (max-height: 1000px) {
    .wrapper--int {
        padding-top: 2rem;
    }
}
header {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: space-between;

}
@media only screen and (max-width: 640px) {
    .headerhm {
        flex-flow: column;
    }
    .headerint {
        flex-flow: column;
    }
}
header .logo {
    width: 20%;
    display: flex;
}
header .logo.logo--hm {
    padding-top: 4rem;
}
@media only screen and (max-width: 1280px) {
    header .logo {
        padding-left: 2rem;
    }
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .headerhm .logo {
        width: 15%;
    }
    .headerint .logo {
        width: 15%;
    }
}
@media only screen and (max-width: 640px) {
    header .logo {
        display: flex;
        align-items: start;
        justify-content: center;
        padding-left: 0;
    }
    .headerhm .logo {
        width: 100%;
    }
    .headerint .logo {
        width: 100%;
    }
}
header .logo img {
    max-width: 20rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .headerhm .logo img {
        max-width: 10rem;
    }
    .headerint .logo img {
        max-width: 6rem;
    }
}
@media only screen and (max-width: 640px) {
    .headerhm .logo img {
        max-width: 10rem;
    }
    .headerint .logo img {
        max-width: 7rem;
    }
}
header .tit {
    width:calc(100% - 40rem);
    text-align: center;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    header .tit {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 640px) {
    header .tit {
        width: 100%;
    }
    .headerhm .tit {
        width: 100%;
    }
    .headerint .tit {
        width: 100%;
    }
}
header .tit h1 {
    color: #efa70a;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 800;
}
header .tit h1 strong {
    font-size: 6.4rem;
    line-height: 6.4rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    header .tit h1 {
        font-size: 2.7rem;
        line-height: 2.7rem;
    }
    header .tit h1 strong {
        font-size: 3.1rem;
        line-height: 3.1rem;
    }
}
@media only screen and (max-width: 640px) {
    header .tit h1 {
        font-size: 3.3rem;
        line-height: 3.3rem;
    }
    .headerint .tit h1 {
        font-size: 2rem;
        line-height: 2rem;
    }
    header .tit h1 strong {
        font-size: 3.1rem;
        line-height: 3.1rem;
    }
}
header .tit.tit--int {
    text-align: left;
    width: calc(100% - 20%);
    padding-left: 4rem;
}
header .tit.tit--int h1{
    padding-top: 1rem;
}
header .side {
    width: 100%;
    max-width: 20rem;
    background-color: #efa70a;
    border-radius: 0px 0px 24px 24px;
    -webkit-border-radius: 0px 0px 24px 24px;
    -moz-border-radius: 0px 0px 24px 24px;
    padding-top: 3rem;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
}
@media only screen and (max-width: 640px) {
    header .side {
        display: none;
    }
}
header .side strong{
    color: #1D1E1C;
}
.img {
    width: 100%;
    max-width: 88rem;
    margin-top: 1.7rem;
}
@media only screen and (max-height: 800px) and (orientation: landscape) {
    .img {
        width: 70%;
    }
}
@media only screen and (max-width: 915px) and (max-height: 415px) and (orientation: landscape) {
    .img {
        width: 35%;
    }
}

.login {
    width: 100%;
    display: flex;
    max-width: 128rem;
    margin: 1.7rem auto;
    align-items: center;
}
@media only screen and (min-width: 641px) {
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .login {
        margin: 1rem auto;
    }
}
@media only screen and (max-width: 640px) {
    .login {
        flex-flow: column;
    }
}
.login h2 {
    width: 32%;
    font-size: 3.6rem;
    text-align: right;
    padding-right: 1.7rem;
}
@media only screen and (min-width: 641px) {
    .login h2 {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .login h2 {
        font-size: 2.6rem;
    }
}
@media only screen and (max-width: 640px) {
    .login h2 {
        width: 100%;
        font-size: 2.6rem;
        text-align: center;
        padding-right: 0;
        padding-bottom: 2rem;
    }
}
.login fieldset {
    border: none;
    width: 32%;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .login fieldset {
        width: 40%;
    }
}
@media only screen and (max-width: 640px) {
    .login fieldset {
        width: 100%;
        padding: 0 2rem;
    }
}
.login input {
    width: 100%;
    height: 5.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background-color: #efa70a;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .login input {
        height: 4.5rem;
    }
}
.login ::placeholder {
    color: #FFFFFF;
    opacity: 1; 
}
.login :-ms-input-placeholder {
    color: #FFFFFF;
}
.login ::-ms-input-placeholder {
    color: #FFFFFF;
}
.login p {
    font-size: 1.6rem;
}
.login .btn {
    margin-left: 2rem;
    width: fit-content;
}
@media only screen and (min-width: 641px) {
    .login .btn {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 640px) {
    .login .btn {
        margin-top: 1.3rem;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .login__p {
        text-align: center;
        margin-top: 1.5em;
    }
}
.take {
    width: 100%;
    max-width: 112rem;
    font-size: 2.6rem;
    font-weight: 700;
    margin: 4rem auto 1.7rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .take p {
        font-size: 1.6rem;
    }
    .take p br {
        display: none;
    }
}
@media only screen and (max-width: 640px) {
    .take p {
        font-size: 1.8rem;
    }
}
.take p em {
    color: #efa70a;
}
.start {
    width: 100%;
    max-width: 112rem;
    border: .7rem #efa70a dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.6rem 0 6.7rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .start {
        border: .5rem #efa70a dashed;
        padding: 2rem 0;
    }
}
@media only screen and (max-width: 640px) {
    .start {
        border: .5rem #efa70a dashed;
        flex-flow: column;
        padding: 2rem 0;
    }
}
.start img {
    max-width: 30rem;
    margin: 0 3rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .start img {
        max-width: 8rem;
    }
}
@media only screen and (max-width: 640px) {
    .start img {
        max-width: 10rem;
        margin: 0 3rem;
    }
}
.start .btn{
    margin: 4rem 3rem 0;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .start .btn{
        margin: 0 3rem 0;
    }
}
@media only screen and (max-width: 640px) {
    .start .btn{
        margin: 2rem 3rem 0;
        width: calc(100% - 6rem);
    }
}

.photo-bx {
    width: 100%;
    max-width: 112rem;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.takephoto__bx {
    width: 100%;
    position: relative; 
    text-align: center;
}
.webcam {
    display: none;
    width: 100%;
    object-fit: cover;
}
.canvas {
    width: 100%;
    max-height: 86vh;
    position: relative;
    margin: 0 auto;
}
.snapshot {
    width: 100%;
    max-width: 100%;
    max-height: 86vh;
    margin: 0 auto;
}
.takephoto .btn {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .photo-bx  {
        height: calc(100vh - 4rem);
    }
    .takephoto__bx {
        width: calc(100% - 12rem);
        height: 100%;
        max-height: 86vh;
    }
    .takephoto .btn {
        width: 90%;
        margin-left: 2rem;
    }
    .canvas {
        width: auto;
        max-width: 100%;
    }
    .snapshot {
        width: auto;
        max-width: 100%;
    }
    .takephoto__bx .imgbg {
        max-height: 86vh;
    }
}
@media only screen and (max-width: 640px) {
    .takephoto__bx  {
        width: 100%;
    }
}
.btns-bx .btn {
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .save.btn {
        margin-bottom: 0;
    }
}
.btns-bx {
    width: 100%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .btns-bx {
        width: 12rem;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        padding-left: 2rem;
    }
    .btns-bx .btn {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    #save.btn, #capture.btn, #repeat.btn {
        margin-top: 0;
    }
}
@media only screen and (max-width: 640px) {
    .btns-bx {
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-flow: column;
    }
    .btns-bx .btn {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

.inspiration {
    width: 100%;
    max-width: 112rem;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 4rem;
    padding-bottom: 10rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .inspiration p {
        font-size: 1.6rem;
        margin-top: 1rem;
    }
    .inspiration p br {
        display: none;
    }
}
@media only screen and (max-width: 640px) {
    .inspiration p {
        font-size: 1.8rem;
    }
}
.btn {
    height: 6.5rem;
    background-color: transparent;
    border: 0.2rem solid #efa70a;
    -webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    line-height: 2.8rem;
    font-weight: 700;
    font-style: italic;
    color: #efa70a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-left: 3rem;
    padding-right: 3rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .btn {
        height: 4.9rem;
        font-size: 1.1rem;
        line-height: 1.1rem;
    }
}
@media only screen and (max-width: 640px) {
    .btn {
        width: 100%;
        height: 4.9rem;
        font-size: 2.1rem;
        line-height: 2.1rem;
    }
}
.btn--nobrd {
    text-decoration: none;
}
.btn.capture {
    margin-bottom: 0;
}
.btn.share {
    margin-bottom: 0;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .btn.share {
        margin-top: 0;
    }
}

.switchCameraButton {
    position: absolute;
    top: 2rem;
    right: 13%;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    background-image: url(../imgs/chage-camera.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 35px auto;
    background-color: transparent;
    border: none;
    z-index: 999;
}
@media only screen and (min-width: 916px) {
    .switchCameraButton {
        display: none !important;
    }
}
@media only screen and (max-width: 640px) {
    .switchCameraButton {
        right: 5%;
    }
}
.inspirationpp, .policy, .spin {
    width: 100%;
    max-width: 128rem !important;
    min-height: 70%;
}
.policy h2 {
    font-size: 2.7rem;
    color: #BBD37F;
    font-weight: 700;
}
.policy p {
    margin-bottom: 1rem;
}
.policy__bx {
    height: calc(100% - 4rem);
    overflow-y: auto;
    padding-right: 2rem;
    margin-top: 4rem;
}
ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 640px) {
    .policy h2 {
        font-size: 2rem;
    }
    .policy p {
        font-size: 1.4rem;
    }
    li {
        font-size: 1.4rem;
    }
}
.inspirationpp p {
    font-size: 3.6rem;
    line-height: 3.6rem;
    font-weight: 700;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #1D1E1C;
}
@media only screen and (max-width: 640px) {
    .inspirationpp p {
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .inspirationpp p {
        font-size: 1.8rem;
    }
}
.inspirationpp p em {
    color: #efa70a;
}
.inspirationpp__photos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 640px) {
    .inspirationpp__photos {
        flex-flow: column;
    }
}
.inspirationpp__photo {
    width: 50%;
    padding: 1rem;
}
@media only screen and (max-width: 640px) {
    .inspirationpp__photo {
        width: 100%;
    }
}
.spin {
    align-items: center;
}
.spin p {
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

img.loader {
    width: 6.5rem;
    margin-top: 2rem;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    img.loader {
        width: 4.9rem;
        margin-top: 2rem;
    }
}

.feedback {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20vh 1rem;
}
.feedback p {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}
.feedback p em {
    color: #efa70a;
}
.feedback p em span {
    color: #1D1E1C;
}
footer {
    width: 100%;
    text-align: right;
    font-size: 1.4rem;
    padding-bottom: 2rem;
}

@media only screen and (max-width: 915px) and (orientation: landscape) {
    footer {
        font-size: 1.2rem;
    }
    
    .ft-hm {
        padding-right: 2rem;
    }
}
@media only screen and (max-width: 640px) {
    footer {
        font-size: 1.2rem;
    }
    
    .ft-hm {
        padding-right: 2rem;
    }
}

/*custom fancy*/
.fancybox__content>.f-button.is-close-btn {
    --f-button-width: 5.3rem !important;
    --f-button-height: 5.3rem !important;
    --f-button-outline-color: transparent !important;
    background-image: url(../imgs/close.svg);
    top: 3rem !important;
    right: 3rem !important;
    opacity: 1 !important;
}
@media only screen and (max-width: 915px) and (orientation: landscape) {
    .fancybox__content>.f-button.is-close-btn {
        --f-button-width: 3.3rem !important;
        --f-button-height: 3.3rem !important;
        top: 2rem !important;
        right: 2rem !important;
    }
}
@media only screen and (max-width: 640px) {
    .fancybox__content>.f-button.is-close-btn {
        --f-button-width: 3.3rem !important;
        --f-button-height: 3.3rem !important;
        top: 2rem !important;
        right: 2rem !important;
    }
}
.f-button svg {
    display: none;
}
.fancybox__content {  
    -webkit-border-radius:2rem !important;-moz-border-radius:2rem !important;border-radius:2rem !important;
    -webkit-box-shadow: 0 0 25px 5px #808080; 
    box-shadow: 0 0 25px 5px #808080;
}
.fancybox__container {
    background-color: transparent !important;
    --fancybox-bg: rgba(24, 24, 27, 0) !important;
}
.is-compact .fancybox__content>.f-button.is-close-btn {
    --f-button-bg: rgba(0, 0, 0, 0) !important;
    --f-button-active-bg: rgba(0, 0, 0, 0) !important;
    --f-button-hover-bg: rgba(0, 0, 0, 0 !important);
}
.mirror-video {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1); /* Para navegadores webkit (como Safari) */
    transform-origin: center;
    -webkit-transform-origin: center;
  }