  body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #4caf50, #81c784);
            color: white;
            margin: 0;
            padding: 0;
        }

        header {
            background: linear-gradient(135deg, #1e88e5, #42a5f5);
            color: white;
            padding: 20px 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0;
        }

        header p {
            font-size: 1.2rem;
        }

        .navbar {
            background: #343a40;
        }

        .navbar a {
            color: white !important;
        }

        .navbar-brand {
            font-weight: bold;
        }

        .intro {
            text-align: center;
            padding: 40px 20px;
        }

        .botao-especial {
            background: linear-gradient(135deg, #ff5722, #ff9800);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .botao-especial:hover {
            background: linear-gradient(135deg, #ff9800, #ff5722);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
            transform: scale(1.1);
        }

        .botao-especial:active {
            transform: scale(1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        footer {
            background: #1e88e5;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
        }

        footer a {
            color: #ffd740;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
		
		footer a {
    color: #ffd740;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(135deg, #ff9800, #f44336);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer a:hover {
    text-decoration: none;
    background: linear-gradient(135deg, #f44336, #ff9800);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}