/* Banner */
.bg-banner {
    /*background: linear-gradient(135deg, #0f172a, #1e293b);*/
    padding: 40px 0;
    /*color: var(--white);*/
    position: relative;
    overflow: hidden;
    background-color: var(--primary-light);
}

/* Título */
.banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Linha decorativa */
.banner-line {
    width: 80px;
    height: 4px;
    background: #38bdf8;
    margin: 15px auto 40px;
    border-radius: 2px;
}

/* Conteúdo */
.banner-content {
    gap: 30px;
}

/* Texto */
.banner-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--border-soft);
    margin-bottom: 15px;
}

/* Destaque */
.banner-highlight {
    font-size: 1.1rem;
    font-weight: 500;
    color: #38bdf8;
    margin-top: 20px;
}

/* Botão */
.btn-banner {
    display: inline-block;
    padding: 12px 28px;
    background: #38bdf8;
    color: #0f172a;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-banner:hover {
        background: #0ea5e9;
        color: var(--white);
        transform: translateY(-2px);
    }

/* Imagem */
.banner-image {
    position: relative;
}

    .banner-image img {
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        transition: transform 0.4s ease;
    }

        .banner-image img:hover {
            transform: scale(1.03);
        }

/* Responsivo */
@media (max-width: 991px) {
    .banner-title {
        font-size: 2rem;
    }

    .bg-banner {
        padding: 30px 10px;
    }

    .banner-content {
        text-align: center;
    }
}

/* Fim Banner */


/* FAQ */
.accordionListFaq {
    padding: 60px 0;
}

.accordionList .card {
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordionList .card-header {
    background: var(--white);
    border: none;
    padding: 0;
    border-radius: 16px;
}

.accordionList .btn-link {
    width: 100%;
    text-decoration: none;
    color: var(--primary);
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 20px;
    position: relative;
    display: block;
    border-radius: 16px;
}

    .accordionList .btn-link:hover {
        background: var(--bg-soft);
        text-decoration: none;
        border-radius: 16px;
    }

    .accordionList .btn-link.collapsed::after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 20px;
    }

    .accordionList .btn-link:not(.collapsed)::after {
        content: "-";
        position: absolute;
        right: 20px;
        font-size: 20px;
    }

    .accordionList .btn-link:not(.collapsed) {
        background: var(--bg-soft);
        font-weight: 600;
    }

.accordionList .card-body {
    font-size: .95rem;
    padding: 20px;
    border-top: 1px solid var(--grey-light);
    color: #555;
}

    .accordionList .card-body p {
        font-size: .95rem;
    }

.accordion .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: var(--white);
    border-bottom: none;
}

.accordion .card {
    border: none;
}

.faq {
    padding: 85px 0;
    background-color: var(--bg-light);
}

    .faq .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: 0px;
    }

    .faq h5 {
        color: #9C9CAA;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .faq .text-faq {
        color: var(--text-main);
        font-size: 1rem;
        font-weight: 500;
    }

#accordionFAQ .card {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#accordionFAQ .card-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding: .75rem 0rem;
}

    #accordionFAQ .card-header h3 button {
        font-weight: bold;
    }

.faq-list h4 .btn-link {
    color: var(--primary);
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
}

    .faq-list h4 .btn-link:hover {
        text-decoration: none;
    }

#accordionFAQ .card-header h4 button {
    color: var(--text-main);
    font-weight: bold;
}

#accordionFAQ .card-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#accordionFAQ .card {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    margin-bottom: 5px;
}

#accordionFAQ .card-body p {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}
/* Fim FAQ */


/* Equipe */
.card-delicate {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 15px 10px;
    overflow: hidden;
    border: 1px solid rgba(224, 170, 255, 0.2);
    height: auto;
    display: flex;
    flex-direction: column;
}

    .card-delicate:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
        border-color: rgba(224, 170, 255, 0.4);
    }

/* Foto menor e circular */
.avatar-wrapper {
    text-align: center;
    padding-top: 1.8rem;
    padding-bottom: 0.5rem;
}

.avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.15);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.card-delicate:hover .avatar-img {
    transform: scale(1.02);
}

.card-body-custom {
    padding: 0.8rem 1.2rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e66;
    margin-bottom: 0.2rem;
}

.member-city {
    font-size: 0.7rem;
    color: var(--text-silver);
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.member-resumo {
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.4;
    margin: 0.4rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.email-link {
    font-size: 0.7rem;
    color: var(--primary);
    word-break: break-all;
    display: inline-block;
    margin: 0.4rem 0;
    text-decoration: none;
}

    .email-link i {
        margin-right: 4px;
        font-size: 0.7rem;
    }

    .email-link:hover {
        color: var(--primary-light);
        text-decoration: none;
    }

/* Redes sociais - discretas e compactas */
.social-compact {
    margin: 0.4rem 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .social-compact a {
        color: var(--primary);
        font-size: 1.2rem;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .social-compact a:hover {
            color: var(--primary-light);
            transform: scale(1.1);
            text-decoration: none;
        }

.btn-curriculo {
    background: var(--primary-light);
    border: 1px solid var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 16px;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    cursor: pointer;
    margin-top: auto;
}

    .btn-curriculo:hover {
        background: var(--primary);
        border-color: var(--primary-light);
        color: var(--white);
        transform: scale(0.98);
        text-decoration: none;
    }

/* Botão desabilitado */
.btn-curriculo-disabled {
    background: #f0f0f0;
    border: 1px solid var(--grey-border);
    color: #999;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    cursor: default;
    opacity: 0.6;
    margin-top: auto;
    text-align: center;
}

hr.soft-hr {
    width: 40px;
    margin: 0.6rem auto;
    height: 1px;
    background: var(--border-soft);
    opacity: 0.6;
}

/* Modal delicado */
.modal-content-delicate {
    border-radius: 32px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header-delicate {
    border-bottom: 1px solid #f0e6ff;
    background: #fefbfe;
    padding: 1rem 1.5rem;
}

#iframeCurriculo {
    background: white;
}

/* Estilo para o conteúdo do currículo */
#conteudoCurriculo {
    background: white;
    border-radius: 0 0 32px 32px;
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2d3e50;
}

    #conteudoCurriculo p, #conteudoCurriculo span {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #2d3e50;
    }

    #conteudoCurriculo br {
        display: block;
        margin-bottom: 0.5rem;
    }

.curriculo-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2d3e50;
    white-space: pre-wrap;
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.5rem;
}
/* Ajuste Slick */
.equipe-list .responsive {
    margin: 0 -10px;
}

    .equipe-list .responsive .slick-slide > div {
        padding: 0 10px;
    }

/* Remove margens extras de elementos vazios */
.member-resumo:empty,
.email-link:empty,
.social-compact:empty {
    display: none;
}

.btn-curriculo, .btn-curriculo-disabled {
    margin-top: auto; /* mantém botão no fundo */
}

@media (max-width: 768px) {
    .avatar-img {
        width: 80px;
        height: 80px;
    }

    .member-name {
        font-size: 1rem;
    }
}
/* Fim Equipe */


/* Ebook */
.ebook-partial {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.ebook-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.ebook-cover-wrapper {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-cover {
    max-width: 100%;
    height: auto;
}

.ebook-content {
    padding: 40px;
}

.ebook-title {
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.ebook-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.form-control-custom {
    border-radius: 10px;
    border: 2px solid #edf2f7;
    padding: 10px 15px;
    height: auto;
}

.btn-download {
    background: var(--secondary);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 800;
    width: 100%;
    transition: all 0.3s ease;
}

    .btn-download:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }

.success-panel {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.btn-final-download {
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}


.ebook-grid {
    padding: 60px 0;
    background: #f8fafc;
}

.ebook-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
}

    .ebook-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.ebook-thumb-wrapper {
    position: relative;
    padding-top: 140%;
    background: #e2e8f0;
    overflow: hidden;
}

.ebook-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ebook-card:hover .ebook-thumb {
    transform: scale(1.05);
}

.ebook-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ebook-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ebook-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ebook-excerpt {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/*.btn-ebook {
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-unlock {
    background: var(--primary);
    color: white !important;
    border: none;
}

    .btn-unlock:hover {
        background: var(--primary-dark);
        transform: scale(1.02);
    }*/

.btn-download {
    background: var(--secondary);
    color: white !important;
    border: none;
}

    .btn-download:hover {
        background: #007036;
        transform: scale(1.02);
    }

.btn-view {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    margin-top: 10px;
}

    .btn-view:hover {
        background: var(--primary);
        color: white !important;
    }

/* Modal Styles */
.modal-content-custom {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header-custom {
    background: var(--primary);
    color: white;
    padding: 30px;
    border: none;
}

.form-control-custom {
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    transition: all 0.3s ease;
}

    .form-control-custom:focus {
        border-color: var(--primary);
        box-shadow: none;
    }

/* Fim de um ebook e começo de outro */

.ebook-coming-soon-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0a2e56 100%);
    border-radius: 40px;
    padding: 40px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(20, 71, 129, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

    .ebook-coming-soon-card::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        transform: rotate(25deg);
        pointer-events: none;
    }

.badge-coming-soon {
    background: #ffc107;
    color: #000;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.coming-soon-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--white), #cbd5e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-details {
    border-left: 5px solid #ffc107;
    padding-left: 25px;
    margin-bottom: 40px;
}

.book-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.book-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffc107;
    margin-bottom: 12px;
}

.book-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 500px;
}

.btn-coming-soon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.coming-soon-image-wrapper {
    z-index: 5;
    transition: transform 0.3s;
}

    .coming-soon-image-wrapper:hover .coming-soon-image {
        transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
    }

@media (max-width: 991px) {
    .ebook-coming-soon-wrapper {
        padding: 40px 0;
    }

    .ebook-coming-soon-card {
        padding: 40px 25px;
        text-align: center;
    }

    .book-details {
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .coming-soon-headline {
        font-size: 2rem;
    }

    .book-name {
        font-size: 1.6rem;
    }

    .coming-soon-image {
        max-height: 350px;
        transform: none !important;
    }

    .btn-coming-soon {
        width: 100%;
        justify-content: center;
    }
}
/* Fim Ebook */


/* card-itens */
.card-itens .card {
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

    .card-itens .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 30px -12px rgba(20, 71, 129, 0.15);
    }

.card-itens .card {
    border: none;
    border-radius: 24px;
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .card-itens .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 30px -12px rgba(20, 71, 129, 0.15);
    }

.card-itens .card-body {
    padding: 2rem 1.75rem;
}

.card-itens .card-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.65rem;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
}

.card-itens .card-body hr {
    margin: 1rem 0 1.25rem 0;
    border: 0;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-soft), var(--primary-light));
    border-radius: 3px;
    opacity: 1;
}

.card-itens .card-text {
    color: #2c3e4e;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

@media (max-width: 767px) {
    .card-itens .card-body {
        padding: 1.5rem;
    }

    .card-itens .card-title {
        font-size: 1.4rem;
    }
}
/* Fim card-itens */

/* Etapas */
.progress-bar {
    transition: width 1.5s ease-out;
}

/* permite animar a variável */
@property --progress {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

.progresscircle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    --progress: 0;
    background: conic-gradient( var(--success) calc(var(--progress) * 1%), var(--grey-light) 0 );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: progressAnimation 1.5s ease-out forwards;
}

/* animação suave */
@keyframes progressAnimation {
    from {
        --progress: 0;
    }

    to {
        --progress: var(--value);
    }
}

/* círculo interno */
.progresscircle::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    background: var(--white);
    border-radius: 50%;
}

/* texto */
.progress-value {
    position: relative;
    z-index: 1;
}
/* Fim Etapas */


/* Escolas Participantes */
.school-public-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f2f5;
}

    .school-public-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        border-color: #d1d9e6;
    }

.school-cover {
    width: 100%;
    height: 180px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

    .school-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.school-public-card:hover .school-cover img {
    transform: scale(1.05);
}

.school-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f0ff 0%, #b3d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
}

    .school-cover-placeholder i {
        font-size: 4rem;
        opacity: 0.5;
    }

.school-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.school-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3479;
    margin-bottom: 15px;
    line-height: 1.4;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
}

.school-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .school-details li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        font-size: 0.95rem;
        color: #495057;
        line-height: 1.5;
    }

        .school-details li:last-child {
            margin-bottom: 0;
        }

    .school-details i {
        width: 20px;
        margin-top: 3px;
        margin-right: 10px;
        color: #007bff;
        text-align: center;
        flex-shrink: 0;
    }

/* Fim Escolas Participantes */


/* --- SLIDERS & CARROSSEIS (OWL / SLICK) --- */
/*.owl-nav button, .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white) !important;
    color: var(--primary) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
}

    .owl-nav button:hover, .slick-arrow:hover {
        background: var(--primary) !important;
        color: var(--white) !important;
        box-shadow: var(--shadow-lg) !important;
    }

.owl-prev, .slick-prev {
    left: -22px;
}

.owl-next, .slick-next {
    right: -22px;
}

@media (max-width: 767px) {
    .owl-nav, .slick-arrow {
        display: none !important;
    }
}*/
/* --- FIM SLIDERS & CARROSSEIS (OWL / SLICK) --- */


/* BLOG */
.box-fotos {
    margin-top: -25px;
}

.multiple-items button.slick-prev.slick-arrow {
    left: -10px;
    z-index: 10;
}

.multiple-items button.slick-next.slick-arrow {
    right: 10px;
    z-index: 10;
}

.multiple-items:hover .slick-prev:before, .multiple-items:hover .slick-next:before {
    font-size: 36px !important;
    opacity: 1;
    color: var(--text-light) !important;
    font-family: 'slick';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog h1 {
    color: var(--primary);
}

.subtitle {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.blog .img {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.blog a img {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    margin: 0;
    max-height: 295px;
    border-radius: 16px;
}

.blog a:hover img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    border-radius: 16px;
}

.blog .img-destaque {
    display: block;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.blog a .img-destaque img {
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    margin: 0;
    max-height: 600px !important;
    border-radius: 16px 16px 0 0;
}

.blog a:hover .img-destaque img {
    max-height: 600px !important;
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    border-radius: 16px 16px 0 0;
}

.blog-destaque {
    padding: 20px 15px 15px 15px;
    color: var(--white);
    background-color: var(--primary);
    margin-top: -5px;
    border-radius: 0 0 16px 16px;
}

    .blog-destaque:hover {
        color: var(--white);
        background-color: var(--secondary);
        border-bottom: none;
        transition: all 0.3s ease;
    }

    .blog-destaque h3 {
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-size: 1.2rem;
        font-weight: 600;
        font-style: normal;
        line-height: 1.3em;
        color: var(--white);
    }

    .blog-destaque .link-read {
        display: inline-flex;
        font-size: .9rem;
        font-weight: 400;
        line-height: 140%;
        color: var(--white) !important;
        text-transform: uppercase;
        border-bottom: none !important;
        transition: all 0.3s ease;
    }

.blog-desc {
    padding: 15px 0px 75px 0px;
}

.blog-desc-in {
    padding: 15px 0px 15px 0px !important;
}

.blog-desc h3 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3em;
}

.blog-desc p {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-muted);
    font-size: .85rem;
    font-style: normal;
    line-height: 1.5em;
}

.blog a:hover {
    text-decoration: none;
}

.blog a img-destaque img {
    border-radius: 0 0 .3rem .3rem !important;
}

.blog .link-read {
    display: inline-flex;
    font-size: .9rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--primary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
}

    .blog .link-read:hover {
        color: var(--secondary);
        border-bottom: none;
    }


/*.slider-home .link-read {
        display: inline-flex;
        font-size: .9rem;
        font-weight: 400;
        line-height: 140%;
        color: var(--primary);
        text-transform: uppercase;
        border-bottom: 1px solid var(--primary);
    }

        .slider-home .link-read:hover {
            color: var(--secondary);
            border-bottom: none;
        }*/


.share h6 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--secondary);
}

.share ul {
    padding-left: 0px !important;
    margin-top: 15px;
    margin-bottom: 30px;
}

    .share ul li {
        list-style: none;
        display: inline-block;
    }

        .share ul li a {
            padding: 5px 15px;
            border-right: solid 1px #ebebeb;
            color: var(--secondary);
        }

            .share ul li a:hover {
                color: var(--lighter);
            }

            .share ul li a .fa {
                font-size: 1rem;
            }


/*h2.blog-post-title {
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8rem;
}*/

.blog-post {
    font-family: "Roboto", sans-serif;
}

    .blog-post p, .blog-post span {
        font-size: 1rem !important;
        line-height: 1.6rem;
        font-weight: 400;
        font-style: normal;
    }

        .blog-post p b {
            font-weight: 600;
        }

    .blog-post h3 {
        font-size: 1.3rem;
    }

.blog-main ul li {
    font-size: 1rem !important;
    line-height: 2rem;
    font-weight: 400;
    font-style: normal;
}


.blog a .cat span {
    display: inline-flex;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: #837D65;
}

    .blog a .cat span + span {
        margin-left: 10px;
    }

.blog-sidebar {
    margin-top: 40px;
}

    .blog-sidebar h6 {
        font-weight: 600;
        padding-left: 10px;
    }

    .blog-sidebar ol.list-blog {
        margin-bottom: 0px;
    }

        .blog-sidebar ol.list-blog li {
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: dotted 1px #837D65;
        }

            .blog-sidebar ol.list-blog li:last-child {
                border-bottom: 0;
            }

            .blog-sidebar ol.list-blog li a {
                color: #0e76e0;
                display: block;
                padding: 15px 10px;
            }

                .blog-sidebar ol.list-blog li a:hover {
                    color: #837D65;
                    text-decoration: none;
                }

a.btn-all {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
    border: solid 1px #666666;
    padding: 10px 20px;
    transition: .3s;
}

.btn-all:hover {
    color: #837D65;
    border: solid 1px #837D65;
}

.blog a:hover {
    text-decoration: none;
}

/* BLOG */


/* SLIDER */
.slider {
    background: linear-gradient(180deg, rgba(0, 80, 195, 0.05) 0%, rgba(0, 80, 195, 0.05) 100%);
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

    .slider .img {
        display: block;
        overflow: hidden;
        border-radius: 16px;
    }

    .slider a img {
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        margin: 0;
        max-height: 295px;
    }

    .slider a:hover img {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
    }

.slider-desc a p {
    padding: 15px 0px 75px 0px;
}

.slider-desc-in {
    padding: 15px 0px 15px 0px !important;
}

.slider h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.slider a h4 {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4em;
    transition: .2s;
    text-align: left;
}

a .slider-desc p {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    color: #666666;
    font-size: .9rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5em;
}

.slider a:hover {
    text-decoration: none;
}

.slider-desc .link-read {
    display: inline-flex;
    font-size: .9rem;
    font-weight: 400;
    line-height: 140%;
    color: var(--primary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary);
}

    .slider-desc .link-read:hover {
        color: var(--secondary);
        border-bottom: none;
    }

.link-read .fa {
    margin-top: 4px;
    margin-right: 4px;
}

.list {
    padding-right: 15px;
    padding-left: 15px;
}

.responsive button.slick-prev.slick-arrow {
    left: -10px;
    z-index: 10;
}

.responsive button.slick-next.slick-arrow {
    right: 10px;
    z-index: 10;
}

.responsive:hover .slick-prev:before, .responsive:hover .slick-next:before {
    font-size: 36px !important;
    opacity: 1;
    color: var(--text-light) !important;
    font-family: 'slick';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* FIM SLIDER */



/* Lista Cards Curso */
/* USADO EM GALERIA DE IMAGENS TAMBÉM. TENTAR UNIFICAR */

.slider-home .slick-slide {
    padding: 0 8px;
    box-sizing: border-box;
}

.curso-card {
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .curso-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        border-color: #d1d9e6;
        /*box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border-color: var(--primary-light);*/
    }

.lista a:hover,
.lista a:focus,
.lista a:active {
    text-decoration: none !important;
}

.lista .link-read {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-link);
    border: 1px solid rgba(13, 110, 253, 0.25);
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.05);
    transition: all 0.25s ease;
}

.lista a:hover .link-read {
    color: var(--white);
    background: var(--primary-link);
    border-color: var(--primary-link);
    transform: translateY(-1px);
}

.slick-slide h5 {
    font-size: 1rem;
}

.border-dashed {
    border: 2px dashed var(--border-grey);
    background-color: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

    .border-dashed:hover {
        border: 2px dashed var(--primary);
        background-color: var(--primary-light);
        border-radius: 16px;
        transition: transform 0.3s ease;
    }

.progress {
    border-radius: 4px;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary-link);
    }

.curso-card .img img {
    height: 200px;
    object-fit: cover;
}

/* Fim Lista Cards Curso */


/* Galerias de Imagens */
.galeria-item .img {
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

    .galeria-item .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.galeria-item:hover .img img {
    transform: scale(1.08);
}

.galeria-date-tag {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.galeria-header-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
}

.galeria-date {
    background: #f0f2ff;
    color: #2d3479;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.galeria-conteudo {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 3rem;
}

    .galeria-conteudo p img, .galeria-conteudo img {
        max-width: 100% !important;
        height: auto !important;
    }

/* Galeria de Imagens Modernizada */
.photo-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #2d3479; /* Fundo escuro para o overlay */
    cursor: pointer;
    margin-bottom: 30px;
}

    .photo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .photo-card img {
        transition: all 0.4s ease;
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .photo-card:hover img {
        opacity: 0.6;
        transform: scale(1.1);
    }

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}
/* Fim Galerias de Imagens */


/* Vídeos */
.video-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    background: #fff;
    text-decoration: none !important;
}

    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.video-thumbnail-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.video-card:hover .video-thumbnail {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    color: #ff0000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding-left: 5px; /* Alinhamento óptico do ícone play */
}

.video-card:hover .play-button {
    transform: scale(1.15);
    background: #ff0000;
    color: #fff;
}

.video-info {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.video-title {
    font-weight: 700;
    color: #2d3479;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
}

.page-header-videos {
    padding: 3rem 0;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.video-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(4px);
}
/* Fim Vídeos */



/* Página FAQ */
ul.social li a {
    color: var(--primary);
    font-size: 20px;
    padding: 0px 8px;
}

    ul.social li a:hover {
        color: var(--text-main);
        padding: 0px 8px;
    }
/* Fim Página FAQ */


/* Cursos e Aulas (Professor) */
.course-card-clean {
    border: none;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .course-card-clean:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

.course-header-clean {
    background: linear-gradient(135deg, #1e245a 0%, #144781 100%);
    padding: 20px;
    color: #fff;
}

.course-actions {
    padding: 15px 20px;
    background-color: #fbfcff;
    border-top: 1px solid #f0f2f5;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

h5 .btn-link {
    font-size: 1.25rem;
    font-weight: 500;
}

.btn-icon-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: transparent;
    color: #6c757d;
    border: 1px solid transparent;
}

    .btn-icon-subtle i {
        font-size: 1.1rem;
        margin-right: 6px;
    }

    .btn-icon-subtle.only-icon {
        padding: 8px 10px;
    }

        .btn-icon-subtle.only-icon i {
            margin-right: 0;
        }

    /* Hover States para os Botões Sutis */
    .btn-icon-subtle:hover {
        text-decoration: none;
    }

    .btn-icon-subtle.primary:hover {
        background-color: #e6f0ff;
        color: #0056b3;
    }

    .btn-icon-subtle.success:hover,
    .btn-icon-subtle.success.active {
        background-color: #e6f7eb;
        color: #28a745;
    }

    .btn-icon-subtle.danger:hover,
    .btn-icon-subtle.danger.active {
        background-color: #fbebed;
        color: #dc3545;
    }

    .btn-icon-subtle.warning:hover {
        background-color: #fff6e5;
        color: #ffc107;
    }

    .btn-icon-subtle.secondary:hover {
        background-color: #f0f2f5;
        color: #495057;
    }

/* Lista de Módulos e Aulas */
.module-card-clean {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.module-header-clean {
    background-color: #fdfdfe;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f2f5;
}

.module-actions {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #fafbfc;
    border-bottom: 1px solid #f0f2f5;
    gap: 10px;
}

.lesson-card-clean {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

/* Action Bar de "Adicionar Conteúdo" */
.add-content-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px dashed #ced4da;
    align-items: center;
}

    .add-content-bar .bar-title {
        color: #6c757d;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 10px;
    }

.add-content-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .add-content-item i {
        margin-right: 6px;
        color: var(--primary);
    }

    .add-content-item:hover {
        background-color: var(--primary);
        color: #ffffff;
        border-color: var(--primary);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(45, 52, 121, 0.2);
    }

        .add-content-item:hover i {
            color: #ffffff;
        }

/* Lista de Conteúdos Interna (UL) */
.content-list-clean {
    border: 1px solid #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
}

.content-item-clean {
    border-bottom: 1px solid #f0f2f5;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

    .content-item-clean:last-child {
        border-bottom: none;
    }

    .content-item-clean:hover {
        background-color: #f8f9fa;
    }

.content-info {
    display: flex;
    align-items: center;
}

.content-badge {
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 10px;
}
/* Fim Cursos e Aulas (Professor) */


/* Aula */
/* Comentários */

#comentarios-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

    #comentarios-section h4 {
        color: #2d3479;
        font-weight: 700;
        /*margin-bottom: 25px;
        border-bottom: 2px solid #f0f2f5;
        padding-bottom: 15px;*/
    }

/* Formulário de Novo Comentário */
#form-novo-comentario {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

    #form-novo-comentario textarea {
        border: 1px solid #ced4da;
        border-radius: 8px;
        resize: vertical;
        transition: all 0.3s ease;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    }

        #form-novo-comentario textarea:focus {
            border-color: #2d3479;
            box-shadow: 0 0 0 0.2rem rgba(45, 52, 121, 0.25);
        }

/*#form-novo-comentario button {
        background-color: #2d3479;
        border-color: #2d3479;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 6px;
        padding: 10px 24px;
        transition: all 0.3s ease;
    }

        #form-novo-comentario button:hover {
            background-color: #ef4036;
            border-color: #ef4036;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(239, 64, 54, 0.3);
        }*/

/* Lista de Comentários */
.comentario {
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 20px;
    margin-bottom: 25px;
    transition: all 0.2s ease;
}

    .comentario:hover {
        background-color: #fbfcff;
        border-radius: 8px;
        padding: 15px 15px 20px 15px;
        margin-left: -15px;
        margin-right: -15px;
        border-bottom-color: transparent;
    }

    .comentario .fa-user-circle-o {
        color: #b0b5c1;
        font-size: 2.5em;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .comentario h6 {
        color: #2d3479;
        font-size: 1.05rem;
    }

    .comentario p {
        color: #4a5568;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .comentario .text-muted {
        color: #a0aec0 !important;
        font-size: 0.8rem;
        font-weight: 500;
    }

/* Botão de Responder */
.btn-resposta {
    font-size: 13px;
    cursor: pointer;
    color: #ef4036;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s;
    background: none;
    border: none;
    padding: 0;
}

    .btn-resposta:hover {
        color: #2d3479;
        text-decoration: none;
    }

    .btn-resposta i {
        margin-right: 4px;
    }

/* Formulário de Resposta */
.form-resposta {
    margin-top: 15px;
    padding: 15px;
    background-color: #f0f4f8;
    border-radius: 8px;
    border-left: 3px solid var(--primary-soft);
    animation: slideDown 0.3s ease-out;
}

    .form-resposta textarea {
        border-radius: 6px;
        border: 1px solid #d9e2ec;
    }

/*.form-resposta .btn-enviar-resposta {
        background-color: #ef4036;
        border-color: #ef4036;
        font-weight: 600;
    }

    .form-resposta .btn-cancelar-resposta {
        background-color: transparent;
        color: #627d98;
        border: 1px solid #bcccdc;
        font-weight: 600;
    }

        .form-resposta .btn-cancelar-resposta:hover {
            background-color: #e4e7eb;
        }*/

/* Respostas (Aninhadas) */
.resposta {
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
    margin-top: 20px;
    position: relative;
}

    .resposta::before {
        content: '';
        position: absolute;
        left: -2px;
        top: 20px;
        width: 15px;
        height: 2px;
        background-color: #e2e8f0;
    }

    .resposta .fa-user-circle-o {
        color: #cbd5e0;
        font-size: 2em;
    }

    .resposta h6 {
        color: #4a5568;
    }

    .resposta p {
        color: #718096;
    }

/* Ícones interativos do Cabeçalho da Aula */
.favorito-icon {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .favorito-icon:active {
        transform: scale(0.8);
    }

a.toggle-favorito:hover {
    text-decoration: none;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.citation-container {
    background: #fcfcfc;
    border-left: 5px solid #2d3479;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

    .citation-container:hover {
        transform: translateX(5px);
    }

.quote-mark-icon {
    font-size: 1.8rem;
    color: #2d3479;
    opacity: 0.3;
    display: block;
}

.citation-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.6;
    font-weight: 500;
}

.citation-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d3479;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: block;
}

/* Comentários */
.comment-thread {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    padding: 20px;
    margin-bottom: 25px;
}

.comment-meta {
    font-size: 0.85rem;
    color: #718096;
}

.comment-content {
    font-size: 1.05rem;
    color: #2d3748;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.reply-content {
    font-size: 1rem;
    color: #2d3748;
    background: #f0fff4;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
    margin-top: 15px;
    margin-left: 20px;
}

.reply-form-container {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
/* Fim Comentários */


/* Links Modernizados */
.link-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

    .link-card:hover {
        border-color: #2d3479;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.link-icon-wrapper {
    background: #f0f2ff;
    color: #2d3479;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.link-content {
    flex-grow: 1;
    overflow: hidden;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.link-url {
    font-size: 0.85rem;
    color: #666;
    word-break: break-all;
    display: block;
    margin-top: 2px;
}

.link-external-icon {
    color: #2d3479;
    font-size: 1.2rem;
    margin-left: 1rem;
    opacity: 0.5;
}

.section-title-small {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3479;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Arquivos Modernizados */
.file-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

    .file-card:hover {
        border-color: #28a745;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.file-icon-wrapper {
    background: #e9f7ef;
    color: #28a745;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.file-action-label {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-download-icon {
    color: #28a745;
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Fim Aula */


/* Selecionar Escola */
.school-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

/* Oculta o checkbox nativo, mas mantém no DOM para submissão do form */
.school-checkbox {
    display: none;
}

/* O label vai atuar como o cartão clicável inteiro */
.school-card-label {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    margin: 0;
    cursor: pointer;
}

.school-card {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

    .school-card:hover {
        border-color: #b8c2cc;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        transform: translateY(-2px);
    }

.school-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #6c757d;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.school-info {
    flex-grow: 1;
}

.school-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin: 0;
    line-height: 1.3;
}

.school-status-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 4px;
    display: block;
}

.check-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

    .check-indicator i {
        color: white;
        font-size: 12px;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s ease;
    }

/* === ESTADOS QUANDO SELECIONADO === */

.school-checkbox:checked + .school-card {
    border-color: #007bff;
    background-color: #f8fbff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

    .school-checkbox:checked + .school-card .school-icon-wrapper {
        background-color: #007bff;
        color: white;
    }

    .school-checkbox:checked + .school-card .check-indicator {
        background-color: #007bff;
        border-color: #007bff;
    }

        .school-checkbox:checked + .school-card .check-indicator i {
            opacity: 1;
            transform: scale(1);
        }

    .school-checkbox:checked + .school-card .school-status-text {
        color: #007bff;
        font-weight: 500;
    }

/* Fim Selecionar Escola */


/* Cadastrar Aula Arquivo */
.filepond--root {
    margin-bottom: 0;
    cursor: pointer;
}

.filepond--panel-root {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
}

.upload-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.upload-header-inside {
    text-align: center;
    padding: 2rem 0;
    pointer-events: none;
}

    .upload-header-inside i {
        font-size: 3rem;
        color: #28a745;
        margin-bottom: 1rem;
        display: block;
    }

    .upload-header-inside h5 {
        font-weight: 700;
        color: #495057;
    }

.filepond--drop-label {
    min-height: 250px !important;
}

.file-item {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    padding: 1rem;
}

    .file-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border-color: #28a745;
    }

.destaque-file-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #343a40;
}

    .destaque-file-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 4px;
        background: #28a745;
        border-radius: 2px;
    }

.file-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-right: 1rem;
}
/* Fim Cadastrar Aula Arquivo */


/* Cadastrar Aula Fotos */
.filepond--root {
    margin-bottom: 0;
    cursor: pointer;
}

.filepond--panel-root {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
}

.upload-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 10px;
    transition: all 0.3s ease;
}

.upload-header-inside {
    text-align: center;
    padding: 2rem 0;
    pointer-events: none;
}

    .upload-header-inside i {
        font-size: 3rem;
        color: #007bff;
        margin-bottom: 1rem;
        display: block;
    }

    .upload-header-inside h5 {
        font-weight: 700;
        color: #495057;
    }

.filepond--drop-label {
    min-height: 250px !important;
}

.gallery-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    background: #fff;
}

    .gallery-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .gallery-card img {
        height: 160px;
        object-fit: cover;
        width: 100%;
    }

/* .btn-delete {
            color: #dc3545;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            padding: 8px 15px;
            display: inline-block;
            transition: all 0.2s;
            border-radius: 20px;
        }
        
        .btn-delete:hover {
            color: #fff;
            background-color: #dc3545;
            text-decoration: none;
        }

        .page-header {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            margin-bottom: 2rem;
        } */

.page-header {
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.btn-back {
    border-radius: 16px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.destaque-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #343a40;
}

    .destaque-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 4px;
        background: #007bff;
        border-radius: 2px;
    }
/* Fim Cadastrar Aula Fotos */


/* Cadastro */

.registration-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    border-top: 5px solid var(--primary);
}

.form-control-lg {
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    height: auto;
    transition: all 0.3s ease;
}

    .form-control-lg:focus {
        border-color: var(--primary);
        box-shadow: none;
        background-color: #f4f8fb;
    }

.user-type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.user-type-option {
    flex: 1;
    position: relative;
}

    .user-type-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.user-type-label {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.user-type-option input:checked + .user-type-label {
    border-color: var(--primary);
    background-color: #f4f8fb;
    color: var(--primary);
}

label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary-custom:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(20, 71, 129, 0.3);
        color: white;
    }

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 10;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}
/* Fim Cadastro */


/* Login */
.login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    border-top: 5px solid var(--primary);
}

.form-control-lg {
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    height: auto;
    transition: all 0.3s ease;
}

    .form-control-lg:focus {
        border-color: var(--primary);
        box-shadow: none;
        background-color: #f4f8fb;
    }

label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary-custom:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(20, 71, 129, 0.3);
        color: white;
    }

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 10;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* Fim Login */


/* Recuperar Senha */
.recovery-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    border-top: 5px solid var(--primary);
}

.form-control-lg {
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    height: auto;
    transition: all 0.3s ease;
}

    .form-control-lg:focus {
        border-color: var(--primary);
        box-shadow: none;
        background-color: #f4f8fb;
    }

label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary-custom:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(20, 71, 129, 0.3);
        color: white;
    }

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}
/* Fim Recuperar Senha */


/* Minha Conta */
.dashboard-container {
    padding-top: 20px;
    padding-bottom: 80px;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    text-decoration: none !important;
}

    .dashboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border-color: var(--primary-light);
    }

    .dashboard-card > i {
        background: #f4f8fb;
        width: 80px;
        height: 80px;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 2.5rem;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .dashboard-card:hover > i {
        background: var(--primary);
        color: #fff;
        transform: scale(1.1);
    }

.card-footer-link i {
    font-size: 1rem !important;
    margin: 0 !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}

.dashboard-card h4 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.dashboard-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

.welcome-section {
    margin-bottom: 20px;
}

    .welcome-section h2 {
        font-weight: 800;
        color: #1a202c;
        letter-spacing: -0.5px;
    }

    .welcome-section p {
        font-size: 1.1rem;
        color: #4a5568;
    }

.card-footer-link {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Fim Minha Conta */


/* Meus Dados */
.profile-header-gradient {
    height: 120px;
    background: linear-gradient(45deg, #0d6efd, #0043a8);
    position: relative;
    margin-bottom: 60px;
}

.profile-avatar-wrapper {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: #fff;
    border-radius: 50%;
}

.profile-initials-large {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #fcfcfd;
    border-radius: 1.25rem;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

    .info-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        border-color: #dee2e6;
    }

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
}

.bg-blue-soft {
    background-color: #e7f1ff;
}

.bg-green-soft {
    background-color: #e6fffa;
}

.info-content label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #adb5bd;
    margin-bottom: 2px;
    font-weight: 700;
}

.info-content span {
    display: block;
    font-weight: 700;
    color: #343a40;
    font-size: 1.1rem;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.border-top {
    border-top: 1px solid #f1f3f5 !important;
}

.hover-primary:hover {
    color: #0d6efd !important;
    text-decoration: none;
}

.transition-all {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .profile-body {
        padding: 0 0 1rem 0;
    }

    .info-grid {
        gap: .75rem;
    }

    .info-item {
        padding: .75rem;
    }

    .profile-initials-large {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
    }

    .profile-header-gradient {
        height: 100px;
        margin-bottom: 50px;
    }

    .profile-avatar-wrapper {
        bottom: -40px;
    }
}
/* Fim Meus Dados */


/* Meus Dados Edit */
.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rounded-lg {
    border-radius: 1rem !important;
}

.form-control:focus {
    background-color: #fff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
}
/* Fim Meus Dados Edit */


/* Cursos */
.title-curso {
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aulas-number {
    font-size: 1.4rem;
    font-weight: 700;
}

.number {
    font-size: 1.8rem;
    font-weight: 600;
}

.text-data {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1em;
}

.bordaesquerda-lg {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.bordadireita-lg {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.bordabottom-lg {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.bordatop-lg {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.borda-lg-none {
    border-radius: 0 !important;
}

.bg-bege {
    background-color: #f2efeb;
}

.bg-green {
    background-color: var(--secondary) !important;
}

#accordionModulos button {
    color: var(--white) !important;
    background-color: var(--primary-dark);
}

    #accordionModulos button:hover {
        color: var(--white) !important;
        background-color: var(--primary-dark) !important;
    }

.modulo-number {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8em;
}

.modulo-title {
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.2em;
    font-weight: 600;
}

.modulo .badge-warning {
    font-weight: 800;
    padding: 6px 8px;
    margin-bottom: 5px;
}

.class-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.class-title, .class-title a {
    font-size: 1.5rem;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: .5rem;
}

.text-card {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
}

#accordionModulos button .text-card p {
    color: var(--white);
}

#accordionModulos button:hover p, #accordionModulos button:hover .text-card p {
    color: var(--white);
}

#accordionModulos button.collapsed {
    color: var(--primary-dark);
    background-color: var(--bg-beige);
}

    #accordionModulos button.collapsed p {
        color: var(--primary-dark);
    }

ul.class-sidebar li.collapsed {
    color: var(--primary-dark);
    background-color: var(--bg-beige);
    margin-bottom: 6px;
}



ul.class-sidebar {
    list-style: none;
    margin-left: 0px;
    width: 100%;
}

    /*.modulo {
    background-color: var(--bg-soft);
    padding: 10px 15px;
    margin-bottom: 5px;
    border-left: 4px solid #ffc107;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}*/

    ul.class-sidebar li.modulo {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: var(--white);
        cursor: pointer;
        background-color: var(--primary);
        padding: .5rem 1.25rem;
        margin-bottom: 8px;
        border-radius: 16px;
        border-left: 4px solid #ffc107;
    }

        ul.class-sidebar li.modulo:hover {
            color: var(--white);
            background-color: var(--primary-dark);
        }

.class-sidebar .fa-check {
    font-size: .9rem;
    float: right;
    margin-top: 5px;
}

ul.class-sidebar li {
    list-style: none;
}

    ul.class-sidebar li a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--primary);
        display: block;
        padding: .75rem .75rem;
        border-radius: 16px;
        background-color: var(--bg-soft);
        border: 1px solid var(--border-soft);
        margin-bottom: 8px;
        transition: all 0.2s ease;
    }

        ul.class-sidebar li a:hover {
            color: var(--primary);
            background-color: var(--bg-slate);
            border-color: var(--primary-soft);
        }

    ul.class-sidebar li.active a {
        font-weight: 500 !important;
        text-decoration: none;
        background-color: var(--bg-slate);
        color: var(--primary);
        border-radius: 16px;
        padding: .75rem .75rem;
        display: block;
        border: 1px solid var(--primary-soft);
        transition: all 0.2s ease;
    }

        ul.class-sidebar li.active a:hover {
            color: var(--primary);
            background-color: var(--bg-soft);
            border-color: var(--border-soft);
        }

    ul.class-sidebar li ul {
        list-style: none;
        padding-left: 0px;
    }

    ul.class-sidebar li.desafio {
        background-color: var(--bg-beige);
        border-bottom: 1px solid var(--white);
    }

        ul.class-sidebar li.desafio a {
            color: #474139 !important;
        }

            ul.class-sidebar li.desafio a:hover {
                background-color: var(--bg-beige);
            }

                ul.class-sidebar li.desafio a:hover span {
                    text-decoration: underline;
                }

.lesson-item {
    display: flex !important;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.text-container {
    width: 100%;
}
/* Fim Cursos */



@media (max-width: 767px) {

    #comentarios-section {
        padding: 0;
        box-shadow: none;
    }

    #form-novo-comentario {
        padding: 10px;
    }

    .text-data {
        font-size: .9rem;
    }

    .number {
        font-size: 1.4rem;
    }

    .img-course {
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .bordadireita-lg {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    .bordaesquerda-lg {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 1rem !important;
        border-bottom-right-radius: 1rem !important;
    }

    #accordionModulos .card-body {
        padding: 15px 0;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .ebook-content {
        padding: 15px;
    }

    .card-meusdados .card-body {
        padding: 15px 0;
    }

    .card-body {
        padding: 15px 0;
    }

    .footer-modern .footer-brand {
        margin-top: 45px;
    }

    .footer-modern .copyright-bar {
        margin-top: 30px;
    }

    .whatsapp-float {
        right: 20px;
    }

    .floating-share {
        bottom: 80%;
        transform: translateY(-80%);
    }
}