
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro';
}

body {
    color: rgb(99, 99, 99)
}

header {
    background-color: #03CAD1;
    width: 100%;
}

.header {
    max-width: 950px;
}

.limited-area {
    margin: 0 auto;
    width: 96.5%;
}

.logo-topo img {
    margin-top: 3px;
    width: 130px;
    height: 100%;
}

.header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

hr {
    display: none;
}

nav {
    width: 300px;
    display: flex;
    justify-content: space-around;
}

nav a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: black
}

.links-especialidades {
    text-align: center;
    margin-top: 15px;
}

.links-especialidades a {
    line-height: 40px;
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin: 12px;
    border-bottom: 2px solid #03CAD1;
}

h1 {
    text-align: center;
    margin: 35px 0;
}

.title-especialidade {
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    width: 500px;
}

.title-especialidade h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.quadro-horarios img {
    min-width: 30%;
    width: 30%;
    object-fit: cover;
}

.quadro-horarios {
    max-width: 950px;
    width: 90%;
    margin: 0 auto;
    height: 240px;
    margin-top: 25px;
    display: flex;
}

th {
    display: none;
}

table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

td {
    padding-left: 10px;
    padding-right: 10px;
}

thead {
    color: white;
    background-color: #03CAD1;
    line-height: 40px;
    font-weight: bold;
}

tbody tr:nth-of-type(odd) {
    background-color: rgba(128, 128, 128, 0.377);
}

tbody tr:nth-of-type(even) {
    background-color: rgba(128, 128, 128, 0.158);
}


table tbody tr {

    font-size: 16px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: #0A6E71;
    text-align: center;
    margin-top: 50px;
    padding: 30px;
}

.logo-footer {
    width: 120px;
    margin-bottom: 0px;
}

footer p {
    margin: 10px;
}

footer span {
    margin: 10px;
}

@media (max-width: 768px) {

    .quadro-horarios img {
        display: none;
    }

    .title-especialidade {
        width: 70%;
        min-width: 400px;
    }
}

@media (max-width: 425px) {
    .header {
        display: flex;
        flex-direction: column;
    }

    hr {
        display: block;
        width: 100%;
        color: #0A6E71;
        background-color: #11a2a7;
        border-top: 1px solid #11a2a7;
        border-bottom: 0;
        border-left: 0;
        border-right: 0;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 15px;
    }

    nav a {

        padding: 0 0px;
    }

    .limited-area {
        width: 100%;
    }

    .title-especialidade {
        padding: 0 18px;
        width: 100%;
        min-width: auto;
    }

    .quadro-horarios {
        width: 100%;
    }
}