/* ------------ RESET ------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* -------------------------------*/

:root {
    --claro: #4C7397;
    --escuro: #001e50;
}

body {
    overflow: auto;
}

.tela {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    padding-left: 60px;
    justify-content: space-between;
    min-height: 100%;
}


main {
    margin: 2rem 0;
}

footer {
    display: flex;
    justify-content: center;
    color: #000000;
    text-align: center;
    padding: 1rem;
    width: 100%;
    height: fit-content;
    flex-flow: row wrap;
    align-items: baseline;
    gap: 0.5rem;
}

footer a {
    color: #000000;
    text-decoration: none;
    font-size: smaller;
    align-items: end;
}

footer a:hover {
    text-decoration: underline;
    color: #9A1C1F;
}

.div-logos {
    display: flex;
    flex-direction: row;
    width: fit-content;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logoZeentech {
    width: 160px;
    height: auto;
}

.ft-title {
    color: #000000;
    font-size: 14px;
}

.ft-text {
    font-size: 12px;
    color: inherit;
}

header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: #9A1C1F;
    color: #fff;
    padding: 0 1rem;
    height: 80px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

header h3 {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-align: right;
    margin: 0; 
    flex: 1; 
}

.icon-menu {
    display: none;
}

@media (max-width: 768px) {
    .icon-menu {
        display: block;
        z-index: 100;
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {
    header {
        padding: 0.5rem;
    }
    .logo{
        width: 50px; 
        height: auto;
    }

    .logoZeentech {
        width: 90px;
    }

    header {
        width: 100vw; 
    }

    header h3 {
        max-width: 50px;
    }
}

@media (max-width: 768px) {
    .tela {
        padding-left: 0;  
    }
}

@media (max-width: 480px) {
    .tela {
        padding-left: 0;  
    }
}
