﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

/**************CABEÇALHO************/

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

header .row {
    margin-top: 90px;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}

    .navbar .logo p {
        font-size: 20px;
    }

    .navbar #acesso {
        background-color: #75cfd7;
        padding: 7px 8px;
        color: #fff;
        border-radius: 3px;
    }

nav {
    flex: 1;
    text-align: right;
}

    nav ul {
        display: inline-block;
        list-style-type: none;
        opacity: 0.9;
    }

        nav ul li {
            display: inline-block;
            margin-right: 20px;
        }

a {
    text-decoration: none;
    color: #555;
}

nav ul li a:hover {
    color: #81dee6;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

    .col-2 h1 {
        font-size: 50px;
        line-height: 60px;
        margin: 26px 0;
    }

    .col-2 p {
        font-size: 17px;
        padding-right: 15px;
    }

    .col-2 img {
        max-width: 100%;
        width: 600px;
        border-radius: 20px;
    }

.btn {
    display: inline-block;
    background: #75cfd7;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 10px;
    transition: background 0.5s;
}

/**************RODAPÉ************/

.footer {
    
    display: flex;
    justify-content: center;
    align-items:center;
    height:7vh;
    position: absolute;
    width: 100%;
    bottom: 0;

    background: #75cfd7;
    color:#fff;
    font-size:15px;     

}

.menu-icon {

    height:28px;
    margin-left: 20px;
    display: none;

}

    /**************MEDIA QUERY************/
@media only screen and (max-width: 800px) {


    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }

        nav ul li {
            display: block;
            margin-right: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

            nav ul li a {
                color: #fff;
            }

    .menu-icon {
        display: block;
        cursor: pointer;
    }

    .col-2 h1 {
        font-size: 30px;
        line-height: 45px;
    }


    header .row {
        margin-top: 45px;
    }

    .footer {
        position: fixed;
        margin-top:20px;
    }

}
