    /* Estilos Gerais */ 
    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
    }

    .text-blue {
        color: #077AFF;
    }

    .text-light-blue {
        color: #007AFF;
    }

    /* Estilos do Banner */
    .banner {
        height: 80vh;
        overflow: hidden;
    }

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 85%;
        display: block;
    }

    .banner-text {
        position: absolute;
        top: 45%;
        left: 15%;
        transform: translateY(-50%);
        z-index: 2;
        color: white;
        text-align: left;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .banner-text h1 {
        font-size: 3rem;
    }

    .banner-text p {
        font-size: 1.25rem;
    }

    /* Estilos de Botões */
    #criarConta {
        background-color: #007AFF;
        color: white;
        max-width: fit-content;
        padding: 12px;
    }

    #criarConta:hover {
        background-color: #373CA6;
    }

    #btnEnviar {
        background-color: #007AFF;
        color: white;
        padding: 12px;
    }

    #btnEnviar:hover {
        background-color: #373CA6;
    }

    /* Estilos da Seção de Cursos */
    .bg-dark-blue {
        background-color: #002049;
    }

    .bg-darker-blue {
        background-color: #001732;
    }

    /* Estilos de Cartões */
    .card {
        border-radius: 15px;
        overflow: hidden;
        border: none;
        background-position: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .image-course {
        object-fit: cover;
        height: 300px;
        transition: all 2s ease-in-out;
        overflow: hidden;
        border: none;
    }

    .gradient {
        background: rgb(2, 0, 36);
        background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(78, 255, 0, 0) 100%);
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .card:hover .gradient {
        opacity: 1;
    }

    /* Estilos de Listas */
    .number-circle {
        background-color: #007bff;
        color: white; 
        min-width: 40px;
        min-height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-weight: bold;
    }

    .list-item {
        display: flex;
        align-items: flex-start;
        margin-top: 20px;
    }

    .list-item-text {
        margin-left: 15px;
    }

    .top-courses {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .card-top-course{
        height: 300px;
        width: 30vw;
    }

    @media (max-width: 900px) {
        .top-courses {
            flex-direction: column;
        }

        .card-top-course {
            max-width: 490px;
            width: 100%;
        }
    }

    /* Estilos do Formulário */
    #form {
        min-width: max-content;
        width: 450px !important;
        max-width: 100%;
        margin-left: auto;
    }

    @media (max-width: 430px) {
        #form {
            min-width: 0px;
            
        }
    }
    @media (max-width: 992px) {
        #form { 
            margin-left: 0%;
            width: 100;
            
        }
    }

    /* Estilos de Responsividade */
    /* @media (max-width: 992px) {
        .mt-md-50px {
            margin-top: 50px !important;
        }

        #contact-session {
            padding: 0 !important;
        }

        #form {
            margin: 0;
            width: 100%;
            min-width: none;
        }

        .banner-text {
            top: 40%;
        }

        .banner-text h1 {
            font-size: 2rem;
        }

        .banner-text p {
            font-size: 1rem;
        }
    } */

    @media (max-width: 730px) {
        #contact-session {
            padding: 0 !important;
        }
    }

    @media (max-width: 1200px) {
        .banner-text {
            left: 10%;
        }

        .banner-text h1 {
            font-size: 2.5rem;
        }

        .banner-text p {
            font-size: 1.2rem;
        }

        #criarConta {
            font-size: 1rem;
            padding: 10px 20px;
        }
    }

    @media (max-width: 615px) {
        .banner-text {
            top: 55%;
        }

        .banner-text h1 {
            font-size: 2rem;
            
        }

        .banner-text p {
            font-size: 1rem;
        }
    }

    @media (max-width: 320px) {
        
        .banner-text h1 {
            font-size: 1.5rem;
            
        }

        .banner-text p {
            font-size: 1rem;
        }
    }

    @media (min-width: 540px) {
        iframe {
            min-height: 250px;
            min-width: 450px;
        }
    }

    @media (max-width: 540px) {
        .gradient {
            opacity: 1;
        }
    }