* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.cabecalho,
nav {
    overflow: hidden;
    background-color: black;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 0;
}

.nav-links a {
    padding: 20px 60px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.cabecalho li a:hover {
    background-color: #dddddd;
    color: black;
}

.section-nome-empresa {
    height: 554px;
    background-image: url("../assets/img/breads-gfe90b37bc_1920.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 0;
    position: relative;
}

.section-nome-empresa h1 {
    font-size: 400%;
    padding: 2%;
    position: absolute;
    left: 35%;
    top: 30%;
}

h1,
h2 {
    text-transform: uppercase;
    background-color: black;
    color: white;
    text-align: center;
}

.section-about-the-bakery{
    align-self: center;
}

h2 {
    margin: 8% 42% 4% 42%;
    padding: 1% 0;
    font-size: 120%;
}

.section-about-the-bakery p {
    margin: 0 12%;
    padding-top: 1%;
    text-align: justify;
}

.citacao-owner {
    margin: 1% 12%;
    border-left: 1px solid grey;
    padding: 14px;
    background-color: #f1f1f1;
}

.citacao-owner p {
    margin: 0;
}

.imagens {
    background-size: contain;
    width: 76%;
    height:580px;
    margin: 0 12%;
}

span {
    font-weight: bold;
}

.card-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: #909090 1px 3px 8px;
    margin: 3% 12%;
}

.tab {
    overflow: hidden;
    border: 1px groove #909090;
    background-color: whitesmoke;
    box-shadow: #444444 1px 2px 2px;
}

.tab-links {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 242px;
    transition: 0.3s;
    font-weight: 500;
    background-color: whitesmoke;
}

.tab button:hover {
    background-color: #444444;
    color: white;
}

.tab-content {
    display: none;
    text-align: left;
    padding: 6px 12px;
    border: 1px solid whitesmoke;
    border-top: none;
}

#Eat {
    display: block;
}

.section-localizacao p {
    margin: 4% 11% 2% 12%;
}

.section-contact {
    margin: auto 12%;
}

.section-contact form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-items: center;
}

.section-contact input {
    line-height: 30px;
    padding: 4px;
    margin: 4px 0;
}

.section-contact button {
    text-transform: uppercase;
    text-align: center;
    padding: 1% 2%;
    width: fit-content;
    outline: none;
    border: none;
    color: white;
    background-color: black;
}

footer {
    text-align: center;
    margin: 4% 0 0;
    padding: 2%;
    background-color: #dddddd;
}

footer a {
    color: black;
    text-decoration: underline;
    padding: 4px;
}

@media (max-width: 480px) {
    .nav-links a {
        padding: 20px 24px;
        margin: 0;
    }
    .section-nome-empresa h1 {
        font-size: 30px;
        position: absolute;
        top: 30%;
        left: 31%;
        padding: 1% 2%;
    }
    h2 {
        margin: 8% 30%;
        padding: 1% 0;
        font-size: 18px;
    }
    .citacao-owner {
        margin-top: 6%;
        margin-bottom: 6%;
    }
    .tab-links {
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 20%;
        transition: 0.3s;
        font-weight: 600;
        background-color: whitesmoke;
    }
    .tab-content {
        padding-bottom: 8%;
    }
    .tab-content p {
        padding: 0;
        margin: 0;
    }
    h3 {
        padding: 0;
        margin-bottom: 0;
    }
    .imagens {
        background-size: contain;
        width: 76%;
        height: 25%;
        margin: 1% 12%;
    }
    span {
        font-weight: bold;
    }
}