:root { 
    --primary-color: #053e88; /* Azul escuro */
   --secondary-color: #333; /* Cor escura para o texto */
    --text-color: #fff;
    --accent-green: #34A853;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

footer {
    padding: 40px 20px;
    background: linear-gradient(-180deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-align: center;
    position: relative;
}

.footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}
footer h3{
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-color);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.footer-section {
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
    color: #ffcc00; /* Amarelo ao passar o mouse */
    text-decoration: underline;
}

.social-icons {
    margin-top: 18px;
}

.social-icons a {
    font-size: 24px;
    margin: 0 15px;
    display: inline-block;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ffcc00;
}

/* Marquee no final */
.marquee {
    margin-top: 20px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
}

marquee {
    color: var(--text-color);
    font-weight: bold;
}
