@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

/* CRÉDITOS 

ICON USER: <a href="https://www.flaticon.com/free-icons/user" title="user icons">User icons created by Freepik - Flaticon</a>

*/

:root {
    --azul: #042940;
    --verde-escuro: #005c53;
    --verde: #9fc131;
    --verde-claro: #dbf227;
    --bege: #d6d58e;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #385E5A;
}

header {
    margin: 0;
    padding: 0.5em;
    background-color: white;
    color: black;
    box-shadow: 4px 4px 9px 0px rgba(0, 0, 0, 0.39);
    font-size: 1.125rem;
    border-bottom: 4px solid #005c53;
}

.top>a>img {
    padding-right: 2em;
}

.top {
    padding: 0.5em;
    display: flex;
    align-items: center;
}

.bottom a {
    color: black;
    margin-right: 2.5em;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.39);
    transition: color 0.3s ease;
}

.bottom a:hover {
    color: #3A8A82;
}

main {
    margin: auto;
    min-width: 300px;
    max-width: 1920px;
}

#cliente {
    margin-left: auto;
    font-weight: 700;
    color: white;
    background-color: var(--verde-escuro);
    padding: 0.75em;
    border-radius: 0.375em;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#cliente:hover {
    background-color: #018174;
    color: white;
    transition: background-color 0.3s ease;
}

#cliente img {
    padding-right: 10px;
    height: clamp(1rem, 1.5vw, 1.5rem);
}

.atirador {
    background-image: url('imagens/atirador2.jpg');
    margin: 0px;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 4px 4px 9px 0px rgba(0, 0, 0, 0.39);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
}

.atirador>div {
    background-color: #005c53;
    border-radius: 1em;
    padding: 15px;
    width: 600px;
    height: 400px;
}

.atirador>div>p {
    color: white;
    margin: 0;
    padding: 10px;
    text-align: justify;
}

.atirador>div>h1 {
    text-align: center;
    color: white;
    font-weight: bold;
}

.botao-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2vh;
}

.botao-container>button {
    background-color: var(--verde-escuro);
    border: 2px solid #dbf227;
    margin-top: 5vh;
    padding: 1em;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    border-radius: 1em;
}

.botao-container>button:hover {
    background-color: #dbf227;
    color: black;
    transition: color 0.3s ease;
}

.carrossel {
    padding: 1em;
    text-align: center;
    background-color: white;
}

.documentacao {
    display: flex;
    width: 100%;
    height: 400px;
    box-shadow: inset 4px 4px 9px 0 rgba(0, 0, 0, 0.39);
}

.documentacao-container {
    width: 50%;
    background-image: url('imagens/pastas.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.documentacao>div>h2 {
    text-align: center;
}

.documentacao>div>p {
    padding-left: 1em;
    padding-right: 1em;
    text-align: justify;
}

.documentacao>div {
    background-color: #EAEAEA;
    color: black;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer {
    color: white;
    padding: 10px;
    font-size: 0.8em;
    text-align: center;
    background-color: #273433;
}

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

    .top>a>img {
        margin: auto;
        padding: 10px;
    }

    .bottom a {
        margin-right: 1.5em;
        font-size: 1em;
    }

    #cliente {
        margin-top: 16px;
        margin-right: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    #cliente img {
        margin: auto;
        padding: 0;
    }

    .atirador {
        padding-right: 10px;
        padding-left: 10px;
    }

    .atirador>div {
        width: 600px;
        height: 360px;
        padding-top: 3vw;
        padding-bottom: 0.5vw;
    }

    .atirador>div>p {
        color: white;
        margin: 0;
        text-align: justify;
    }

    .atirador>div>h1 {
        margin: 0;
        text-align: center;
        color: white;
        font-weight: bold;
    }

    .botao-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 0px;
    }

    .botao-container>button {
        background-color: var(--verde-escuro);
        border: 2px solid #dbf227;
        margin-top: 0;
        padding: 1em;
        cursor: pointer;
        color: white;
        font-weight: bold;
        font-size: 1em;
        border-radius: 1em;
    }

    .documentacao-container {
        width: 100%;
        background-image: url('imagens/pastas.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .documentacao>div {
        width: 100%;
        height: 100%;
    }

    footer {
        padding: 2px;
        font-size: 0.8em;
    }
}

/*-------------------------------------------------------------------------------*/

@media (max-width: 640px) {


    .top>a>img {
        padding: 10px;
    }

    .top {
        display: inline-block;
        padding: 0.5em;
    }

    .bottom {
        display: none;
        pointer-events: none;
    }

    #cliente {
        font-weight: 700;
        color: white;
        background-color: var(--verde-escuro);
        padding: 0.75em;
        border-radius: 0.375em;
        text-decoration: none;
        cursor: pointer;
        display: inline-block;
    }

    .atirador {
        background-image: url('imagens/atirador2.jpg');
        margin: 0px;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        box-shadow: inset 4px 4px 9px 0px rgba(0, 0, 0, 0.39);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5em;
    }

    .atirador>div {
        background-color: #005c53;
        border-radius: 1em;
        padding: 15px;
        height: 420px;
    }

    .atirador>div>p {
        color: white;
        margin: 0;
        padding: 10px;
        text-align: justify;
        font-size: 1em;
    }

    .atirador>div>h1 {
        text-align: center;
        color: white;
        font-weight: bold;
    }

    .botao-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 0px;
    }

    .botao-container>button {
        background-color: var(--verde-escuro);
        border: 2px solid #dbf227;
        cursor: pointer;
        color: white;
        font-weight: bold;
        font-size: 1em;
        border-radius: 1em;
    }

    .documentacao {
        display: flex;
        width: 100%;
        height: 400px;
    }

    .documentacao-container {
        display: none;
    }

    .documentacao>div>h2 {
        text-align: center;
    }

    .documentacao>div>p {
        padding-left: 0.5em;
        padding-right: 0.5em;
        text-align: justify;
    }

    .documentacao>div {
        background-color: #EAEAEA;
        color: black;
        width: 100%;
        padding: 20px;
        display: inline-block;
    }

    footer {
        font-size: 0.8rem;
    }
}