:root {
    --primary-green: #006100;
    --accent-yellow: #FFCC25;
    --accent-yellow-md: #E2BD07;
    --text-color: #666666;
    --white: #ffffff;
    --background-site: #E4E5F2;
}

/*************** COMPONENTES ***************/
.btnSaibaMais {
    background: linear-gradient(to right, #FFF476, #FFC91F);
    color: var(--primary-green) !important;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 20px 20px 20px 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

/*******************************************/

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background-site);
}

.site-header {
    background: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.header-content {
    background: var(--white);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-content .main-navigation ul {
    display: flex;
    align-items: center;
}

.header-content .main-navigation ul li {
    list-style-type: none;
}

/* Menu Navigation */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 17px;
    transition: opacity 0.3s;
    padding: 10px;
}

.nav-list a:hover {
    color: var(--accent-yellow-md);
}

.nav-list .current-menu-item a {
    color: var(--accent-yellow-md);
}

/* Grupo Social e WhatsApp */
.social-whatsapp-group {
    background: var(--primary-green);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 13px;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--primary-green);
    background: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s;
}

.social-icons a:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    transition: all 0.5s;
}

.btn-whatsapp {
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
}

.btn-whatsapp:hover {
    color: var(--primary-green);
    background: var(--white);
    transition: all 0.5s;
}

/* Botão Acesso Restrito */
.btn-restricted {
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 12px 25px;
    border-radius: 20px 20px 20px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 15px;
    transition: all 0.5s;
}

.btn-restricted:hover {
    color: var(--accent-yellow);
    background: var(--primary-green);
    transition: all 0.5s;
}

.header-actions {
    display: flex;
    align-items: center;
}

/**************** HEADER MOBILE *************************/
.mobile-menu-panel {
    display: none;
}

.hamburger-btn {
    display: none;
}

@media (max-width: 991px) {

    /* Esconde nav e actions do desktop */
    .main-navigation,
    .header-actions {
        display: none;
    }

    /* Botão hambúrguer */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .hamburger-btn:hover {
        background: #f0f0f0;
    }

    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--primary-green);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Overlay escuro */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Painel lateral */
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100%;
        background: var(--white);
        z-index: 1010;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        box-shadow: none;
    }

    .mobile-menu-panel.open {
        transform: translateX(0);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    }

    .menu-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-panel-header .logo img {
        height: 40px;
    }

    .close-btn {
        background: #f5f5f5;
        border: none;
        cursor: pointer;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--primary-green);
        transition: background 0.2s;
    }

    .close-btn:hover {
        background: #e8e8e8;
    }

    /* Nav dentro do painel */
    .mobile-menu-panel .nav-list {
        flex-direction: column;
        padding: 12px 0;
        flex: 1;
    }

    .mobile-menu-panel .nav-list li a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
        border-left: 3px solid transparent;
        border-radius: 0;
    }

    .mobile-menu-panel .nav-list li a:hover,
    .mobile-menu-panel .nav-list .current-menu-item a {
        border-left-color: var(--accent-yellow-md);
        background: #f9fafb;
    }

    /* Footer do painel */
    .menu-panel-footer {
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .social-whatsapp-group {
        width: 100%;
        justify-content: space-between;
    }

    .btn-restricted {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        border-radius: 20px 20px 20px 7px;
    }
}

/**************** HERO ***********************/
.hero {
    width: 100%;
    height: auto;
    background: url(../images/heroBg.webp) repeat-x top;
    padding: 170px 0 0 0;
    margin: -130px 0 0 0;
}

/**************** SLIDER HOME ***************/
/* Espaçamento das bolinhas */
.owl-controls {
    margin: -210px 0 80px 0;
    padding-bottom: 50px;
    position: relative;
    z-index: 100;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
}

/* Estilo da bolinha padrão */
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--white);
    /* Cor da bolinha inativa */
    display: block;
    margin: 5px 3px;
    border-radius: 30px;
    transition: all 0.5s;
}

/* Estilo da bolinha ativa (quando o slide está nela) */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--accent-yellow);
    transition: all 0.5s;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 40px;
    height: 12px;
    transition: all 0.5s;
}

.slider-home-principal {
    color: var(--white);
}

.slider-home-principal h2 {
    font-family: "Fjalla One", sans-serif;
    font-size: 50px;
    font-weight: 500;
    margin: -160px 0 0 0;
}

.slider-home-principal h2 b {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #FFF476, #FFC91F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    text-transform: uppercase;
    font-size: 76px;
    font-weight: 600;
}

.slider-home-principal .btnSlider {
    background: linear-gradient(to right, #FFF476, #FFC91F);
    color: var(--primary-green) !important;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 20px 20px 20px 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.slider-home-principal p {
    font-size: 20px;
}

.slider-home-principal .btnSlider:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    color: var(--primary-green) !important;
}


/************ PRINCIPIOS HOME ******************/

.principiosDoColegioAraguaia {
    padding: 150px 0 60px 0;
    display: flex;
}

.principiosDoColegioAraguaia h2 {
    color: var(--text-color);
    font-family: "Fjalla One", sans-serif;
    font-size: 32px;
    padding: 0 0 0 50px;
    margin: 60px 0 0 0;
}

.principiosDoColegioAraguaia h2 b {
    color: var(--primary-green);
    font-size: 54px;
    font-weight: 500;

}

.principiosDoColegioAraguaia .decor {
    margin: -80px 0 0 -30px;
}

.slider-principios .owl-controls {
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
}



.slider-principios .owl-dots .owl-dot .active span {
    background: var(--accent-yellow) !important;
}

.slider-principios .owl-stage {
    display: flex;
}

.slider-principios .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.slider-principios .card-principio {
    width: 100%;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 40px;
    border: 1px solid #eee;
}

.slider-principios .card-principio .card-pontilhado {
    border: dashed 2px var(--accent-yellow);
    border-radius: 30px;
    padding: 20px;
}

.slider-principios .card-principio .card-pontilhado h3 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 28px;
}

.slider-principios .card-principio .card-pontilhado h3 strong {
    color: var(--primary-green);
    background: var(--accent-yellow);
    font-size: 42px;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 55px;
    float: left;
    border-radius: 50px;
    margin: 0 10px 0 0;
}

.slider-principios .card-principio .card-pontilhado p {
    color: var(--text-color);
}

.slider-principios .card-principio .card-pontilhado p strong {
    color: var(--primary-green);
}


/************* O COLEGIO HOME ***************/
.oColegioHome {
    background: var(--white);
    padding: 60px;
    border-radius: 80px;
}

.oColegioHome h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 50px;
    margin-bottom: 25px;
}

.oColegioHome h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin: 0 0 25px 0;
}

.oColegioHome p {
    color: var(--text-color);
    line-height: 160%;
}


/**************** ÁREAS DE ENSINO *****************/
.nossasAreasDeEnsino {
    padding: 140px 0 0 0;
}

.nossasAreasDeEnsino .imgColegio {
    margin: 90px 0 0 -70px;
}

.nossasAreasDeEnsino h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--text-color);
    font-size: 35px;
    margin: 0 0 40px 0;
}

.nossasAreasDeEnsino h2 b {
    color: var(--primary-green);
    font-size: 53px;
    font-weight: 500;
}


.nossasAreasDeEnsino .card-area-ensino {
    width: 100%;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 40px;
    border: 1px solid #eee;
}

.nossasAreasDeEnsino .card-area-ensino .card-pontilhado {
    border: dashed 2px var(--accent-yellow);
    border-radius: 30px;
    padding: 20px;
    height: 355px;
}

.nossasAreasDeEnsino .card-area-ensino .card-pontilhado img {
    width: 100px;
    height: auto;
}

.nossasAreasDeEnsino .card-area-ensino h3 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 25px;
}

.nossasAreasDeEnsino .card-area-ensino p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 120%;
}

.nossasAreasDeEnsino .card-area-ensino .card-pontilhado a {
    background: linear-gradient(to right, #FFF476, #FFC91F);
    color: var(--primary-green) !important;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 20px 20px 20px 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.nossasAreasDeEnsino .owl-controls {
    margin: 10px 0 0 0px;
    padding: 0;
    display: flex;
    justify-content: center;
}


/**** NOSSA ESTRUTURA HOME *****/
.nossaEstruturaHome {
    width: 90%;
    background: var(--accent-yellow);
    margin: 0 auto;
    border-radius: 60px;
    padding: 260px 90px 60px 90px;
    margin-top: -200px;
}

.nossaEstruturaHome h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 25px;
    text-align: center;
}


.nossaEstruturaHome h2 b {
    color: var(--primary-green);
    font-size: 53px;
    font-weight: 500;
}

.nossaEstruturaHome .meus-campos-repetidores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nossaEstruturaHome .meus-campos-repetidores>* {
    flex: 1 1 calc(10% - 16px);
    min-width: 0;
}

.nossaEstruturaHome .meus-campos-repetidores img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.nossaEstruturaHome .meus-campos-repetidores p {
    color: var(--primary-green);
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin: 20px 0 0 0;
    font-weight: 700;
    padding: 0 20px;
    line-height: 21px;
}

.nossasAreasDeEnsino .owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-green) !important;
}


.ultimas-noticias-home {
    padding: 110px 0 160px 0;
}

.titulo-secao {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 25px;
    text-align: center;
}

.titulo-secao strong {
    color: var(--primary-green);
    font-size: 53px;
    font-weight: 500;
}

/* Card */
.card-noticia {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}


/* Imagem */
.card-noticia__imagem {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-noticia__imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.card-noticia:hover .card-noticia__imagem img {
    transform: scale(1.04);
}

/* Data */
.card-noticia__data {
    font-size: 13px;
    color: #888;
}

/* Título */
.card-noticia__titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.4;
}

.card-noticia__titulo a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.2s;
    font-size: 14px;
}

.card-noticia__titulo a:hover {
    color: var(--primary-green);
}

/* CTA do card */
.card-noticia__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: gap 0.2s;
}

.card-noticia__cta:hover {
    gap: 10px !important;
    color: var(--accent-yellow)
}

/* Botão ver todas */
.btn-ver-todas {
    background: linear-gradient(to right, #FFF476, #FFC91F);
    color: var(--primary-green) !important;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 20px 20px 20px 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-ver-todas:hover {
    transform: scale(1.03);
    color: var(--primary-green);
}


/************ FOOTER ***************/
.site-footer {
    background: var(--primary-green);
    color: var(--white);
}

/* Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Ícones sociais */
.footer-social__icon {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social__icon:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Botão Whatsapp */
.footer-whatsapp {
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 7px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.footer-whatsapp:hover {
    background: var(--accent-yellow-md);
    color: var(--primary-green);
}

/* Acesso restrito */
.footer-acesso-restrito {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 10px 20px;
    border-radius: 20px 20px 20px 7px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-acesso-restrito:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

/* Títulos dos menus */
.footer-menu__titulo {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Links dos menus */
.footer-menu__lista li {
    margin-bottom: 10px;
}

.footer-menu__lista li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-menu__lista li a:hover {
    color: var(--accent-yellow);
}

/* Contato */
.footer-contato__item {
    color: var(--white);
    font-size: 15px;
}

.footer-contato__item address {
    color: var(--white);
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contato__item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}

.footer-contato__item a:hover {
    color: var(--accent-yellow);
}

.footer-contato__icone {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Copyright */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

/******* MOBILE **********/
@media (max-width: 991px) {
    .owl-controls {
        margin: -100px 0 0px 0;
        z-index: 100;
        display: flex;
        justify-content: end;
    }

    .slider-home-principal h2 {
        padding: 40px 10px 20px 10px;
        display: grid;
        margin: -0px 0 0 0;
    }

    .principiosDoColegioAraguaia h2 b {
        font-size: 48px;
    }

    .principiosDoColegioAraguaia {
        padding: 70px 0 60px 0;
        display: flex;
    }

    .slider-principios .card-principio .card-pontilhado {
        height: 280px;
    }

    .principiosDoColegioAraguaia .decor {
        margin: -90px 0 20px 0px;
    }

    .oColegioHome {
        padding: 30px;
        border-radius: 50px;
    }

    .oColegioHome img {
        width: 100%;
        height: auto;
        margin: 0 0 30px 0;
    }

    .nossasAreasDeEnsino .imgColegio {
        margin: 0 0 0 5%;
        width: 90%;
        height: auto;
    }

    .nossasAreasDeEnsino h2 {
        font-family: "Fjalla One", sans-serif;
        color: var(--text-color);
        font-size: 35px;
        margin: 30px 0 40px 0;
        text-align: center;
    }

    .nossaEstruturaHome {
        width: 100%;
        background: var(--accent-yellow);
        margin: -170px 0 0 0;
        padding: 215px 45px 45px 45px;
    }

    .nossaEstruturaHome .meus-campos-repetidores>* {
        flex: 1 1 calc(50% - 16px);
        min-width: 0;
    }
}




/****** O COLEGIO *********/
.heroSubpages {
    width: 100%;
    background: url(../images/bgHeroSubpages.webp) repeat-x top;
    padding: 150px 0 0 0;
    margin: -130px 0 0 0;
}

.heroSubpages .breadCrumbs {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.heroSubpages .breadCrumbs p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.heroSubpages h1 {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #FFF476, #FFC91F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    text-transform: uppercase;
    font-size: 76px;
    font-weight: 600;
    font-family: "Fjalla One", sans-serif;
    margin: 110px 0 0 0;
}

.heroSubpages p {
    font-size: 20px;
    color: #fff;
}

.heroSubpages .barHeroSubpages {
    background: var(--accent-yellow);
    height: 65px;
    margin: -220px 0 170px 0;
}

.heroSubpages .barHeroSubpages .boxDwIcon {
    width: 165px;
    height: 92px;
    background: url(../images/bgCurv.svg) no-repeat top;
    margin: 16px 0 0 110px;
    float: left;
}

.heroSubpages .barHeroSubpages .boxDwIcon img {
    margin: 21px 0 0 54px;
}

.contentOColegio {
    padding: 30px 0 140px 0;
}

.contentOColegio p {
    color: var(--text-color);
    text-align: justify;
    font-size: 17px;
    line-height: 150%;
}


.oColgeioDatas {
    background: var(--accent-yellow);
    padding: 50px 0 60px 0;
}


.oColgeioDatas .datas {
    padding: 0 100px;
}

.oColgeioDatas .circuloDatas .circulo {
    background: var(--white);
    width: 245px;
    height: 245px;
    border-radius: 100%;
    text-align: center;
    font-family: "Fjalla One", sans-serif;
    display: grid;
    align-content: center;
    justify-content: center;
    border: solid 20px var(--accent-yellow);
    margin: -120px 0 30px 0;
}

.oColgeioDatas .circuloDatas .circulo .circuloPontilhado {
    border: dashed 2px var(--accent-yellow);
    width: 180px;
    height: 180px;
    border-radius: 100%;
    display: block;
    align-content: center;
}

.oColgeioDatas .circuloDatas .circulo h3 {
    font-size: 20px;
    color: var(--primary-green);
}

.oColgeioDatas .circuloDatas .circulo span {
    font-size: 60px;
}

.oColgeioDatas .content p {
    color: var(--primary-green);
    padding: 0 30px;
}

.oColgeioDatas .content h4 {
    margin: 0;
    color: #006100;
    padding: 20px 30px;
    font-size: 20px;
}

/***************************/
.dwBar {
    width: 100%;
    height: 40px;
    background: url(../images/bgCurv.svg) no-repeat bottom;
    margin: 0 0 30px 0;
    text-align: center;
}

.dwBar img {
    margin: -25px 0 0 -4px;
}

.missaVisaoValores {
    padding: 70px 0;
}

.missaVisaoValores .row {
    align-items: stretch;
}

.missaVisaoValores .card {
    padding: 15px;
    border-radius: 42px;
    height: 100%;
}

.missaVisaoValores .card .pontilhado {
    padding: 25px;
    border: dashed 2px var(--accent-yellow);
    border-radius: 32px;
    height: 100%;
}

.missaVisaoValores .card h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 34px;
    margin: 20px 0 20px 0;
}

.missaVisaoValores .card p {
    color: var(--text-color);
    font-size: 17px;
}

.missaVisaoValores .card ul {
    margin: 0;
    padding: 0 0 0 15px;
}

.missaVisaoValores .card ul li {
    color: var(--text-color);
    font-size: 17px;
    list-style-type: "▶";
    margin: 0 5px 10px 0;
}

.boxEstruturaAbas .estrutura-header {
    padding: 50px 0;
}

.boxEstruturaAbas .estrutura-header h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 50px;
}

.boxEstruturaAbas .estrutura-header p {
    color: var(--text-color);
}


/* ---------- Painéis ---------- */
.estrutura-painel {
    display: none;
}

.estrutura-painel.ativo {
    display: block;
    animation: fadeInUp .35s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(0);
    }

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

.estrutura-painel-inner {
    background: var(--primary-green);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 180px 40px 40px 40px;
    color: var(--white);
    border-radius: 30px;
}

.estrutura-painel-descricao {
    margin-bottom: 32px;
}

.estrutura-painel-descricao p {
    font-size: .97rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    max-width: 720px;
    margin: 0;
}



/* ---------- Galeria ---------- */
.estrutura-nav {
    display: flex;
    justify-content: center;
    margin: 0 0 -120px 0;
    position: relative;
    z-index: 40;
}

.estrutura-nav .estrutura-nav-item {
    border: none;
    display: grid;
    justify-content: center;
    align-items: center;
    background: none;
}

.estrutura-nav .estrutura-nav-item img {
    margin: 0 auto;
}

.estrutura-nav .ativo img {
    border: solid 10px #006100;
    border-radius: 100%;
    width: 150px;
    height: 150px;
}

.estrutura-nav .estrutura-nav-item span {
    color: var(--white);
    text-transform: uppercase;
    padding: 11px 12px;
    width: 150px;
    line-height: 18px;
}

.estrutura-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 12px;
}

.estrutura-galeria-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.estrutura-galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    border-radius: 20px;
}

.estrutura-galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 97, 0, .55) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: 20px;
}

.estrutura-galeria-item:hover img {
    transform: scale(1.06);
    border-radius: 20px;
}

.estrutura-galeria-item:hover::after {
    opacity: 1;
    border-radius: 20px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/**************TURMAS*************/
.heroTurmas {
    width: 100%;
    background: url(../images/bgHeroTurmas.webp) repeat-x top;
    padding: 150px 0 145px 0;
    margin: -120px 0 0 0;
}

.heroTurmas .breadCrumbs {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.heroTurmas .breadCrumbs p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.heroTurmas h1 {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #FFF476, #FFC91F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    text-transform: uppercase;
    font-size: 76px;
    font-weight: 600;
    font-family: "Fjalla One", sans-serif;
    margin: 70px 0 0 0;
}

.menuFixoTurmas {
    width: 100%;
    height: 83px;
    background: var(--accent-yellow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.menuFixoTurmas ul,
.menuFixoTurmas ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menuFixoTurmas ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 29px 0;
}

.menuFixoTurmas ul li a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
}


.conteudoTurmas .boxAreasDeEnsino {
    padding: 140px 0;
}

.conteudoTurmas .boxAreasDeEnsino h2 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
    font-size: 50;
}

.conteudoTurmas .boxAreasDeEnsino p {
    color: var(--text-color);
}

.conteudoTurmas .boxAreasDeEnsino h5 {
    font-family: "Fjalla One", sans-serif;
    color: var(--primary-green);
}

.conteudoTurmas .boxAreasDeEnsino .boxHorarios {
    background: var(--accent-yellow);
    width: fit-content;
    color: var(--primary-green);
    border-radius: 15px;
    padding: 5px;
    width: 470px;
}



@media (max-width: 991.98px) {
    .heroSubpages .attachment-post-thumbnail {
        width: 100%;
        height: auto;
    }

    .oColgeioDatas .datas {
        padding: 0;
    }

    .oColgeioDatas .content p {
        margin: 0 0 140px 0;
    }

    .oColgeioDatas .content h4 {
        margin: 0;
        color: #006100;
        padding: 20px 30px;
    }

    .estrutura-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-content: center;
        margin: 0 0 -120px 0;
        position: relative;
        z-index: 40;
        background: var(--primary-green);
        padding: 30px;
        border-radius: 30px 30px 0 0;
    }

    .estrutura-nav .ativo img {
        border: solid 10px #005200;
    }

    .conteudoTurmas .boxAreasDeEnsino .boxHorarios {
        width: 100%;
        margin-bottom: 25px;
    }

    .menuFixoTurmas {
        width: 100%;
        height: auto;
        background: var(--accent-yellow);
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .menuFixoTurmas ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }

}



/*********** ULTIMAS NOTICIAS ***************/
/* ── Post Item ── */
.col-md-8 .row.mb-4 .col-4 img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px !important;
}

.col-md-8 .row.mb-4 {
    padding-bottom: 16px;
}

/* Badge categoria */
.col-md-8 .badge {
    background: var(--primary-green) !important;
    color: var(--white) !important;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Excerpt */
.col-md-8 .col-8 a.text-decoration-none p {
    font-size: 19px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Data */
.col-md-8 .col-8 small {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 500;
}

/* ── Paginação ── */

.page-numbers li {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    background: var(--white);
    text-decoration: none;
}

.page-numbers li a {
    text-decoration: none;
    color: #005200;
}

.page-numbers.current {
    background: var(--primary-green);
    color: var(--white) !important;
    border-color: var(--primary-green);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* ── Sidebar Categorias ── */
.col-md-4 h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.col-md-4 .list-unstyled li a {
    background: var(--white);
    border-radius: 8px !important;
    padding: 9px 14px !important;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: none !important;
}

/* ── Sidebar Destaques ── */
.col-md-4 .row.mb-3 .col-4 img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.col-md-4 .row.mb-3 .col-8 a small {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.col-md-4 .row.mb-3 .col-8>small {
    font-size: 11px;
    color: var(--primary-green);
}


/* Imagem destacada */
.capaPost{
    margin: -110px 0 0 0;
}

.img-fluid {
    border-radius: 20px !important;
}

.post-single .attachment-full {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

/* Badge categoria */
.post-single .badge {
    background: var(--primary-green) !important;
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

/* Data */
.post-single small {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 500;
}

/* Título do post */
.post-single h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Conteúdo gerado pelo WordPress */
.post-single .post-content p,
.post-single .entry-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.post-single .post-content h2,
.post-single .entry-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 24px 0 10px;
}

.post-single .post-content h3,
.post-single .entry-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 20px 0 8px;
}

.post-single iframe{
    width: 100%;
    height: 500px;
    border-radius: 25px;
}


/* ── Box Contato ── */
.boxContanto {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 20;
}

/* Lado esquerdo - conteúdo */
.boxContanto .col-lg-4 h2,
.boxContanto .col-lg-4 h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.boxContanto .col-lg-4 p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
}

.boxContanto .col-lg-4 p a,
.boxContanto .col-lg-4 a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.boxContanto .col-lg-4 p strong{
    color: var(--primary-green);
}

/* Ícones de contato */
.boxContanto .col-lg-4 ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.boxContanto .col-lg-4 ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.boxContanto .col-lg-4 ul li img,
.boxContanto .col-lg-4 ul li svg {
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.boxContanto .col-lg-4 ul li span,
.boxContanto .col-lg-4 ul li div {
    display: flex;
    flex-direction: column;
}

.boxContanto .col-lg-4 ul li .label {
    font-size: 12px;
    color: var(--text-color);
}

.boxContanto .col-lg-4 ul li .valor {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
}

/* ── Formulário CF7 ── */
.boxContanto .col-lg-8 .wpcf7 {
    padding: 0;
}

.boxContanto .col-lg-8 .wpcf7 label,
.boxContanto .col-lg-8 .wpcf7 .wpcf7-form-control-wrap::before {
    font-size: 13px;
    color: var(--text-color);
    display: block;
    margin-bottom: 4px;
}

.boxContanto .col-lg-8 .wpcf7 input[type="text"],
.boxContanto .col-lg-8 .wpcf7 input[type="email"],
.boxContanto .col-lg-8 .wpcf7 textarea {
    width: 100%;
    background: #FAFAF0;
    border: 1px solid #e8e8d8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border 0.2s;
    margin-bottom: 16px;
}

.boxContanto .col-lg-8 .wpcf7 input[type="text"]:focus,
.boxContanto .col-lg-8 .wpcf7 input[type="email"]:focus,
.boxContanto .col-lg-8 .wpcf7 textarea:focus {
    border-color: var(--primary-green);
}

.boxContanto .col-lg-8 .wpcf7 textarea {
    height: 140px;
    resize: vertical;
}

/* Botão Enviar */
.boxContanto .col-lg-8 .wpcf7 input[type="submit"] {
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    padding: 12px 36px;
    cursor: pointer;
    float: right;
    transition: background 0.2s;
}

.boxContanto .col-lg-8 .wpcf7 input[type="submit"]:hover {
    background: var(--accent-yellow-md);
}

/* ── Mapa ── */
.mapaContato {
    width: 100%;
    margin-top: -100px;
}

.mapaContato iframe {
width: 100%;
    height: 420px;
    border: none;
    display: block;
    border-radius: 20px;
    margin: -50px 0 0 0;
}

/* Botão Traçar Rota */
.mapaContato .container {
    position: relative;
}

.mapaContato a.tracar-rota {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    padding: 12px 36px;
    text-decoration: none;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: background 0.2s;
}

.mapaContato a.tracar-rota:hover {
    background: var(--accent-yellow-md);
}



#lgpd-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #006100;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 40px;
    z-index: 9999;
    flex-wrap: wrap;
}

#lgpd-bar svg {
    min-width: 32px;
}

#lgpd-bar .lgpd-text {
    flex: 1;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    font-family: sans-serif;
}

#lgpd-bar .lgpd-text a {
    color: var(--accent-yellow);
    font-weight: 600;
    text-decoration: underline;
}

#lgpd-bar .lgpd-text strong {
    color: var(--accent-yellow);
}

#lgpd-bar .lgpd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

#lgpd-aceitar {
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

#lgpd-aceitar:hover {
    background: var(--accent-yellow-md);
}

#lgpd-recusar {
    background: transparent;
    color: #fff;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 9px 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: border 0.2s;
}

#lgpd-recusar:hover {
    border-color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    #lgpd-bar {
        padding: 16px 20px;
        gap: 14px;
    }

    #lgpd-bar svg {
        display: none;
    }

    #lgpd-bar .lgpd-text {
        font-size: 12px;
    }

    #lgpd-bar .lgpd-actions {
        width: 100%;
        justify-content: flex-end;
    }
}


.contentPages{
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    margin: 40px 30px  90px 30px;
    color: var(--text-color);
}
