/* Remove estilos básicos do body */
/* Remove estilos básicos do body */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: "Poppins", sans-serif;
}

section {
    overflow: hidden;
}

/* Remove estilo de lista */
li,
ul,
ol {
    /* list-style: none; */
    margin: 0;
    padding: 0;
}

/* Remove decoração de link */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove estilização de botões e inputs */
button,
input,
textarea,
select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}


.nav-link {
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: border-bottom-color 0.3s ease-in-out;
}

.nav-link.active {
    transition: .5s;
    color: #213E5F !important;

}

.nav-link.active:hover {
    color: var(--cor-quarta) !important;
    border-bottom-color: transparent;
}

.nav-link:hover {
    border-bottom-color: var(--cor-quarta);
}


.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #ffdfe1;
}

.dropdown-menu.show {
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.redes-sociais {
    height: 190px;
    padding: 10px;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    right: 20px;
    bottom: 30px;
    z-index: 2000;
}

.redes-sociais img {
    width: 70px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.redes-sociais img:hover {
    transform: scale(1.3);
}

.btn-social {
    position: relative;
    display: block;
    font-family: "FontAwesome";
    margin: 15px auto;
    font-size: 1.3rem;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;

    &:hover,
    &:active,
    &:focus {
        color: #fff;
    }

    &:hover {
        animation: pulse 1.5s cubic-bezier(0.5, 0.5, 0, 1) infinite;
    }

    &.whatsapp {
        box-shadow: 0 0 0 0 #e7e7e7, 0 0 0 0 rgba(90, 153, 212, 0.7);
        background: #24cc63;

        &::after {
            content: "\f232 ";
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }

    &.facebook {
        box-shadow: 0 0 0 0 #e7e7e7, 0 0 0 0 rgba(0, 172, 238, 0.57);
        background: #1974ec;

        &::after {
            content: "\f09a";
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }

    &.instagram {
        box-shadow: 0 0 0 0 #e7e7e7, 0 0 0 0 rgba(221, 75, 57, 0.65);
        background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);

        &::after {
            content: "\f16d";
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
    }
}


:root {
    --cor-primeiro: #213e5f;
    --cor-segundo: #516489;
    --cor-terceiro: #fffb00;
    --cor-quarta: #e8333c;
    --cor-texto-claro: #ffffff;
    --cor-texto-escuro: #212529;
    --cor-sombra-suave: rgba(0, 0, 0, 0.2);
    --cor-overlay-preto: rgba(0, 0, 0, 0.5);
}


.bg-principal {
    background-color: var(--cor-primeiro);
}

.text-principal {
    color: var(--cor-primeiro);
    font-size: 2em;
    padding: 10px 0px;
    font-weight: bold;
}

.text-subtitulo {
    color: var(--cor-quarta);
    font-size: 1.3em;
    text-align: center;
    padding-bottom: 8px;
    font-weight: bold;
}

.links-header {
    font-size: 1rem;
}

.links-header:hover {
    color: var(--cor-quarta);
}


.botao {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
}

.botao.azul {
    background-color: #004085;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.botao.azul:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
    transform: translateY(-2px);
}

.botao.amarelo {
    background-color: #ffc107;
    color: #004085;
    border: 1px solid transparent;
}

.botao.amarelo:hover {
    background-color: #e0a800;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0a800;
    transform: translateY(-2px);
}

.card-footer {
    height: 250px;
}

.bg-imagem-escola {
    width: 100%;
    background-image: linear-gradient(#213e5fe0, #213e5ff8), url('../img/background-escola.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}


.logo-navbar {
    width: 300px;
    height: auto;
}




/* --- Novas Classes para Navbar Fixo e Animações --- */

/* Estilo inicial para a navbar */
.navbar-light {
    transition: all 0.5s ease-in-out;
    /* Transição para suavizar mudanças de estilo */
    position: relative;
    /* Garante que a navbar comece na posição normal */
    width: 100%;
    z-index: 2000;
    /* Garante que a navbar fique acima de outros elementos */
}

/* Estilo para a navbar quando está fixa */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra para destacar quando fixo */
    background-color: #ffffff;
    /* Fundo branco ou da cor do seu navbar */
    animation: fadeInDown 0.5s ease-out;
    /* Animação ao aparecer fixo */
}

/* Animações de Fade */
/* Fade out top para esconder */
@keyframes fadeOutTop {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Fade in bottom para aparecer */
@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

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

/* Fade in down para aparecer fixo */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

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

/* Classes para controlar as animações via jQuery */
.fade-out-top {
    animation: fadeOutTop 0.5s forwards;
}

.fade-in-Top {
    animation: fadeInTop 0.5s forwards;
}

/* Estilo para o offcanvas quando está visível (evitar que o scroll o esconda) */
.offcanvas.show {
    animation: none !important;
    /* Desabilita animação de scroll no offcanvas aberto */
}

/* Ajustes para quando a navbar estiver fixa, para o conteúdo não "pular" */
body.navbar-fixed-padding {
    padding-top: var(--navbar-height, 0px);
    /* Adiciona padding ao body igual à altura da navbar */
}



.card-footer {
    height: 250px;
}

.bg-imagem-escola {
    width: 100%;
    background-image: linear-gradient(#213e5fe0, #213e5ff8), url('../img/background-escola.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}


.logo-navbar {
    width: 300px;
    height: auto;
}


.text-justify {
    text-align: justify;
}

.section-title {
    color: #004085;
    font-weight: bold;
}

/* Estilos para o card customizado */
.section-cards .custom-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease-in-out;
}

.section-cards .custom-card:hover {
    transform: translateY(-8px);
}

.section-cards .card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
}

.section-cards .custom-card:hover .card-image-bg {
    transform: scale(1.05);
}

.section-cards .card-category-overlay {
    position: relative;
    z-index: 2;
    padding: 15px;
    color: white;
    font-weight: 600;
    text-align: center;
    background-color: rgba(0, 123, 255, 0.8);
}

.section-cards .card-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 3;
}

.section-cards .custom-card:hover .card-text-overlay {
    opacity: 1;
}

.section-cards .card-text-overlay h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-cards .card-text-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.section-cards .card-blue .card-category-overlay {
    background-color: rgba(0, 123, 255, 0.8);
}

.section-cards .card-green .card-category-overlay {
    background-color: rgba(40, 167, 69, 0.8);
}

.section-cards .card-orange .card-category-overlay {
    background-color: rgba(253, 126, 20, 0.8);
}

.section-cards .card-yellow .card-category-overlay {
    background-color: rgba(255, 193, 7, 0.8);
}

.section-cards .card-yellow .card-category-overlay {
    color: #004085;
}

.section-cards .quadro {
    border-radius: 10%;
}

.section-diferenciais .diferencial-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--cor-sombra-suave);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
    background-color: var(--cor-texto-claro);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-diferenciais .diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Imagem dentro do card */
.section-diferenciais .diferencial-card-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
    height: 100%;
}

.section-diferenciais .diferencial-card:hover .diferencial-card-img {
    transform: scale(1.05);
}

/* Overlay que aparece no hover */
.section-diferenciais .diferencial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #213e5fe0;
    color: var(--cor-texto-claro);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    border-radius: 12px;
    z-index: 2;
}

.section-diferenciais .diferencial-card:hover .diferencial-overlay {
    opacity: 1;
}

.section-diferenciais .diferencial-overlay-icon {
    font-size: 2.7rem;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.section-diferenciais .diferencial-overlay-title {
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-diferenciais .diferencial-overlay-text {
    font-size: 0.7rem;
}


.btn-item .active {
    background-color: #ffc107;
    color: #004085;
    border: 1px solid transparent;
}

.btn-item .active:hover {
    background-color: #e0a800;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0a800;
    transform: translateY(-2px);
}

.section-atividades .bg-imagem-escola {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://placehold.co/1920x1080/2c3e50/ecf0f1?text=Fundo+Escolar');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

.section-atividades .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-atividades .text-subtitulo {
    color: #adb5bd;
    /* Um cinza claro para o subtitulo */
}

/* Estilos para os botões das abas (nav-pills) */
.section-atividades .nav-pills .nav-item .nav-link,
.section-atividades .nav-pills .nav-item button {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.section-atividades .nav-pills .nav-item .nav-link.active,
.section-atividades .nav-pills .nav-item button.active {
    background-color: #0d6efd;
    /* Cor azul do Bootstrap */
    border-color: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.section-atividades .nav-pills .nav-item button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Adiciona um efeito de fade suave entre as abas */
.section-atividades .tab-pane {
    transition: opacity 0.4s ease-in-out;
}


.carousel-section {
    padding: 5rem 0;
}

.section-representantes .carousel-section {
    padding: 5rem 0;
}

/* --- Estilo do Item do Carrossel (Card) --- */
.section-representantes .card-item {
    position: relative;
    /* Necessário para o posicionamento do overlay */
    overflow: hidden;
    border-radius: 15px 15px;
    margin: 0 10px;
    /* Espaçamento entre os cards */
    cursor: grabbing;
    border: none;
    background: transparent;
}

.section-representantes .card-item img {
    width: 100%;
	/*height: 400px;*/
    object-fit: cover;
    display: block;
    border-radius: 15px 15px 0px 0px;
    transition: transform 0.4s ease;
}

/* --- Efeito de Hover na Imagem --- */
.section-representantes .card-item:hover img {
    transform: scale(1.05);
    /* Efeito de zoom na imagem */
}

.btn-carousel-prev {
    background-color: var(--cor-quarta);
    padding: 15px 16px 8px 14px;
    border-radius: 50%;
}

.btn-carousel-next {
    background-color: var(--cor-quarta);
    padding: 15px 15px 8px 15px;
    border-radius: 50%;
}

/* --- Overlay com o Texto (aparece no hover) --- */
.section-representantes .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Fundo escuro semi-transparente */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 15px;

    /* Animação de Fade In */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.section-representantes .card-item:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.section-representantes .card-overlay h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-representantes .card-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Estilização das setas do Slick Carousel --- */
.section-representantes .slick-prev,
.section-representantes .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.section-representantes .slick-prev:before,
.section-representantes .slick-next:before {
    font-size: 50px;
    color: royalblue;
}

.section-representantes .slick-prev {
    left: -60px;
}

.section-representantes .slick-next {
    right: -60px;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .section-representantes .slick-prev {
        left: -25px;
    }

    .section-representantes .slick-next {
        right: -25px;
    }
}


.testimonials-section {
    padding: 80px 0;
    background-image: linear-gradient(#213e5f00, #213e5f), url('../img/background-escola-depoimentos.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.testimonial-carousel .slick-slide {
    padding: 0 15px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    object-fit: cover;
    border: 4px solid #e9ecef;
}

.testimonial-card .name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: var(--cor-primeiro);
    margin-bottom: 15px;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card .stars i {
    margin: 0 2px;
}

.testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

/* Estilização das setas e pontos do Slick */
.slick-dots li button:before {
    font-size: 12px;
    color: #0d6efd;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0d6efd;
}

.testimonials-section h2 {
    font-weight: 700;
}

.card-form {
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
    min-width: 200px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* Ajustes para o offcanvas móvel */
    .offcanvas {
        transition: transform 0.3s ease-in-out;
    }

    /* Estilo para esconder o offcanvas para cima */
    .offcanvas-fade-out-top {
        animation: fadeOutTop 0.5s forwards;
    }

    /* Estilo para aparecer o offcanvas de baixo */
    .offcanvas-fade-in-Top {
        animation: fadeInTop 0.5s forwards;
    }

    .carousel-item .col-md-4 {
        flex: 0 0 50%;
        /* Faz com que cada card ocupe 50% da largura (2 por linha) */
        max-width: 50%;
    }
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }

    .logo-navbar {
        width: 220px;
    }

    .carousel-item .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .carousel-item .row {
        flex-direction: column;
    }

    .tab-content.active {
        flex-direction: column;
    }
}

.pt-6 {
    padding-top: 6em;
}

.pb-6 {
    padding-bottom: 6em;
}

/* .swiper {
  width: 600px;
  height: 300px;
} */


.titulo-interno {
    color: #FFC107;
    font-size: 3.5em;
    font-weight: bolder;
}

.bg-interno {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(305deg, #03306c, #054a94, #0665bf, #0682eb)
}



.list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.list-row {
    display: flex;
    margin-bottom: 0;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.list-row:nth-child(odd) {
    background-color: #f8f9fa;
    /* Cor clara para linhas ímpares */
}

.list-row:nth-child(even) {
    background-color: #e9ecef;
    /* Cor escura para linhas pares */
}

.list-title {
    width: 30%;
    min-width: 250px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #0d6efd;
    background-color: inherit;
    border: none;
    display: flex;
    align-items: flex-start;
}

.list-content {
    width: 70%;
    padding: 1rem 1.25rem;
    background-color: inherit;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.list-content ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.list-content li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .list-row {
        flex-direction: column;
    }

    .list-title,
    .list-content {
        width: 100%;
    }

    .list-content {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}


.bimestre-container {
    max-width: 800px;
    margin: 0 auto;
}

.bimestre-row {
    display: flex;
    width: 100%;
}

.bimestre-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    background-color: #f8f9fa;
    font-weight: 500;
}

.bimestre-row:first-child .bimestre-item {
    background-color: #0d6efd;
    color: white;
    border-color: #0a58ca;
}

.bimestre-row:last-child .bimestre-item {
    background-color: #e9ecef;
    color: #495057;
}

.bimestre-row:first-child .bimestre-item:not(:last-child) {
    border-right: 1px solid #0a58ca;
}

.bimestre-row:last-child .bimestre-item:not(:last-child) {
    border-right: 1px solid #dee2e6;
}

.bimestre-item:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.bimestre-item:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

@media (max-width: 576px) {
    .bimestre-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}


.sec-center {
    position: relative;
    max-width: 100%;
    text-align: center;
    z-index: 200;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.dropdown:checked+label,
.dropdown:not(:checked)+label {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    height: 50px;
    transition: all 200ms linear;
    border-radius: 4px;
    width: 220px;
    letter-spacing: 1px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    text-align: center;
    border: #fdd703 solid 2px;
    background-color: #FFC107;
    cursor: pointer;
    color: #102770;
    box-shadow: 0 12px 35px 0 rgba(255, 235, 167, .15);
}

.dark-light:checked~.sec-center .for-dropdown {
    background-color: #102770;
    color: #FFC107;
    box-shadow: 0 12px 35px 0 rgba(16, 39, 112, .25);
}

.dropdown:checked+label:before,
.dropdown:not(:checked)+label:before {
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: auto;
    pointer-events: none;
}

.dropdown:checked+label:before {
    pointer-events: auto;
}

.dropdown:not(:checked)+label .uil {
    font-size: 24px;
    margin-left: 10px;
    transition: transform 200ms linear;
}

.dropdown:checked+label .uil {
    transform: rotate(180deg);
    font-size: 24px;
    margin-left: 10px;
    transition: transform 200ms linear;
}

.section-dropdown {
    position: absolute;
    padding: 5px;
    background-color: #02319B;
    top: 70px;
    left: 99px;
    width: 220px;
    border-radius: 4px;
    display: block;
    box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.4);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 200ms linear;
}

.dropdown:checked~.section-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.section-dropdown:before {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    content: '';
    display: block;
    z-index: 1;
}

.section-dropdown:after {
    position: absolute;
    top: -7px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #02319B;
    content: '';
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.section-dropdown a {
    position: relative;
    color: #fff;
    transition: all 200ms linear;
    font-weight: 500;
    font-size: 15px;
    border-radius: 2px;
    padding: 5px 0;
    padding-left: 20px;
    padding-right: 15px;
    margin: 2px 0;
    text-align: left;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    -ms-flex-pack: distribute;
}

.section-dropdown a:hover {
    color: #102770;
    background-color: #FFC107;
}

.section-dropdown a .uil {
    font-size: 22px;
}

.dropdown-sub:checked+label,
.dropdown-sub:not(:checked)+label {
    position: relative;
    color: #fff;
    transition: all 200ms linear;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 2px;
    padding: 5px 0;
    padding-left: 20px;
    padding-right: 15px;
    text-align: left;
    text-decoration: none;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    -ms-flex-pack: distribute;
    cursor: pointer;
}

.dropdown-sub:checked+label .uil,
.dropdown-sub:not(:checked)+label .uil {
    font-size: 22px;
}

.dropdown-sub:not(:checked)+label .uil {
    transition: transform 200ms linear;
}

.dropdown-sub:checked+label .uil {
    transform: rotate(135deg);
    transition: transform 200ms linear;
}

.dropdown-sub:checked+label:hover,
.dropdown-sub:not(:checked)+label:hover {
    color: #102770;
    background-color: #FFC107;
}

.section-dropdown-sub {
    position: relative;
    display: block;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    max-height: 0;
    padding-left: 10px;
    padding-right: 3px;
    overflow: hidden;
    transition: all 200ms linear;
}

.dropdown-sub:checked~.section-dropdown-sub {
    pointer-events: auto;
    opacity: 1;
    max-height: 999px;
}

.section-dropdown-sub a {
    font-size: 14px;
}

.section-dropdown-sub a .uil {
    font-size: 20px;
}

@media screen and (max-width: 1399px) {
    .section-dropdown {
        left: 0;
    }
}


/*=============================================================================================================================================================================================
FELIPE
=============================================================================================================================================================================================*/

.card-item{
	width:300px !important;
	/*width:30% !important;*/	
	text-align:center;
	align:center;
}

.card-item h3{
	font-size:14px !important;	
}

.card-item h5{
	font-size:12px !important;	
}

.card-overlay p{
	font-size:12px !important;	
}


.image-carousel{
	display: flex; justify-content: center; align-items: center;
}

.felipe .card-item{
	width:100% !important;
}

.felipe .card-item p{
	font-size:16px !important;	
}



.card-image-bg {
  /*width: 300px; /* Ajuste para o seu tamanho */
  /*height: 200px; /* Ajuste para o seu tamanho */
  /*background-size: cover; /* Garante que a imagem preencha o container */
  
  /* O primeiro valor é horizontal (center), o segundo é vertical (ex: 20px) */
  background-position: center -35px !important;
  
  background-repeat: no-repeat;
}

html {
  scroll-behavior: smooth;
}

#contato {
  scroll-margin-top: 360px !important; 
}

.home-page {
}

.assembleia{
	width:33%;
	border-radius:8px;
	border:2px solid lightgrey;
	
	/* Controla o tempo e a suavidade da animação */
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  
	/* Evita que a imagem fique borrada durante o movimento */
	will-change: transform; 
}

.assembleia:hover{
  transform: scale(1.04); 
}

p a{
	color:orange;
	text-decoration:underline;
	
}