* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    color: #333;
    background-color: #fdfdfd;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    width: 100dvw;
    padding-bottom: 50px;
}


.fixed-bttn {
    position: fixed;
    bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 20px 20px 0px 0px;
    background-color: white;
    z-index: 99;
}

.fixed-bttn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    background-color: #28a745;
    border-radius: 10px;
    height: 50px;
    font-family: "Poppins";
    font-size: 17px;
    color: white;
    border: none;
    font-weight: 900;
    gap:8px;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #5a3e85;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
}


/* Header / Navegação */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.imgSecurity {
    height: 300px;
    object-fit: cover;
}

.navbar {
    width: 100dvw;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
    border-radius: 999px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    display: grid;
    background-color: #333333;
    grid-template-columns: 1fr;
    padding-block: 50px;
    padding-inline: 20px;
    gap: 20px;
    color: #7A7A7A;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help {
    text-align: center;
    background-color: #28a745;
    padding-block: 5px;
    padding-inline: 10px;
    border-radius: 7px;
}


.help a {
    color: white;
    font-weight: 700;
}

.newsletter h3{
    color: white;
}

.newsletter p {
    color: white;
    font-weight: 300;
}

.insertmail {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#mail {
    width: 70%;
    padding: 10px;
    border-radius: 5px 0px 0px 5px;
    border: none;
}

.insertmail input[type=submit] {
    background-color: #28a745;
    width: 30%;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 0px 5px 5px 0px;
}

.footerCol {
    display: flex;
    flex-direction: column;
}

.footerCol h3 {
    color: white;
    font-weight: 600;
}

.footerCol ul {
    list-style: none; /* remove os pontos da lista */
    margin-top: 7px;
    gap: 5px;
    padding: 0;
}

.footerCol a {
    color: #7A7A7A;
    text-decoration: none;
    font-size: 14px;
}

.seguranca-transparencia {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.seguranca-transparencia h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
    font-weight: 600;
}

.seguranca-transparencia h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

.seguranca-transparencia p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #555;
}

.seguranca-transparencia ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.seguranca-transparencia ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #555;
}

.titleSecurity {
    font-size: 26px;
    color: #28a745;
    text-align: center;
    margin-top: 30px;
    line-height: 1.3;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 1.7rem;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .seguranca-transparencia {
        padding: 40px 16px;
    }

    .seguranca-transparencia h2 {
        font-size: 1.6rem;
    }

    .seguranca-transparencia h3 {
        font-size: 1.2rem;
    }

    .seguranca-transparencia p,
    .seguranca-transparencia ul li {
        font-size: 0.95rem;
    }
}
