/*
Theme Name: Estruturarte 2026
Author: Kodev
Author URI: https://kodev.com.br/
Description: Site institucional
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --azul: #0057bd;
    --verde: #63b530;
    --amarelo: #f4b606;
    --laranja: #ff5b43;
    --branco: #fff;
    --preto: #222;
    --bg: #f2f7fd;
    --azulEscuro: #00162e;
}

body {
    font-family: 'Rubik', sans-serif;
}

/* --- Estilos do Header --- */
header {
    width: 100%;
}

/* Garante que o menu não cole nas bordas no mobile */
@media (max-width: 991px) {
    .navbar > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .botoes-acesso {
        flex-direction: column;
        width: 100%;
    }

    .botoes-acesso .btn {
        width: 100%;
        margin: 5px 0 !important;
    }
}

/* --- Cores dos Botões (Conforme o Design) --- */

/* Botão ENTRAR - Azul Sólido */
.btn-entrar {
    background-color: #0056b3 !important; /* Azul do logo */
    color: white !important;
    font-weight: 700;
    border-radius: 25px; /* Bordas bem arredondadas */
    padding: 8px 25px;
    border: none;
    transition: 0.3s;
}

.btn-entrar:hover {
    background-color: #004494 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Botão CADASTRAR - Apenas Borda Azul */
.btn-cadastrar-topo {
    background-color: transparent !important;
    color: #0056b3 !important;
    border: 2px solid #0056b3 !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 6px 25px;
    transition: 0.3s;
}

.btn-cadastrar-topo:hover {
    background-color: #0056b3 !important;
    color: white !important;
}

/* --- Links do Menu --- */
.nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 0 15px !important;
}

.nav-item.active .nav-link {
    color: #0056b3 !important;
}

.menu nav.nav a.nav-link {
    color: var(--preto);
    font-weight: 500;
}

.menu nav.nav a.nav-link:hover {
    color: var(--azul);
    font-weight: 500;
}

.menu nav.nav a.selecionado {
    color: var(--azul);
    font-weight: 600;
    border-bottom: 2px solid var(--azul);
}

.btn-padrao {
    background-color: var(--azul);
    color: var(--branco);
    border-radius: 50vh;
}

.btn-padrao:hover {
    background-color: var(--preto);
    color: var(--branco);
    border-radius: 50vh;
}

.btn-padrao-out {
    background-color: transparent;
    color: var(--azul);
    border: 2px solid var(--azul);
    border-radius: 50vh;
}

.btn-padrao-out:hover {
    background-color: var(--azul);
    color: var(--branco);
    border-radius: 50vh;
}

.secao-hero {
    min-height: 100vh;
    background-image: url('img/hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    background-color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    .secao-hero {
        min-height: auto;
        padding: 120px 0 260px;
        background-image:
            linear-gradient(to bottom, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.25) 100%),
            url('img/hero.png');
        background-size: cover;
        background-position: 72% bottom;
        align-items: flex-start;
    }

    .titulo-principal {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .secao-hero {
        min-height: calc(100vh - 94px);
        padding: 170px 0 260px;
        text-align: center;

        background-image:
            linear-gradient(to bottom, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 45%, rgba(255,255,255,.15) 100%),
            url('img/hero.png');

        background-size: cover;
        background-position: 68% center;
        background-repeat: no-repeat;
    }

    .conteudo-hero {
        max-width: 100%;
        margin: 0 auto;
    }

    .titulo-principal {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .descricao-hero {
        max-width: 100%;
        font-size: 1rem;
    }

    .botoes-hero,
    .grupo-alunos {
        justify-content: center;
    }

    .grupo-alunos {
        flex-direction: column;
        gap: 10px;
    }

    .texto-alunos {
        margin-left: 0 !important;
    }
}

.titulo-principal {
    font-weight: 800;
    font-size: 3.5rem;
    color: #0d1b2a; /* Azul escuro */
}

.texto-colorido {
    /* Cores aproximadas da imagem: Azul, Verde, Amarelo/Laranja, Vermelho */
    background: linear-gradient(to right, #007bff, #28a745, #ffc107, #dc3545);
    
    /* Aplica o degradê apenas ao texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Garante que o fundo não se repita */
    background-clip: text;
    color: transparent; /* Backup para navegadores que não suportam clip */
    
    font-weight: 800; /* Deixa o degradê mais visível */
}

.descricao-hero {
    font-size: 1.1rem;
    color: var(--preto);
    margin: 40px 0;
    max-width: 450px;
    font-weight: 400;
}

/* Botões Personalizados */
.btn-primario {
    background-color: #0056b3;
    color: white;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: bold;
}

.btn-secundario {
    border: 1px solid #0056b3;
    color: #0056b3;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: bold;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .secao-hero {
        background-position: center; /* Centraliza a imagem no mobile */
        text-align: center;
    }
    .titulo-principal {
        font-size: 2.5rem;
    }
    .descricao-hero {
        margin: 20px auto;
    }
}

.sublinhado-degrade {
    position: relative; /* Necessário para posicionar a linha em relação ao texto */
    display: inline-block;
}

.sublinhado-degrade::after {
    content: ""; /* Cria o elemento vazio */
    position: absolute;
    left: 0;
    bottom: -10px; /* Ajuste aqui para afastar ou aproximar o risco do texto */
    
    /* Largura e altura do risco */
    width: 100px;  /* Você pode usar % ou px */
    height: 4px;   /* Grossura da linha */
    
    /* O degradê (Gradiante) */
    background: linear-gradient(to right, #0056b3, #0056b3, transparent);
    
    /* Arredondar as pontas (opcional) */
    border-radius: 2px;
}

.fotos-empilhadas {
    display: flex;
    flex-direction: row;
}

.foto-circulo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #fff; /* Cria a divisão branca entre as fotos */
    object-fit: cover;
    margin-left: -15px; /* Faz as fotos sobreporem */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Remove a margem negativa da primeira foto para ela não sair da tela */
.foto-circulo:first-child {
    margin-left: 0;
}

.texto-alunos {
    font-size: 0.95rem;
    color: #333;
}

/* Posicionamento da barra subindo um pouco sobre o hero (opcional) */
.barra-diferenciais-container {
    margin-top: -50px; 
    position: relative;
    z-index: 20;
}

.barra-diferenciais {
    background: #fff;
    border-radius: 20px; /* Bordas bem arredondadas */
    padding: 30px 15px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
}

.item-diferencial {
    display: flex;
    align-items: center;
    border-right: 1px solid #eee; /* Linha divisória */
    padding: 10px 20px;
}

.item-final {
    border-right: none; /* Remove a linha do último item */
}

/* Estilo dos Círculos dos Ícones */
.icone-circulo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 22px;
}

/* Cores dos Ícones */
.bg-azul { background-color: #007bff; }
.bg-verde { background-color: #5cb85c; }
.bg-amarelo { background-color: #ffc107; }
.bg-vermelho { background-color: #ff4d4d; }

/* Textos */
.texto-diferencial h6 {
    margin: 0;
    font-weight: 800;
    color: #0d1b2a;
    font-size: 1rem;
}

.texto-diferencial p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.2;
}

/* Responsividade: Remove linhas divisórias no mobile */
@media (max-width: 768px) {
    .item-diferencial {
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .barra-diferenciais-container {
        margin-top: 20px;
    }
}

/* Títulos e Cabeçalho */
.subtitulo {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 1px;
}
.titulo-secao {
    font-weight: 800;
    color: #0d1b2a;
}
.texto-azul { color: #0056b3; }
.link-todos {
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
}

/* Estilo do Card */
.card-curso {
    border: none;
    border-radius: 20px;
    overflow: hidden; /* Garante que a imagem siga o arredondamento */
    transition: transform 0.3s ease;
    min-height: 370px;
}
.card-curso:hover {
    transform: translateY(-10px);
}

.posicao-relativa {
    position: relative;
}

/* Badge "Destaque" */
.badge-destaque {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0056b3;
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Ícone Redondo Sobreposto */
.icone-sobreposto {
    position: absolute;
    bottom: -20px; /* Faz o ícone ficar entre a imagem e o corpo */
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid white;
}

/* Corpo do Card */
.card-body {
    padding-top: 35px; /* Espaço para o ícone que está em cima */
}
.card-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0d1b2a;
}
.card-text {
    font-size: 0.9rem;
    color: #6c757d;
}
.carga-horaria {
    font-size: 0.8rem;
    color: #adb5bd;
}

.card-img-top {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.barra-impacto {
    /* Degradê suave de azul claro para um tom levemente amarelado/branco */
    background: linear-gradient(135deg, #eef5ff 0%, #fffcf5 100%);
    border-radius: 30px;
    padding: 60px 40px 40px 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.05);
}

.subtitulo-impacto {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1.2px;
}

.titulo-impacto {
    font-weight: 800;
    font-size: 1.3rem;
    color: #0d1b2a;
    line-height: 1.2;
}

.estatistica-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.estatistica-item h4 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #0d1b2a;
}

.estatistica-item p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

/* Cores dos Ícones (sem fundo, apenas a cor do ícone) */
.icone-azul { color: #0056b3; }
.icone-verde { color: #28a745; }
.icone-amarelo { color: #ffc107; }
.icone-vermelho { color: #dc3545; }

/* Ajustes para Mobile */
@media (max-width: 768px) {
    .barra-impacto {
        padding: 30px 15px;
        text-align: center;
    }
    .estatistica-item {
        margin-bottom: 25px;
    }
}

/* Estilo comum dos depoimentos */
.card-depoimento {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.3s;
}

.aspas {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.aspas.azul { color: #0056b3; }
.aspas.verde { color: #28a745; }
.aspas.amarelo { color: #ffc107; }

.texto-depoimento {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    min-height: 80px;
}

.foto-autor {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.autor-info h6 {
    margin: 0;
    font-weight: 800;
    font-size: 0.95rem;
}

.autor-info span {
    font-size: 0.75rem;
    color: #888;
}

/* Estilo do Card Azul (CTA) */
.card-cta {
    background: linear-gradient(135deg, #0044cc 0%, #007bff 100%);
    border: none;
    border-radius: 25px;
    padding: 20px;
}

.icone-foguete {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transform: rotate(-45deg);
}

.card-cta h5 {
    font-weight: 800;
    font-size: 1.2rem;
}

.card-cta p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-branco-cta {
    background: white;
    color: #0056b3;
    font-weight: 800;
    border-radius: 12px;
    padding: 10px;
    border: none;
    transition: 0.3s;
}

.btn-branco-cta:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Barra de Newsletter com o degradê da imagem */
.barra-newsletter {
    background: linear-gradient(to right, #007bff, #28a745, #ffc107, #fd7e14, #dc3545);
    padding: 25px 0;
    color: white;
}

.icone-email {
    font-size: 2.5rem;
}

.texto-news h5 {
    font-weight: 800;
}

.texto-news p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Formulário News */
.campo-email {
    border-radius: 10px 0 0 10px;
    border: none;
    padding: 25px 20px;
}

.btn-assinar {
    background-color: #fd7e14; /* Laranja da imagem */
    color: white;
    font-weight: 800;
    border-radius: 0 10px 10px 0;
    padding: 0 30px;
    border: none;
    text-transform: uppercase;
}

/* Rodapé Escuro */
.rodape-conteudo {
    background-color: #031529; /* Azul bem escuro */
}

.titulo-footer {
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
}

.links-footer li {
    margin-bottom: 10px;
}

.links-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.links-footer a:hover {
    color: white;
    padding-left: 5px;
}

.contato-lista li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.contato-lista i {
    margin-right: 10px;
    color: white;
}

/* Redes Sociais */
.redes-sociais a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    opacity: 0.8;
    transition: 0.3s;
}

.redes-sociais a:hover {
    opacity: 1;
    transform: translateY(-3px);
    display: inline-block;
}

/* Responsividade */
@media (max-width: 991px) {
    .barra-newsletter {
        text-align: center;
    }
    .icone-email {
        display: none !important;
    }
    .form-newsletter {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    /* Garante que o container da barra tenha um respiro lateral */
    .barra-diferenciais-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .barra-diferenciais {
        margin-top: 20px; /* Evita que ela suba demais no mobile */
        padding: 20px;    /* Espaçamento interno para os itens não colarem no branco */
    }

    .item-diferencial {
        border-right: none;
        border-bottom: 1px solid var(--borda);
        padding: 15px 0; /* Espaçamento entre os itens empilhados */
    }

    .item-diferencial:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Ajuste para o texto não ficar esmagado ao lado do ícone */
    .texto-diferencial h6 {
        font-size: 0.95rem;
    }
    
    .texto-diferencial p {
        font-size: 0.8rem;
    }
}

/* --- Hero Interno de Curso --- */
.hero-detalhe-curso {
    padding: 60px 0 100px;
    background-color: var(--bg);
    position: relative;
}

.breadcrumb-item, .breadcrumb-item a {
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: none;
}

.badge-gratuito {
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.titulo-curso-interno {
    font-size: 4rem;
    font-weight: 800;
    color: var(--azulEscuro);
    line-height: 1.1;
}

.gradiente-azul {
    background: linear-gradient(to right, #0057bd, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ementa-curta {
    font-size: 1.15rem;
    color: #555;
    margin: 25px 0;
    max-width: 500px;
}

/* Garante o alinhamento correto dos itens em qualquer tela */
.beneficio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Seu código atual do Computador */
.lista-beneficios-curso {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* Código para o Mobile (2x2) */
@media (max-width: 768px) {
    .lista-beneficios-curso {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.overflow-hidden {
    overflow-x: hidden !important;
}


.beneficio-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinha os itens (ícone e texto) horizontalmente ao centro */
    justify-content: center; /* Alinha os itens verticalmente ao centro (opcional) */
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center; /* Garante que as linhas de texto fiquem centralizadas entre si */
    color: #777;
}

.beneficio-item i {
    font-size: 1.2rem;
    color: var(--azul);
    margin-bottom: 5px;
}

/* --- Botões --- */
.btn-inscrever-agora {
    background-color: var(--azul);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-inscrever-agora:hover {
    background-color: var(--azul);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-ver-conteudo, .btn-ver-conteudo:hover {
    border: 2px solid #ddd;
    color: var(--azul);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
    text-decoration: none;
}

/* --- Elementos da Direita (Imagem e Cards) --- */
.container-imagem-personalizada {
    position: relative;
    z-index: 5;
}

.img-principal-hero {
    width: 100%;
    position: relative;
    z-index: 2;
}

.card-flutuante-alunos {
    position: absolute;
    top: 50px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 10;
    width: 180px;
    text-align: center;
}

.titulo-card-f {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.circulo-decor-azul {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 50%;
    bottom: 0;
    right: 50px;
    z-index: 1;
    opacity: 0.8;
}

.circulo-decor-verde {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--verde);
    border-radius: 50%;
    top: 150px;
    left: 20px;
    z-index: 1;
}

/* --- Mobile --- */
@media (max-width: 991px) {
    .titulo-curso-interno { font-size: 2.8rem; }
    .acoes-hero-curso { display: flex; flex-direction: column; gap: 15px; }
    .btn-ver-conteudo { margin-left: 0; border-radius: 12px; }
    .lista-beneficios-curso { grid-template-columns: 1fr; }
}

/* Container do Gráfico */
.container-grafico {
    position: relative;
    height: auto;
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
    padding: 0 10px;
    text-align: center;
}

.container-grafico img {
    height: auto;
    margin-bottom: 20px;
    text-align: center;
}

.linha-grafico {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #28a745);
    opacity: 0.3;
}

/* Empilhamento das Fotos dos Alunos */
.alunos-mini-fotos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.alunos-mini-fotos img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px; /* Efeito de sobreposição */
    object-fit: cover;
}

.alunos-mini-fotos img:first-child {
    margin-left: 0;
}

.contador-mais {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--azulEscuro);
    margin-left: 8px;
}

.texto-impacto {
    color: #6c757d;
    font-size: 0.75rem;
    display: block;
    text-align: center;
}

/* Ajuste no Card Flutuante */
.card-flutuante-alunos {
    position: absolute;
    top: 50px;
    right: -30px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    z-index: 10;
    width: 200px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Definição da animação "flutuar" */
@keyframes flutuar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* Sobe 15 pixels */
    }
    100% {
        transform: translateY(0);
    }
}

/* Aplicando a animação ao card */
.card-flutuante-alunos {
    /* Mantém as propriedades anteriores e adiciona a linha abaixo: */
    animation: flutuar 3s ease-in-out infinite;
    
    /* Opcional: Adiciona uma sombra que acompanha o movimento para dar profundidade */
    transition: box-shadow 0.3s ease;
}



/* --- Seção O Que Você Vai Aprender --- */
.secao-aprendizado {
    background-color: #fff;
}

.titulo-aprendizado {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--azulEscuro);
}

.grade-aprendizado {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 30px;
}

.item-aprendizado {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-aprendizado p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

/* Estilo dos Ícones Vazados */
.icone-aprendizado {
    font-size: 1.4rem;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Cores específicas baseadas na imagem */
.azul-claro { color: #3a86ff; }
.verde-lima { color: #70e000; }
.amarelo-ouro { color: #ffbe0b; }
.vermelho-coral { color: #ff006e; }
.roxo { color: #8338ec; }
.ciano { color: #00f5d4; }
.azul-escuro { color: #0057bd; }
.violeta { color: #be95ff; }

/* Responsividade */
@media (max-width: 991px) {
    .grade-aprendizado {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 576px) {
    .grade-aprendizado {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    
    .titulo-aprendizado {
        text-align: center;
    }
}

/* --- Estilos Adicionais do Curso --- */
.card-detalhe-branco {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.titulo-interno-aula {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--azulEscuro);
}

/* Accordion Customizado */
.item-modulo-personalizado {
    border: none !important;
    background: #f8f9fa !important;
    border-radius: 15px !important;
    overflow: hidden;
}

.item-modulo-personalizado .accordion-button {
    background: transparent !important;
    padding: 15px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.icone-modulo {
    width: 40px;
    height: 40px;
    background: var(--azul);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
}

.label-modulo {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--azul);
    text-transform: uppercase;
}

.nome-aula {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}

/* Estilo Professor */
.img-professor-circular {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
}

.nome-professor {
    font-weight: 800;
    margin-bottom: 5px;
}

.cargo-professor {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

.bio-professor {
    font-size: 0.85rem;
    color: #555;
    margin: 15px 0;
}

.lista-professor-check {
    list-style: none;
    padding: 0;
}

.lista-professor-check li {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.lista-professor-check i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1rem;
}

/* Container Principal */
.card-programatico {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f0f0f0;
}

.titulo-programatico {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0d1b2a;
    margin-bottom: 25px;
}

/* Item do Accordion */
.accordion-item-custom {
    background: #f8f9fa;
    border-radius: 12px !important;
    margin-bottom: 15px;
    border: none;
    overflow: hidden;
}

/* Botão de Clique */
.accordion-button-custom {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.accordion-button-custom:not(.collapsed) {
    background: #fff; /* Muda a cor quando aberto */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Ícone Azul */
.modulo-icone-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #0057bd; /* Cor da sua variável --azul */
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
}

/* Textos internos */
.modulo-info {
    display: flex;
    flex-direction: column;
}

.modulo-numero {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #0057bd;
    margin-bottom: 2px;
}

.modulo-titulo {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Seta na Direita */
.seta-accordion {
    margin-left: auto;
    font-size: 0.8rem;
    color: #aaa;
    transition: 0.3s;
}

.accordion-button-custom:not(.collapsed) .seta-accordion {
    transform: rotate(180deg);
}

/* Conteúdo que expande */
.accordion-body-custom {
    padding: 15px 20px 20px 75px; /* Alinha o texto abaixo do título, pulando o ícone */
    font-size: 0.9rem;
    color: #666;
}

.accordion-body-custom ul {
    margin: 0;
    padding-left: 20px;
}

/* Remove a borda preta/azul e a sombra ao clicar no botão do accordion */
.accordion-button-custom:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove a borda que o Bootstrap 4 às vezes coloca no item inteiro */
.accordion-item-custom, 
.accordion-item-custom .accordion-header,
.accordion-button-custom {
    border: none !important;
}

/* Garante que não haja borda mesmo quando o item estiver aberto */
.accordion-button-custom:not(.collapsed) {
    box-shadow: none !important;
    border: none !important;
}

/* --- Estilização do Slider de Depoimentos --- */
.titulo-depoimentos {
    font-weight: 800;
    color: #0d1b2a;
    font-size: 1.8rem;
}

.card-depoimento {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.foto-aluno {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.estrelas {
    color: #ffbe0b;
    font-size: 0.8rem;
}

.texto-depoimento {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.nome-aluno {
    font-weight: 700;
    margin-bottom: 2px;
}

.cargo-aluno {
    color: #888;
    font-size: 0.75rem;
}

/* --- Ajuste das Setas (Centralização Perfeita) --- */
.custom-control {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #0057bd;
    opacity: 1;
    
    /* Flexbox para não ficar torto */
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.custom-control:hover {
    color: #0057bd;
}

.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }

/* --- Indicadores (Pontinhos) --- */
.custom-indicators {
    bottom: -60px;
}
.custom-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
}
.custom-indicators li.active {
    background-color: #0057bd;
}

/* Responsividade: esconde setas em telas muito pequenas para não quebrar */
@media (max-width: 768px) {
    .custom-control { display: none; }
}

section.depoimentos-alunos {
    margin-bottom: 50px;
}

/* --- FAQ Styles --- */
.titulo-secao-faq {
    font-weight: 800;
    color: #0d1b2a;
    font-size: 1.6rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: none;
}

.btn-faq {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-faq:focus { outline: none; }

.icone-faq {
    color: #0057bd;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-faq:not(.collapsed) .icone-faq {
    transform: rotate(45deg); /* Transforma o + em um x ao abrir */
}

.faq-body {
    padding: 0 20px 20px 20px;
    font-size: 0.9rem;
    color: #666;
}

/* --- Banner Final Styles --- */
.banner-final-azul {
    background-color: #0057bd; /* Azul idêntico à imagem */
    border-radius: 25px;
    color: white;
}

.badge-light-outline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.texto-banner-final {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.subtitulo-banner-final {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-white-cta {
    background: white;
    color: #0057bd;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-white-cta:hover {
    background: #f0f0f0;
    color: #0057bd;
    transform: translateY(-3px);
}

.decoracao-aviao {
    position: absolute;
    right: 30px;
    bottom: -10px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
    pointer-events: none;
}

.sobre-hero {
    background: #f3f8ff;
    padding: 80px 0 110px;
}

.badge-verde {
    background: #24b947;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.sobre-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 24px;
}

.sobre-hero h1 span {
    color: #0077e6;
    display: block;
}

.sobre-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 520px;
    margin-bottom: 32px;
}

.sobre-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-azul,
.btn-azul:hover,
.btn-cta,
.btn-cta:hover {
    background: #005fd1;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-azul,
.btn-outline-azul:hover {
    border: 1px solid #005fd1;
    color: #005fd1;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

.sobre-img-box img,
.imagem-historia img {
    max-width: 100%;
}

.sobre-cards {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.sobre-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    height: 100%;
    margin-bottom: 30px;
}

.sobre-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon.azul { background: #0077e6; }
.icon.verde { background: #35b957; }
.icon.amarelo { background: #ffb800; }

.sobre-card h3,
.atuacao-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #061a35;
}

.sobre-card p,
.atuacao-card p,
.sobre-historia p {
    color: #5f6f7f;
    font-size: 15px;
    line-height: 1.7;
}

.sobre-historia,
.sobre-atuacao {
    padding: 90px 0;
}

.subtitulo {
    color: #005fd1;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5px;
}

.sobre-historia h2,
.sobre-atuacao h2 {
    font-size: 38px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0 20px;
}

.lista-check {
    padding: 0;
    list-style: none;
    margin-top: 25px;
}

.lista-check li {
    margin-bottom: 14px;
    font-weight: 700;
    color: #061a35;
}

.lista-check i {
    color: #24b947;
    margin-right: 10px;
}

.sobre-impacto {
    padding: 40px 0;
}

.impacto-box {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border: 1px solid #e6edf5;
    border-radius: 24px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

.impacto-box span {
    font-size: 12px;
    font-weight: 900;
    color: #66788a;
}

.impacto-box h2 {
    font-size: 28px;
    font-weight: 900;
    color: #061a35;
}

.impacto-item {
    text-align: center;
}

.impacto-item i {
    font-size: 30px;
    color: #005fd1;
    margin-bottom: 12px;
}

.impacto-item strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #061a35;
}

.impacto-item p {
    color: #697888;
    font-size: 14px;
    margin: 0;
}

.atuacao-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.atuacao-card i {
    font-size: 32px;
    color: #005fd1;
    margin-bottom: 20px;
}

.sobre-cta {
    padding: 40px 0 80px;
}

.cta-box {
    background: #005fd1;
    color: #fff;
    border-radius: 22px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-box span {
    background: rgba(255,255,255,.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 900;
    margin: 18px 0 8px;
}

.cta-box p {
    margin: 0;
    opacity: .9;
}

.btn-cta {
    background: #fff;
    color: #005fd1;
    white-space: nowrap;
}

@media(max-width: 991px) {
    .sobre-hero h1 {
        font-size: 42px;
    }

    .impacto-box {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 575px) {
    .sobre-hero {
        padding: 55px 0 90px;
    }

    .sobre-hero h1 {
        font-size: 36px;
    }

    .impacto-box {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 34px 22px;
    }
}


.impacto-hero {
    background: #f3f8ff;
    padding: 80px 0;
}

.impacto-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 24px;
}

.impacto-hero h1 span {
    color: #0077e6;
    display: block;
}

.impacto-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 560px;
    margin-bottom: 32px;
}

.impacto-destaque {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.impacto-numero {
    background: linear-gradient(120deg, #005fd1, #0088ff);
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 18px;
}

.impacto-numero strong {
    display: block;
    font-size: 48px;
    font-weight: 900;
}

.impacto-numero span {
    font-size: 16px;
    font-weight: 700;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7faff;
    border-radius: 16px;
    padding: 18px;
    margin-top: 12px;
}

.mini-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #005fd1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card p {
    margin: 0;
    font-weight: 800;
    color: #061a35;
}

.impacto-numeros {
    padding: 60px 0;
}

.numeros-box {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border: 1px solid #e6edf5;
    border-radius: 24px;
    padding: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.numero-item {
    text-align: center;
}

.numero-item i {
    font-size: 30px;
    color: #005fd1;
    margin-bottom: 12px;
}

.numero-item strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #061a35;
}

.numero-item p {
    margin: 0;
    color: #697888;
    font-size: 14px;
}

.impacto-como {
    padding: 70px 0;
}

.impacto-como h2 {
    font-size: 38px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0 12px;
}

.impacto-como .text-center p {
    max-width: 620px;
    margin: 0 auto;
    color: #647386;
}

.impacto-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.impacto-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon.azul { background: #0077e6; }
.icon.verde { background: #35b957; }
.icon.vermelho { background: #ff4b55; }

.impacto-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #061a35;
}

.impacto-card p {
    color: #5f6f7f;
    font-size: 15px;
    line-height: 1.7;
}

.impacto-frase {
    padding: 40px 0 90px;
}

.frase-box {
    background: #005fd1;
    color: #fff;
    border-radius: 24px;
    padding: 52px;
    text-align: center;
}

.frase-box h2 {
    max-width: 780px;
    margin: 0 auto 18px;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
}

.frase-box p {
    max-width: 620px;
    margin: 0 auto 28px;
    opacity: .9;
}

.btn-cta {
    background: #fff;
    color: #005fd1;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media(max-width: 991px) {
    .impacto-hero h1 {
        font-size: 42px;
    }

    .numeros-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 575px) {
    .impacto-hero {
        padding: 55px 0;
    }

    .impacto-hero h1 {
        font-size: 36px;
    }

    .numeros-box {
        grid-template-columns: 1fr;
    }

    .frase-box {
        padding: 36px 22px;
    }

    .frase-box h2 {
        font-size: 28px;
    }
}


.parcerias-hero {
    background: #f3f8ff;
    padding: 80px 0;
}

.parcerias-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 24px;
}

.parcerias-hero h1 span {
    color: #0077e6;
    display: block;
}

.parcerias-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 560px;
    margin-bottom: 32px;
}

.parcerias-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.parcerias-numero {
    background: linear-gradient(120deg, #005fd1, #0088ff);
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 18px;
}

.parcerias-numero strong {
    display: block;
    font-size: 48px;
    font-weight: 900;
}

.parcerias-numero span {
    font-size: 16px;
    font-weight: 700;
}

.parcerias-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7faff;
    border-radius: 16px;
    padding: 18px;
    margin-top: 12px;
}

.parcerias-mini-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #005fd1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parcerias-mini-card p {
    margin: 0;
    font-weight: 800;
    color: #061a35;
}

.por-que-apoiar,
.empresas-parceiras {
    padding: 80px 0;
}

.por-que-apoiar h2,
.empresas-parceiras h2 {
    font-size: 38px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0;
}

.por-que-apoiar .text-center p,
.empresas-parceiras .text-center p {
    max-width: 650px;
    margin: 0 auto;
    color: #647386;
}

.apoio-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.apoio-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon.azul { background: #0077e6; }
.icon.verde { background: #35b957; }
.icon.amarelo { background: #ffb800; }

.apoio-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #061a35;
}

.apoio-card p {
    color: #5f6f7f;
    font-size: 15px;
    line-height: 1.7;
}

.formas-apoio {
    padding: 50px 0;
}

.apoio-box {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border: 1px solid #e6edf5;
    border-radius: 24px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: center;
}

.apoio-box span {
    font-size: 12px;
    font-weight: 900;
    color: #005fd1;
}

.apoio-box h2 {
    font-size: 32px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0 14px;
}

.apoio-box p {
    color: #647386;
    line-height: 1.7;
    margin: 0;
}

.apoio-lista {
    display: grid;
    gap: 12px;
}

.apoio-lista div {
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 800;
    color: #061a35;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.apoio-lista i {
    color: #24b947;
    margin-right: 8px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.logo-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    min-height: 145px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.logo-card img {
    max-width: 170px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .85;
    transition: .3s;
}

.logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.logo-card a,
.logo-card a:hover {
    text-decoration: none !important;
    font-weight: 700;
}

.logo-placeholder {
    border: 2px dashed #c9d9eb;
    background: #f8fbff;
    flex-direction: column;
    gap: 10px;
    color: #005fd1;
    font-weight: 900;
}

.logo-placeholder i {
    font-size: 24px;
}

.parcerias-cta {
    padding: 40px 0 90px;
}

.cta-box {
    background: #005fd1;
    color: #fff;
    border-radius: 24px;
    padding: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-box span {
    background: rgba(255,255,255,.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
}

.cta-box h2 {
    font-size: 34px;
    font-weight: 900;
    margin: 18px 0 8px;
}

.cta-box p {
    margin: 0;
    opacity: .9;
}

.btn-cta {
    background: #fff;
    color: #005fd1;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

@media(max-width: 991px) {
    .parcerias-hero h1 {
        font-size: 42px;
    }

    .apoio-box {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 575px) {
    .parcerias-hero {
        padding: 55px 0;
    }

    .parcerias-hero h1 {
        font-size: 36px;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 36px 22px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}


.contato-hero {
    background: #f3f8ff;
    padding: 80px 0 110px;
}

.contato-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin: 20px 0;
}

.contato-hero h1 span {
    color: #0077e6;
    display: block;
}

.contato-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 650px;
    margin: 0 auto;
}

.contato-area {
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.contato-info,
.form-contato-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

.contato-info h2,
.form-contato-box h2 {
    font-size: 28px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 14px;
}

.contato-info p {
    color: #647386;
    line-height: 1.7;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f7faff;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 46px;
}

.info-icon.azul { background: #0077e6; }
.info-icon.verde { background: #35b957; }
.info-icon.amarelo { background: #ffb800; }

.info-item strong {
    display: block;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 3px;
}

.info-item span {
    color: #647386;
    font-size: 14px;
}

.social-contato {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-contato a {
    width: 42px;
    height: 42px;
    background: #005fd1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.form-contato-box label {
    font-size: 14px;
    font-weight: 800;
    color: #061a35;
    margin-bottom: 7px;
}

.form-contato-box .form-control,
.form-contato-box .form-select {
    border: 1px solid #dfe8f3;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    color: #061a35;
}

.form-contato-box .form-control:focus,
.form-contato-box .form-select:focus {
    border-color: #005fd1;
    box-shadow: 0 0 0 4px rgba(0,95,209,.08);
}

.contato-mapa {
    padding: 30px 0 70px;
}

.mapa-box {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.contato-cta {
    padding: 20px 0 90px;
}

@media(max-width: 991px) {
    .contato-hero h1 {
        font-size: 42px;
    }

    .contato-area {
        margin-top: -45px;
    }
}

@media(max-width: 575px) {
    .contato-hero {
        padding: 55px 0 90px;
    }

    .contato-hero h1 {
        font-size: 36px;
    }

    .contato-info,
    .form-contato-box {
        padding: 26px;
    }
}

/* CURSOS */

.curso-item {
    margin-bottom: 30px;
}

.lista-cursos-hero {
    background: #f3f8ff;
    padding: 80px 0 115px;
}

.lista-cursos-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin: 20px 0;
}

.lista-cursos-hero h1 span {
    color: #0077e6;
    display: block;
}

.lista-cursos-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 680px;
    margin: 0 auto;
}

.filtros-cursos {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.filtros-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 16px;
    box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

.input-busca {
    position: relative;
}

.input-busca i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #005fd1;
}

.input-busca input,
.filtros-box select {
    width: 100%;
    border: 1px solid #dfe8f3;
    border-radius: 14px;
    padding: 15px 18px;
    font-weight: 700;
    color: #061a35;
    background: #fff;
    outline: none;
}

.input-busca input {
    padding-left: 48px;
}

.input-busca input:focus,
.filtros-box select:focus {
    border-color: #005fd1;
    box-shadow: 0 0 0 4px rgba(0,95,209,.08);
}

.lista-cursos {
    padding: 70px 0;
}

.curso-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: .3s;
}

.curso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.curso-img {
    height: 210px;
    position: relative;
    background: #f3f8ff;
    overflow: hidden;
}

.curso-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-img span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #24b947;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 30px;
}

.curso-body {
    padding: 28px;
}

.curso-categoria {
    display: inline-block;
    background: #eef6ff;
    color: #005fd1;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.curso-body h3 {
    font-size: 24px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 12px;
}

.curso-body p {
    color: #647386;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.curso-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.curso-info div {
    background: #f7faff;
    color: #061a35;
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
}

.curso-info i {
    color: #005fd1;
    margin-right: 5px;
}

.btn-curso {
    background: #005fd1;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-curso:hover {
    background: #004faf;
    color: #fff;
    text-decoration: none;
}

.sem-resultados {
    display: none;
    text-align: center;
    background: #f7faff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 45px 20px;
    margin-top: 30px;
}

.sem-resultados i {
    font-size: 38px;
    color: #005fd1;
    margin-bottom: 15px;
}

.sem-resultados h3 {
    font-size: 24px;
    font-weight: 900;
    color: #061a35;
}

.sem-resultados p {
    color: #647386;
    margin: 0;
}

.cursos-cta {
    padding: 10px 0 90px;
}

@media(max-width: 991px) {
    .lista-cursos-hero h1 {
        font-size: 42px;
    }

    .filtros-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px) {
    .lista-cursos-hero {
        padding: 55px 0 95px;
    }

    .lista-cursos-hero h1 {
        font-size: 36px;
    }

    .curso-img {
        height: 190px;
    }
}

/* DOAR */

.doacao-hero {
    background: #f3f8ff;
    padding: 80px 0;
}

.doacao-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 24px;
}

.doacao-hero h1 span {
    color: #0077e6;
    display: block;
}

.doacao-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 560px;
    margin-bottom: 32px;
}

.doacao-card-destaque {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.doacao-icon {
    width: 72px;
    height: 72px;
    background: #24b947;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.doacao-card-destaque h2 {
    font-size: 32px;
    font-weight: 900;
    color: #061a35;
}

.doacao-card-destaque p {
    color: #647386;
    line-height: 1.7;
}

.doacao-mini-info {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.doacao-mini-info div {
    background: #f7faff;
    border-radius: 16px;
    padding: 16px;
}

.doacao-mini-info strong {
    display: block;
    color: #005fd1;
    font-size: 24px;
    font-weight: 900;
}

.doacao-mini-info span {
    color: #647386;
    font-size: 14px;
}

.por-que-doar,
.destino-doacao {
    padding: 80px 0;
}

.por-que-doar h2,
.destino-doacao h2 {
    font-size: 38px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0;
}

.por-que-doar .text-center p {
    max-width: 650px;
    margin: 0 auto;
    color: #647386;
}

.doacao-beneficio-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.doacao-beneficio-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.icon.azul { background: #0077e6; }
.icon.verde { background: #35b957; }
.icon.amarelo { background: #ffb800; }

.doacao-beneficio-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #061a35;
}

.doacao-beneficio-card p {
    color: #5f6f7f;
    font-size: 15px;
    line-height: 1.7;
}

.formas-doacao {
    padding: 30px 0;
}

.doacao-box {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border: 1px solid #e6edf5;
    border-radius: 24px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 35px;
    align-items: center;
}

.doacao-texto span {
    font-size: 12px;
    font-weight: 900;
    color: #005fd1;
}

.doacao-texto h2 {
    font-size: 34px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0 14px;
}

.doacao-texto p {
    color: #647386;
    line-height: 1.7;
}

.doacao-texto ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.doacao-texto li {
    font-weight: 800;
    color: #061a35;
}

.doacao-texto li i {
    color: #24b947;
    margin-right: 8px;
}

.dados-doacao {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.dados-doacao h3 {
    font-size: 24px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 20px;
}

.dado-item {
    background: #f7faff;
    border-radius: 14px;
    padding: 15px 18px;
    margin-bottom: 12px;
}

.dado-item span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: #005fd1;
    margin-bottom: 4px;
}

.dado-item strong {
    color: #061a35;
    font-size: 15px;
}

.btn-doacao {
    margin-top: 14px;
    background: #005fd1;
    color: #fff;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.destino-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.destino-card i {
    font-size: 34px;
    color: #005fd1;
    margin-bottom: 18px;
}

.destino-card h3 {
    font-size: 21px;
    font-weight: 900;
    color: #061a35;
}

.destino-card p {
    color: #647386;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.doacao-cta {
    padding: 20px 0 90px;
}

@media(max-width: 991px) {
    .doacao-hero h1 {
        font-size: 42px;
    }

    .doacao-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px) {
    .doacao-hero {
        padding: 55px 0;
    }

    .doacao-hero h1 {
        font-size: 36px;
    }

    .doacao-card-destaque,
    .doacao-box,
    .dados-doacao {
        padding: 26px;
    }
}



.doacao-givewp {
    padding: 80px 0;
    background: #f3f8ff;
}

.doacao-givewp h2 {
    font-size: 42px;
    font-weight: 900;
    color: #061a35;
    margin: 12px 0 18px;
    line-height: 1.15;
}

.doacao-givewp p {
    color: #647386;
    font-size: 17px;
    line-height: 1.7;
}

.doacao-lista {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

.doacao-lista li {
    font-weight: 800;
    color: #061a35;
}

.doacao-lista i {
    color: #24b947;
    margin-right: 8px;
}

.givewp-form-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.givewp-form-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.givewp-icon {
    width: 58px;
    height: 58px;
    background: #24b947;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.givewp-icon i {
    font-size: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.givewp-form-header h3 {
    font-size: 26px;
    font-weight: 900;
    color: #061a35;
    margin: 0 0 5px;
}

.givewp-form-header p {
    margin: 0;
    font-size: 15px;
}

/* GIVEWP - CAMPOS */
.givewp-form-box input[type="text"],
.givewp-form-box input[type="email"],
.givewp-form-box input[type="tel"],
.givewp-form-box input[type="number"],
.givewp-form-box select,
.givewp-form-box textarea,
.give-form input[type="text"],
.give-form input[type="email"],
.give-form input[type="tel"],
.give-form input[type="number"],
.give-form select,
.give-form textarea {
    width: 100%;
    border: 1px solid #dfe8f3 !important;
    border-radius: 14px !important;
    padding: 15px 16px !important;
    font-size: 15px !important;
    color: #061a35 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.givewp-form-box input:focus,
.givewp-form-box select:focus,
.givewp-form-box textarea:focus,
.give-form input:focus,
.give-form select:focus,
.give-form textarea:focus {
    border-color: #005fd1 !important;
    box-shadow: 0 0 0 4px rgba(0,95,209,.08) !important;
    outline: none !important;
}

/* GIVEWP - LABELS */
.givewp-form-box label,
.give-form label {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #061a35 !important;
    margin-bottom: 7px !important;
}

/* GIVEWP - VALORES / RADIOS */
.give-donation-levels-wrap,
.givewp-donation-levels {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px !important;
}

.give-donation-levels-wrap li {
    margin: 0 !important;
}

.give-donation-level-btn,
.give-donation-levels-wrap button,
.give-donation-levels-wrap label {
    width: 100% !important;
    background: #f7faff !important;
    border: 2px solid #e1ebf6 !important;
    border-radius: 16px !important;
    color: #061a35 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    padding: 18px 14px !important;
    text-align: center !important;
    transition: .25s !important;
}

.give-donation-level-btn:hover,
.give-donation-level-btn.give-default-level,
.give-donation-level-btn.give-btn-level-custom.give-default-level,
.give-donation-levels-wrap button:hover,
.give-donation-levels-wrap button.give-default-level {
    background: #005fd1 !important;
    border-color: #005fd1 !important;
    color: #fff !important;
}

/* RADIO VISUAL */
.givewp-form-box input[type="radio"],
.give-form input[type="radio"] {
    accent-color: #005fd1;
}

/* BOTÃO PRINCIPAL */
.give-submit,
.give-btn,
.givewp-form-box button[type="submit"],
.give-form button[type="submit"] {
    background: #005fd1 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 16px 28px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    width: 100% !important;
    transition: .25s !important;
}

.give-submit:hover,
.give-btn:hover,
.givewp-form-box button[type="submit"]:hover,
.give-form button[type="submit"]:hover {
    background: #004faf !important;
    color: #fff !important;
}

/* TÍTULOS INTERNOS DO GIVEWP */
.give-form-title,
.give-total-wrap,
.give-donation-amount,
.give-personal-info-section,
.give-payment-details-section {
    margin-bottom: 18px !important;
}

.give-total-wrap {
    background: #f7faff;
    border-radius: 16px;
    padding: 16px;
}

/* REMOVE ESPAÇOS E BORDAS PADRÃO */
.give-form-wrap,
.give-form {
    margin: 0 !important;
}

.give-form fieldset {
    border: none !important;
    padding: 0 !important;
}

/* RESPONSIVO */
@media(max-width: 991px) {
    .doacao-givewp h2 {
        font-size: 34px;
    }
}

@media(max-width: 575px) {
    .doacao-givewp {
        padding: 55px 0;
    }

    .givewp-form-box {
        padding: 26px;
    }

    .givewp-form-header {
        align-items: flex-start;
    }

    .give-donation-levels-wrap,
    .givewp-donation-levels {
        grid-template-columns: 1fr;
    }
}

/* ACESSAR */

.acessar-hero {
    background: #f3f8ff;
    padding: 80px 0 115px;
}

.acessar-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin: 20px 0;
}

.acessar-hero h1 span {
    color: #0077e6;
    display: block;
}

.acessar-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 650px;
    margin: 0 auto;
}

.acessar-area {
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
}

.acessar-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 26px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 16px 42px rgba(0,0,0,.06);
}

.cadastro-card {
    background: linear-gradient(180deg, #ffffff, #f8fcff);
}

.acessar-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.acessar-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 58px;
}

.acessar-icon.azul {
    background: #005fd1;
}

.acessar-icon.verde {
    background: #24b947;
}

.acessar-card h2 {
    font-size: 30px;
    font-weight: 900;
    color: #061a35;
    margin: 0 0 4px;
}

.acessar-card-header p {
    margin: 0;
    color: #647386;
}

.form-group {
    margin-bottom: 18px;
}

.acessar-card label {
    font-size: 14px;
    font-weight: 800;
    color: #061a35;
    margin-bottom: 7px;
}

.acessar-card .form-control {
    border: 1px solid #dfe8f3;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 15px;
    color: #061a35;
    box-shadow: none;
}

.acessar-card .form-control:focus {
    border-color: #005fd1;
    box-shadow: 0 0 0 4px rgba(0,95,209,.08);
}

.acessar-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 8px 0 22px;
    flex-wrap: wrap;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #647386;
    font-size: 14px;
    font-weight: 700;
}

.check-label input {
    accent-color: #005fd1;
}

.acessar-options a {
    color: #005fd1;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.termo-label {
    align-items: flex-start;
    margin: 4px 0 22px;
}

.btn-acessar {
    width: 100%;
    background: #005fd1;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s;
}

.btn-acessar:hover {
    background: #004faf;
}

.btn-verde {
    background: #24b947;
}

.btn-verde:hover {
    background: #1fa13f;
}

@media(max-width: 991px) {
    .acessar-hero h1 {
        font-size: 42px;
    }
}

@media(max-width: 575px) {
    .acessar-hero {
        padding: 55px 0 95px;
    }

    .acessar-hero h1 {
        font-size: 34px;
    }

    .acessar-card {
        padding: 26px;
    }

    .acessar-card-header {
        align-items: flex-start;
    }
}

.display-none {
    display: none !important;
}

/* DOACAO OBRIGAD */

.obrigado-doacao {
    background: #f3f8ff;
    padding: 90px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.obrigado-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 55px 42px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.obrigado-icon {
    width: 82px;
    height: 82px;
    background: #24b947;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 34px;
}

.obrigado-box h1 {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 900;
    color: #061a35;
    margin: 22px 0 18px;
}

.obrigado-box h1 span {
    color: #0077e6;
    display: block;
}

.obrigado-box > p {
    font-size: 18px;
    color: #516070;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.obrigado-card {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border: 1px solid #e6edf5;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    gap: 16px;
    text-align: left;
    margin: 30px 0;
}

.obrigado-card i {
    color: #24b947;
    font-size: 28px;
    margin-top: 4px;
}

.obrigado-card strong {
    color: #061a35;
    font-size: 18px;
    font-weight: 900;
}

.obrigado-card p {
    margin: 6px 0 0;
    color: #647386;
    line-height: 1.6;
}

.obrigado-botoes {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media(max-width: 575px) {
    .obrigado-doacao {
        padding: 60px 0;
    }

    .obrigado-box {
        padding: 36px 24px;
    }

    .obrigado-box h1 {
        font-size: 34px;
    }

    .obrigado-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* CANCELADO */

.doacao-cancelada {
    background: #f3f8ff;
    padding: 90px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.cancelada-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 55px 42px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.cancelada-icon {
    width: 82px;
    height: 82px;
    background: #ff4b55;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 34px;
}

.badge-vermelho {
    background: #ff4b55;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 14px;
    border-radius: 30px;
    display: inline-block;
}

.cancelada-box h1 {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 900;
    color: #061a35;
    margin: 22px 0 18px;
}

.cancelada-box h1 span {
    color: #ff4b55;
    display: block;
}

.cancelada-box > p {
    font-size: 18px;
    color: #516070;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cancelada-card {
    background: linear-gradient(120deg, #fff5f5, #f3f8ff);
    border: 1px solid #f2d4d7;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    gap: 16px;
    text-align: left;
    margin: 30px 0;
}

.cancelada-card i {
    color: #ff4b55;
    font-size: 28px;
    margin-top: 4px;
}

.cancelada-card strong {
    color: #061a35;
    font-size: 18px;
    font-weight: 900;
}

.cancelada-card p {
    margin: 6px 0 0;
    color: #647386;
    line-height: 1.6;
}

.cancelada-botoes {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media(max-width: 575px) {
    .doacao-cancelada {
        padding: 60px 0;
    }

    .cancelada-box {
        padding: 36px 24px;
    }

    .cancelada-box h1 {
        font-size: 34px;
    }

    .cancelada-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Noticias */

.noticias-hero {
    background: #f3f8ff;
    padding: 80px 0 115px;
}

.noticias-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    color: #061a35;
    margin: 20px 0;
}

.noticias-hero h1 span {
    color: #0077e6;
    display: block;
}

.noticias-hero p {
    font-size: 18px;
    color: #516070;
    max-width: 680px;
    margin: 0 auto;
}

.filtros-noticias {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.filtros-noticias-box {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

.input-busca-noticia {
    position: relative;
}

.input-busca-noticia i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #005fd1;
}

.input-busca-noticia input,
.filtros-noticias-box select {
    width: 100%;
    border: 1px solid #dfe8f3;
    border-radius: 14px;
    padding: 15px 18px;
    font-weight: 700;
    color: #061a35;
    background: #fff;
    outline: none;
}

.input-busca-noticia input {
    padding-left: 48px;
}

.input-busca-noticia input:focus,
.filtros-noticias-box select:focus {
    border-color: #005fd1;
    box-shadow: 0 0 0 4px rgba(0,95,209,.08);
}

.lista-noticias {
    padding: 70px 0 90px;
}

.noticia-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: block;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: .3s;
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.noticia-img {
    height: 215px;
    position: relative;
    overflow: hidden;
    background: #f3f8ff;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-img span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #005fd1;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 30px;
}

.noticia-body {
    padding: 28px;
}

.noticia-data {
    color: #647386;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.noticia-data i {
    color: #005fd1;
    margin-right: 6px;
}

.noticia-body h3 {
    font-size: 23px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 12px;
    line-height: 1.25;
}

.noticia-body p {
    color: #647386;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.btn-noticia {
    background: #005fd1;
    color: #fff;
    padding: 13px 21px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-noticia:hover {
    background: #004faf;
    color: #fff;
}

.sem-noticias {
    display: none;
    text-align: center;
    background: #f7faff;
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 45px 20px;
    margin-top: 30px;
}

.sem-noticias i {
    font-size: 38px;
    color: #005fd1;
    margin-bottom: 15px;
}

.sem-noticias h3 {
    font-size: 24px;
    font-weight: 900;
    color: #061a35;
}

.sem-noticias p {
    color: #647386;
    margin: 0;
}

.paginacao-noticias {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 45px;
}

.paginacao-noticias a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f3f8ff;
    color: #005fd1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
}

.paginacao-noticias a.ativo,
.paginacao-noticias a:hover {
    background: #005fd1;
    color: #fff;
}

@media(max-width: 991px) {
    .noticias-hero h1 {
        font-size: 42px;
    }

    .filtros-noticias-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px) {
    .noticias-hero {
        padding: 55px 0 95px;
    }

    .noticias-hero h1 {
        font-size: 36px;
    }

    .noticia-img {
        height: 190px;
    }
}


.noticia-aberta-hero {
    background: #f3f8ff;
    padding: 70px 0 90px;
}

.noticia-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 32px;
    color: #647386;
}

.noticia-breadcrumb a {
    color: #005fd1;
    font-weight: 800;
    text-decoration: none;
}

.noticia-breadcrumb strong {
    color: #061a35;
}

.noticia-hero-content {
    max-width: 850px;
}

.noticia-categoria {
    display: inline-block;
    background: #24b947;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.noticia-hero-content h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 20px;
}

.noticia-hero-content p {
    font-size: 19px;
    color: #516070;
    line-height: 1.7;
    max-width: 780px;
}

.noticia-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.noticia-meta div {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 30px;
    padding: 10px 15px;
    color: #061a35;
    font-size: 14px;
    font-weight: 800;
}

.noticia-meta i {
    color: #005fd1;
    margin-right: 7px;
}

.noticia-conteudo-area {
    padding: 70px 0;
}

.noticia-conteudo {
    background: #fff;
}

.imagem-destaque-noticia {
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 16px 42px rgba(0,0,0,.07);
}

.imagem-destaque-noticia img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.noticia-conteudo p {
    color: #516070;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.noticia-conteudo h2 {
    font-size: 32px;
    font-weight: 900;
    color: #061a35;
    margin: 38px 0 18px;
}

.noticia-conteudo blockquote {
    background: linear-gradient(120deg, #f3f8ff, #fffaf0);
    border-left: 5px solid #005fd1;
    border-radius: 18px;
    padding: 28px;
    color: #061a35;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    margin: 34px 0;
}

.noticia-destaque-box {
    background: #005fd1;
    color: #fff;
    border-radius: 22px;
    padding: 28px;
    display: flex;
    gap: 18px;
    margin: 34px 0;
}

.noticia-destaque-box i {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 56px;
}

.noticia-destaque-box h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 8px;
}

.noticia-destaque-box p {
    color: rgba(255,255,255,.88);
    margin: 0;
    line-height: 1.6;
}

.noticia-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #e7edf5;
}

.noticia-tags span {
    color: #061a35;
    font-weight: 900;
}

.noticia-tags a {
    background: #f3f8ff;
    color: #005fd1;
    border-radius: 30px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.noticia-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.sidebar-card h3 {
    font-size: 23px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 18px;
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-links a {
    width: 44px;
    height: 44px;
    background: #f3f8ff;
    color: #005fd1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.share-links a:hover {
    background: #005fd1;
    color: #fff;
}

a.noticia-recente {
    text-decoration: none;
}

a.noticia-recente:hover {
    color: var(--azul);
}

.noticia-recente {
    display: flex;
    gap: 14px;
    text-decoration: none;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eef2f6;
}

.noticia-recente:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.noticia-recente img {
    width: 82px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex: 0 0 82px;
}

.noticia-recente strong {
    display: block;
    color: #061a35;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 6px;
}

.noticia-recente span {
    color: #647386;
    font-size: 12px;
    font-weight: 700;
}

.sidebar-cta {
    background: #005fd1;
    color: #fff;
}

.sidebar-cta span {
    background: rgba(255,255,255,.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
}

.sidebar-cta h3 {
    color: #fff;
    margin: 16px 0 10px;
}

.sidebar-cta p {
    color: rgba(255,255,255,.88);
    line-height: 1.6;
}

.sidebar-cta a {
    background: #fff;
    color: #005fd1;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
}

.mais-noticias {
    padding: 30px 0 90px;
    background: #f8fbff;
}

.mais-noticias h2 {
    font-size: 38px;
    font-weight: 900;
    color: #061a35;
    margin-top: 12px;
}

/* Cards reaproveitados da listagem */
.noticia-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: block;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    transition: .3s;
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.noticia-img {
    height: 215px;
    position: relative;
    overflow: hidden;
    background: #f3f8ff;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-img span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #005fd1;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 30px;
}

.noticia-body {
    padding: 28px;
}

.noticia-body a {
    text-decoration: none;
}

.noticia-data {
    color: #647386;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.noticia-data i {
    color: #005fd1;
    margin-right: 6px;
}

.noticia-body h3 {
    font-size: 23px;
    font-weight: 900;
    color: #061a35;
    margin-bottom: 12px;
    line-height: 1.25;
}

.noticia-body p {
    color: #647386;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.btn-noticia {
    background: #005fd1;
    color: #fff;
    padding: 13px 21px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-noticia:hover {
    background: #004faf;
    color: #fff;
}

@media(max-width: 991px) {
    .noticia-hero-content h1 {
        font-size: 42px;
    }

    .noticia-sidebar {
        position: static;
    }
}

@media(max-width: 575px) {
    .noticia-aberta-hero {
        padding: 55px 0 70px;
    }

    .noticia-hero-content h1 {
        font-size: 34px;
    }

    .noticia-hero-content p {
        font-size: 17px;
    }

    .noticia-meta {
        gap: 10px;
    }

    .noticia-meta div {
        width: 100%;
    }

    .imagem-destaque-noticia img {
        height: 240px;
    }

    .noticia-conteudo h2 {
        font-size: 27px;
    }

    .noticia-conteudo blockquote {
        font-size: 18px;
        padding: 22px;
    }

    .noticia-destaque-box {
        flex-direction: column;
    }
}

.noticia-item {
    margin-bottom: 40px;
}