/*geral*/
body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    background-color: var(--body);
}
.section {
    width: 100%;
    height: 100vh;
}
html[data-theme='light'] {
    --navBg: #e3faff;
    /*water*/
    --btnHoverColor: #eee; 
    --waterBg: rgb(220, 250, 255);
    --waterBg2: rgb(86, 202, 248);
    --waterText_h2: rgb(90, 53, 253);
    --waterText_p: #505D58;
    --waterText_p2: #505d58de;
    /*body*/
    --body: #b6f8f8; 
}
/*home*/
.home {
    width: 100%;
    height: 100%;
}
.title-content {
    height: 100%;
    margin: 0 20px;
    width: -webkit-fill-available;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}
.title-content h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 80px;
    color: var(--waterBg);
}
.title-content h3 {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 40px;
    margin-top: -70px;
    color: var(--waterBg);
}
.title-content i {
    color: var(--waterBg);
    transition: all ease .5s;
}
.title-content a {
    text-decoration: none;
    background-color:  transparent;
    padding: 5px 20px;
    border-radius: 20px;
    color: var(--waterBg);
    border: solid 2px  var(--waterBg);
    transition: all ease .5s;
    cursor: pointer;
}
.title-content a:hover {
    text-decoration: none;
    background-color:  var(--waterBg);
    padding: 5px 20px;
    border-radius: 20px;
    color: var(--waterBg2);
    border: solid 2px  var(--waterBg);
}
/*navbar*/
.home .navbar {
    position: fixed;
    background-color: var(--navBg);
    z-index: 9999;
}
.home .navbar .logo {
    background-color: transparent;
    background-color: var(--waterBg2);
    border-radius: 0 0 25px 0;
}
.home .navbar .links {
    background-color: transparent;
}
.home .navbar .links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--waterText_p);
    text-decoration: none;
}
.home .navbar .footer {
    background-color: transparent;
    width: 100%;
    height: 20%;
    justify-content: center;
}
.home .navbar .footer p{
    color: var(--waterText_p2);
}
/*water*/
.water h2 {
    margin: 0 50px;
    color: var(--waterBg2);
    font-size: 30px;
}
.water p {
    color: var(--waterText_p);
    font-size: 20px;
}
.water {
    padding-left: 250px;
    height: 100%;
    margin: 0 20px;
}
.water .input {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 25px 25px 0 0;
    background: var(--waterBg);
}
.water .input h2 {
    margin-bottom: 15px;
}
.water .input input {
    border: none;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 20px;
}
.water .input .btn{
    background-color: transparent;
    border: 1px solid var(--waterBg2);
    color: var(--waterBg2);
    padding: 2px 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: all .3s ease;
    font-size: 20px;
}
.water .input .btn:hover{
    background-color: var(--waterBg2);
    border: 1px solid var(--waterBg2);
    color: var(--btnHoverColor);
}
.water .output {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--waterBg);
    border-radius: 0 0 25px 25px;
}
.water .output h2  {
    color: var(--btnHoverColor);
}
.water .output p  {
    color: var(--btnHoverColor);
    font-size: 20px;
}
.water .output .result-top {
    width: 100%;
    height: 50%;
    background-color: var(--waterBg2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 25px 25px 0 0;
}
.water .output .result-top p{
    margin-top: 14px;
    font-size: 20px;
}
.water .output .result-down {
    width: 100%;
    height: 50%;
    display: flex;
    color: var(--btnHoverColor);
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}
.water .output .result-down h2 {
    margin-top: 20px;
}
.water .output .result-down .left{
    width: 50%;
    height: 100%;
    background-color: var(--waterBg2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 3px dotted var(--btnHoverColor);
}
.water .output .result-down .right{
    width: 50%;
    height: 100%;
    background-color: var(--waterBg2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.water .output .result-down .icon {
    width: 50px;
}
/*responsivo*/
@media  screen and (min-width:1px) {
    /*navbar*/
    .home .navbar {
       display: none;
    }
    /*water*/
    .water {
        padding-left: 0px;
    }
    .title-content {
        padding-left: 0px;
    }
}
@media  screen and (min-width:1200px) {
    /*navbar*/
    .home .navbar {
        width: 250px;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .home .navbar .footer {
        display: flex;
    }
    .home .navbar .logo {
        width: 100%;
        height: 30%;
    }
    .home .navbar .links {
        width: 100%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: left;
        flex-direction: column;
    }
    .home .navbar .links .link {
        width: 100%;
        height: 100%;
        display: initial;
        justify-content: center;
        align-items: left;
        flex-direction: column;
        padding: 115px 0 0 0;
    }
    .home .navbar .links a {
        line-height: 45px;
        display: block;
        border-bottom: 1px solid var(--waterText_p);
        margin: 0 20px;
    }
    /*water*/
    .water {
        padding-left: 250px;
    }
    .title-content {
        padding-left: 250px;
    }
}

