     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            font-family: Arial, sans-serif;
        }
        .background {
            position: fixed; /* Fundo fixo cobrindo toda a tela */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/imagens/fundo.JPG');
            background-size: cover;
            background-position: center;
            z-index: -1; /* Colocado abaixo de tudo */
        }
        .overlay {
            position: fixed; /* Sobreposição translúcida */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0; /* Abaixo do conteúdo */
        }
        .content {
            position: relative;
            z-index: 1; /* Certifica-se de que aparece acima do fundo */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh; /* Ocupa toda a tela */
            text-align: center;
            color: white;
            padding: 20px;
        }
        h1 {
            font-size: 3em;
            margin-bottom: 10px;
        }
        p {
            font-size: 1.5em;
        }
        .arrow {
            margin-top: 20px;
            font-size: 2em;
            color: white;
            animation: bounce 1.5s infinite;
            cursor: pointer;
        }
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(10px);
            }
        }
        .cards-section {
            padding: 50px 20px;
            background-color: #f5f5f5;
            text-align: center;
        }
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .card {
            background-color: white;
            width: 30%;
            max-width: 300px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
        }
        .card img {
            width: 100%;
            height: auto;
        }
        .card h3 {
            margin: 10px 0;
            font-size: 1.2em;
        }
        .card p {
            padding: 0 10px 20px;
            font-size: 1em;
            color: #666;
        }