@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Source Sans 3", sans-serif;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
    padding: 0 15px;
    background-color: #00cad1;
    border-bottom: 2px solid #3eb3ad;
}

.logo img{
    width: 120px;
    display: flex;
}

nav a{
    text-decoration: none;
    margin: 0 0 0 15px;
    color: #fff;
    /* border: 1px solid red; */
}

nav a:hover{
    border-bottom: 2px solid #fff;
}

.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    /* border: 1px solid red; */
}

.navigation a{
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    color: #0000008e;
    border-bottom: 2px solid #00cad1;
}

.navigation a:hover{
    border-bottom: #fff;
}

.tabela-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ficture img{
    margin-top: 6px;
    width: 320px;
    height: 220px;
    /* border: 1px solid red; */
}

.tabela{
    height: 220px;
}

.tabela th,td{
    text-align: start;
    /* border: 1px solid red; */
    width: 250px;
    padding-left: 10px;
}

.tabela table{
    border-spacing: 0;
    /* border: 1px solid red; */
    color: #0000008e;
}

.tabela th{
    height: 40px;
    color: #fff;
    /* border: 2px solid #3eb3ad; */
}

.tabela td{
    height: 60px;
}

.tabela thead th{
    background-color: #00cad1;
    border-top: 2px solid #3eb3ad;
    border-bottom: 2px solid #3eb3ad;
}

.tabela thead th:last-child{
    border-right: 2px solid #3eb3ad;
}

.tabela thead th:first-child{
    border-left: 2px solid #3eb3ad;
}

.tabela tbody tr:nth-child(odd){
    background-color: #cdcdcd;
    font-weight: bold;
    color: #0000006c;
}

.tabela-4 td{
    height: 45px;
    /* border: 1px solid red; */
}

.tabela-5 td{
    height: 36px;
    /* border: 1px solid red; */
}

@media screen and (max-width: 1130px) {
    .ficture img{
        display: none;
    }
}

@media screen and (max-width: 425px){
    header{
        padding-bottom: 10px;
    }

    .ficture img{
        display: none;
    }

    .largura-limitada{
        width: 380px;
    }

    .navigation{
        display: block;
        text-align: center;
        padding-bottom: 10px;
        /* line-height: 30px; */
        /* border: 1px solid red; */
    }

    .navigation a{
        line-height: 40px;
        margin: 0 10px;
    }

    footer{
        margin-top: 50px;
    }

    .tabela td{
        font-size: 14px;
        padding: 0 5px 0 10px;
    }

    .logo img{
        width: 130px;
    }

    nav a{
        font-size: 18px;
    }
    
    .largura-limitada h2{
        font-size: 20px;
    }
}