/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #ff6600;
    padding: 20px;
    text-align: center;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    margin-right: 20px;
}

h1 {
    font-size: 24px;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.lgpd-content h2 {
    font-size: 22px;
    color: #ff6600;
    margin-top: 20px;
}

.lgpd-content h3 {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}

.lgpd-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.lgpd-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.lgpd-content ul li {
    margin-bottom: 10px;
}

.lgpd-content a {
    color: #0073e6;
    text-decoration: none;
}

.lgpd-content a:hover {
    text-decoration: underline;
}

/* Estilo do Footer */
footer {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

/* Seção Laranja */
.footer-top {
    background-color: #ff6600;
    padding: 20px;
    color: white;
}

.footer-contact {
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 18px;
    margin: 0;
}

.footer-contact a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    display: inline-block;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social img {
    display: block;
    width: 25px;
    height: 25px;
}

/* Seção Cinza Claro */
.footer-bottom {
    background-color: #f4f4f4;
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.footer-bottom a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
