* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--blue-dark); 
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 20px;
}

:root {
    --blue: #004a8d;
    --blue-dark: #002d57;
    --white: #ffffff;
    --blue-hover: #1aa5ea;
    --hiden: #ffffff57;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url('images/BackgroundCelular.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    min-height: 100vh;
    font-size: 1.3rem;
    font-family: "Nunito", sans-serif;
}

header {
    height: 100vh;
    margin: 15px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

header a {
    color: var(--white);
    transition: all 0.5s ease;
    font-size: 1rem;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: var(--blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}

footer p {
    font-size: 1rem;
    color: var(--blue-dark);
}

footer a {
    color: var(--hiden);
    transition: all 0.3s ease;
}

h2 {
    color: var(--blue-dark);
    font-size: 3rem;
}

.logo {
    width: 40%;
}

.sobreNos {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.servicos {
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contatos {
    height: 100vh;
    width: 100%;
    margin-top: 30%;
}

.contatos .card{
    margin: 0.5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contatos .conteudo img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.card {
    background-color: var(--blue);
    color: var(--white);
    padding: 30px;
    width: 90%;
}

.cardSub {
    display: flex;
    justify-content: center;
}

.fotos li{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 5px;
}

.fotos img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

.contatos img, .btnWpp img{
    width: 180px;
}

.conteudo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lista li{
    padding: 1rem;
}

.cardSobre {
    margin-top: 2px;
}

.btn {
    position: sticky;
    width: 50px;
    height: 50px;
    bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 2;
    margin-bottom: 20px;
}

.L {
    float: left;
    left: 20px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 50%;
}

.R {
    float: right;
    right: 20px;
}

.R img{
    width: 50px;
}

@media screen and (max-width: 920px) and (orientation: landscape) {
    .sobreNos, .servicos, .contatos {
        margin-top: 100vh;
    }

    .contatos {
        margin-bottom: 100vh;
    }
}

@media screen and (min-width: 1042px) {
    body {
        background-image: url('images/Background.jpg');
    }

    header a:hover {
        color: var(--blue-hover);
    }

    footer a:hover {
        color: var(--blue-hover);
    }

    .fotos img {
        width: 300px;
        height: 300px;
    }

    .cardSub {
        width: 50%;
    }

    .lista {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
}