body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #000;
            color: #fff;
        }

        .section {
            margin: 10px;

        }

        .card {
            display: inline-block;
            width: 95%;
            margin: 1%;
            padding: 100px;
            background-color: #444;
            border-radius: 15px;
            text-align: left;
        }
        .card img {
            max-width: 300%;
            border-radius: 10px;
        }
        .card a {
            color: #1E90FF;
            text-decoration: none;
            display: block;
            margin-top: 10px;
        }

        .card {
            background-color: #444;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
        }

        .card-header {
            padding: 10px;
            background-color: #333;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        

        .header-content {
            display: flex;
            align-items: center;
        }

        .accordion-button {
            margin-right: 300px; /* Ajuste a margem conforme necessário */
        }

        .accordion-title {
            margin-left: auto; /* Isso faz com que o título ocupe todo o espaço à esquerda do botão */
        }

        .card-header button {
            background-color: transparent;
            border: none;
            color: #1E90FF;
            font-size: 24px;
            cursor: pointer;
        }

        .card-header button:hover {
            color: #fff;
        }

        .card-body {
            padding: 10px;
        }

        .collapse {
            display: none;
        }

        .collapse.show {
            display: block;
        }

        h2, h2 {
            margin: 0;
        }

        p.justificado h2 {
            margin: 10px 0;
            padding-left: 20cm; /* Adicionado para afastar o conteúdo da borda esquerda */
        }

         .back-to-top {
            display: block;
            width: 50px;
            height: 50px;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #1E90FF;
            color: #fff;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            text-decoration: none;
        }

        .iframe {
            width: 100%;
            height: 100%;
            border: none;
            min-height: 600px; /* Define uma altura mínima */
        }

        .iframe-container {
            position: relative;
            padding-bottom: 75%; /* Proporção 4:3 */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #ccc;
        }

        .iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

         .carousel-item img {
        width: 100%; /* Largura de 100% para preencher o contÃªiner */
        height: 600px; /* Altura fixa desejada */
        object-fit: cover; /* Redimensiona a imagem mantendo a proporÃ§Ã£o e cortando o excesso */
    }
    /* Estilo para a sobreposição de texto */
    .carousel-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
    }
        
        /* Aumentando o tamanho do texto */
        .carousel-caption h1 {
        font-size: 2.5em; /* Aumenta o tamanho do título */
        }

        .carousel-caption h2 {
            font-size: 3.5em; /* Aumenta o tamanho do subtítulo */
        }

        .carousel-caption p {
            font-size: 2.5em; /* Aumenta o tamanho dos parágrafos */
        }


.cursos-item {
    position: relative;
    overflow: hidden;
}

.cursos-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 0, 0.7); /* Fundo amarelo opaco */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10; /* Garante que fique sobre a imagem */
}

.cursos-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

.cursos-item:hover .cursos-hover-content {
    opacity: 1; /* Mostra o "+" e o fundo amarelo ao passar o mouse */
}

.cursos-item:hover img {
    transform: scale(1.1); /* Pequeno zoom na imagem */
}

.cursos-hover-content i {
    font-size: 4rem;
    color: white;
}


