/*--------------------------------------------------------------
Início fontes
--------------------------------------------------------------*/
@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Black.eot');
    src: url('../font/WorkSans-Black.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Black.woff2') format('woff2'),
    url('../font/WorkSans-Black.woff') format('woff'),
    url('../font/WorkSans-Black.ttf') format('truetype'),
    url('../font/WorkSans-Black.svg#WorkSans-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-ExtraBold.eot');
    src: url('../font/WorkSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-ExtraBold.woff2') format('woff2'),
    url('../font/WorkSans-ExtraBold.woff') format('woff'),
    url('../font/WorkSans-ExtraBold.ttf') format('truetype'),
    url('../font/WorkSans-ExtraBold.svg#WorkSans-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Light.eot');
    src: url('../font/WorkSans-Light.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Light.woff2') format('woff2'),
    url('../font/WorkSans-Light.woff') format('woff'),
    url('../font/WorkSans-Light.ttf') format('truetype'),
    url('../font/WorkSans-Light.svg#WorkSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Thin.eot');
    src: url('../font/WorkSans-Thin.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Thin.woff2') format('woff2'),
    url('../font/WorkSans-Thin.woff') format('woff'),
    url('../font/WorkSans-Thin.ttf') format('truetype'),
    url('../font/WorkSans-Thin.svg#WorkSans-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Regular.eot');
    src: url('../font/WorkSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Regular.woff2') format('woff2'),
    url('../font/WorkSans-Regular.woff') format('woff'),
    url('../font/WorkSans-Regular.ttf') format('truetype'),
    url('../font/WorkSans-Regular.svg#WorkSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Medium.eot');
    src: url('../font/WorkSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Medium.woff2') format('woff2'),
    url('../font/WorkSans-Medium.woff') format('woff'),
    url('../font/WorkSans-Medium.ttf') format('truetype'),
    url('../font/WorkSans-Medium.svg#WorkSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-SemiBold.eot');
    src: url('../font/WorkSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-SemiBold.woff2') format('woff2'),
    url('../font/WorkSans-SemiBold.woff') format('woff'),
    url('../font/WorkSans-SemiBold.ttf') format('truetype'),
    url('../font/WorkSans-SemiBold.svg#WorkSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-ExtraLight.eot');
    src: url('../font/WorkSans-ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-ExtraLight.woff2') format('woff2'),
    url('../font/WorkSans-ExtraLight.woff') format('woff'),
    url('../font/WorkSans-ExtraLight.ttf') format('truetype'),
    url('../font/WorkSans-ExtraLight.svg#WorkSans-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../font/WorkSans-Bold.eot');
    src: url('../font/WorkSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../font/WorkSans-Bold.woff2') format('woff2'),
    url('../font/WorkSans-Bold.woff') format('woff'),
    url('../font/WorkSans-Bold.ttf') format('truetype'),
    url('../font/WorkSans-Bold.svg#WorkSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*--------------------------------------------------------------
Fim fontes
--------------------------------------------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}
.area-calculator{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.area-title{
    display: flex;
    justify-content: center;
}

.area-title h1{
    font-size: 28px;
    color: #01464d;
}

.area-form-calculator{
    width: 100%;
    margin-top: 30px;
}

.area-form-calculator form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.area-form-calculator .group-input{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.area-form-calculator .group-input label{
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.area-form-calculator .group-input input{
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid rgba(0,0,0,.8);
    border-radius: 6px;
}

.area-form-calculator .group-input input::placeholder{
    font-weight: bold;
    opacity: .5;
    color: #01464d;
}

.area-form-calculator .group-input button{
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    background-color: #01464d;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    border: none;
}

.area-calculator #result-calculator{
    display: block;
    margin-top: 30px;
    font-size: 22px;
}