/* Estilos gerais */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Rodapé */
        footer {
            background-color: #2E86C1; /* Azul */
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        /* Seções do rodapé */
        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }

        .footer-section h3 {
            color: #F1C40F; /* Amarelo */
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin: 5px 0;
        }

        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            text-decoration: underline;
        }

        /* Ícones de redes sociais */
        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            color: #F1C40F; /* Amarelo */
            margin: 0 10px;
            font-size: 24px;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #fff;
        }

        /* Direitos autorais */
        .footer-bottom {
            margin-top: 20px;
            border-top: 1px solid #F1C40F; /* Amarelo */
            padding-top: 10px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 14px;
        }