/* Layout padrão */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar todo o conteúdo verticalmente */
    text-align: left; /* Manter o alinhamento dos textos à esquerda */
}


body, .headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 38px;
    color: #1e293b;
    text-align: left;
    margin: 0;
    padding: 0;

    
}

.secure-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.secure-image {
    max-width: 100%;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}




/* Centralizar o vídeo dentro do contêiner de vídeo */
.video {
    display: flex;
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
    margin-top: 30px;
  
}

/* Estilos para lista de professores e conteúdo do curso */
.professor-list {
    margin-left: 30px;
    margin-right: auto;
    padding: 30px;
    text-align: left;
}

/* Centralizar títulos e subtítulos */
.title,
.section-title {
    font-family: "Ardina Text", Georgia, 'Cambria', "Times New Roman", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #1e293b;
    text-align: center;
}

.subtitle
 {
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: #475569;
    text-align: center;
}

/* Centralizar botões */

.cta-button,
.testimonial-button {
    display: block; /* Alterado para "block" para ocupar a largura total */
    background-color: #FF5722;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 40px auto; /* Centralizar verticalmente e horizontalmente */
    text-align: center; /* Alinhar o texto ao centro */
    width: fit-content; /* Define a largura do botão com base no conteúdo */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s; /* Adicionado efeito de transição */
}

.cta-button:hover,
.testimonial-button:hover {
    background-color: #027005; /* Altera a cor para verde quando o mouse passa sobre o botão */
    transform: scale(1.1); /* Aumenta o tamanho do botão quando o mouse passa sobre ele */
}




body:not(.title):not(.subtitle) {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 38px;
    color: #1e293b;
    text-align: left;
}

.course-description {
    padding-left: 40px;
    padding-right: 40px;
}

/* Centralizar texto de professor */
.instructor-info
 {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}

/* Depoimentos */
.testimonials {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%; /* Garantir que os depoimentos ocupem toda a largura */
    box-sizing: border-box; /* Evitar problemas com bordas e margens */
}

.testimonial {
    flex: 1;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    background-color: #FAFAFA;
}

/* Professor */
.instructor-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar itens horizontalmente */
    gap: 20px;
    width: 100%; /* Garantir que a seção do professor ocupe toda a largura */
    box-sizing: border-box; /* Evitar problemas com bordas e margens */
}

.instructor-text {
    text-align: justify; /* Justificar o texto */
}

.instructor-video {
    display: flex;
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
    max-width: 100%; /* Fazer com que o vídeo do professor ocupe a largura máxima */
    margin-top: 20px;
}

.course-schedule {
    padding-left: 40px;
    padding-right: 40px;
}

.faq {
    padding-left: 40px;
    padding-right: 40px;
}


.module {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.module-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    
}
.module-content {
    margin-top: 10px;
}
.question {
    font-weight: bold;
}
.answer {
    margin-top: 5px;
}


/* Rodapé */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
    width: 100%; /* Garantir que o rodapé ocupe toda a largura */
    box-sizing: border-box; /* Evitar problemas com bordas e margens */
}

/* Adicione o seguinte CSS no final do seu arquivo de estilos */
/* Adicione o seguinte CSS no final do seu arquivo de estilos */

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .title, .section-title, .subtitle, .video {
        display: none; /* Oculta os elementos .title, .section-title, .subtitle e .video */
    }

    .title-mobile {
        font-size: 28px;
        margin-top: 40px; /* Aumento do espaço superior */
        margin-bottom: 30px; /* Aumento do espaço inferior */
    }

    .cta-button, .testimonial-button {
        font-size: 21px;
        margin-top: 30px; /* Aumento do espaço superior */
        margin-bottom: 30px; /* Aumento do espaço inferior */
        width: 100%;
        padding: 15px 15px; /* Ajuste do padding para espaçamento interno */
    }

    .testimonials {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        width: 100%;
        margin-bottom: 30px; /* Aumento do espaço inferior */
    }
    .course-description, .secure-payment, .testimonial {
        padding-left: 20px;
        padding-right: 20px;
    }
    .secure-image {
        max-width: 100%;
        height: auto;
    }
    .list-group {
        padding-left: 20px;
    }
}

/* Estilo para dispositivos desktop */
@media (min-width: 769px) {
    .title-mobile {
        display: none; /* Oculta a classe .title-mobile em dispositivos desktop */
    }
}