body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.como-utilizar {
    background: #000;
}

.wrap-iframe {
    margin: 0 1em 0 1em;
}

iframe {
    display: block;
    margin: 3em auto 4em auto;
}

/*css menu*/

.menu {
    cursor: pointer;
    background: #00b6d6;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    padding-top: 20px;
    padding-left: 20px;
}

.menu div {
    width: 20px;
    height: 2px;
    background: #fff;
    margin-bottom: 6px;
}

.nav-list {
    position: absolute;
    top: 43.5px;
    width: 70vw;
    padding: 10px 10px 0 10px;
    background: rgb(53, 53, 53);
    transform: translateX(-110%);
    transition: transform 0.3s ease-in;
    z-index: 1;
}

.nav-list.active {
    transform: translateX(0);
}

.nav-list li {
    list-style: none;
    margin-bottom: 0;
    margin-top: 15px;
}

.nav-list li::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 15px;
    background: rgb(26, 26, 26);
}

.nav-list a {
    text-decoration: none;
    color: #fff;
}

.nav-list a:hover {
    color: #00b6d6;
}

/*css como utilizar - inicio*/

.wrap-inicio{
    display: block;
    margin: 140px auto 0 auto;
    width: 90%;
}

.title-inicio::before {
    content: url(/img/logo-podosafe-35px.png);
    display: block;
    position: absolute;
    right: .20em;
    top: .4em;
    opacity: 60%;
}

.title-inicio {
    text-align: center;
    font-size: 2em;
    color: #fff;
    margin-bottom: .5em;
}

.subtitle-inicio {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 2em;
    font-weight: 400;
    color: #ccc; 
    text-align: center;
}

.button-inicio {
    display: block;
    margin:auto;
    border: none;
    padding: 20px 30px;
    border-radius: 3px;
    background: #00b6d6;
    cursor: pointer;
}

.button-inicio a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
}

.button-inicio:hover {
    transform: scale(1.08);
    transition: transform 0.2s;
}

/*css intro*/

.main-background {
    background: #f6f7f8;
}

.main-wrap {
    display: block;
    margin: 100px auto 40px auto;
    width: 90%;
    overflow-x: hidden;
}

.main-wrap h1{
    font-weight: 600;
    font-size: 28px;
}

.main-wrap h2 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 1.8em;
}

.main-wrap p {
    font-size: 1.15em;
}

.wrap-buttons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 0 10px;
}

.wrap-buttons button {
    border: none;
    background: #00b6d6;
    border-radius: 3px;
    padding: 8px 9px;
    cursor: pointer;
}

.wrap-buttons a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    
}

.button-left::before {
    content: url("/img/chevron_left_white_24dp.svg");
    vertical-align: middle;
}

.button-right::after {
    content: url("/img/chevron_right_white_24dp.svg");
    vertical-align: middle;
}

/*css form*/

.wrap-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    margin: 100px 10px 0 10px;
}

.wrap-form h1 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 33px;
}


.wrap-form label {
    font-size: 1.2em;
    margin-left: 3px;
}

#nome, #email {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    border: none;
    width: 230px;
    height: 40px;
    font-size: 1.2em;
    padding-left: 5px;
}

.wrap-button {
    display: flex;
    justify-content: center;
}

.button-submit {
    background: #00b6d6;
    border: none;
    border-radius: 3px;
    padding: 10px 13px;
    cursor: pointer;
    width: 100px;
    margin-top: 30px;
}

.button-submit a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
}

/*css páginas com figure*/

figure {
    text-align: center;
    margin: 0;
    padding: 10px;
}

.figure-img {
    width: 100%;
}

figcaption {
    font-size: 14px;
    margin-top: 5px;
}

/* css video*/

.video {
    margin: 40px auto;
    width: 265px;
    height: 149px;
}

/*css final*/

.link{
    text-decoration: none;
    color: #00b6d6;
}

/*css preload*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 80px;
    height: 80px;
}

.loader::after {
    content: "";
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 7px solid #fff;
    border-color: #00b6d6 transparent;
    animation: spin 1.2s ease infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}