/*
Theme Name: Eduma Child
Theme URI: https://eduma.thimpress.com/
Template: eduma
Author: ThimPress
Author URI: https://thimpress.com
Description: Premium Online LMS & Education WordPress Theme.
Tags: two-columns,three-columns,left-sidebar,right-sidebar,custom-background,custom-header,custom-menu,editor-style,post-formats,rtl-language-support,sticky-post,theme-options,translation-ready,accessibility-ready
Version: 5.8.5.1774912693
Updated: 2026-03-30 20:18:13
*/

/* ── LOGO MOBILE ── */
@media (max-width: 768px) {
    .thim-ekit-site-logo {
        text-align: center !important;
        display: block !important;
    }
    .thim-ekit-site-logo img {
        margin: 0 auto !important;
    }
}

/* ── MENU PILL VERDE ── */
ul.thim-ekits-menu__nav.navbar-main-menu {
    background-color: #16390A !important;
    border-radius: 6px !important;
    padding: 2px 4px !important;
    display: flex !important;
    align-items: center !important;
}
ul.thim-ekits-menu__nav.navbar-main-menu > li > a.thim-ekits-menu__nav-link {
    color: #EAE2D7 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 4px 10px !important;
}
ul.thim-ekits-menu__nav.navbar-main-menu > li > a.thim-ekits-menu__nav-link:hover {
    color: #ffffff !important;
}

/* ── SUBLINHADO ANIMADO NO MENU ── */
.thim-ekits-menu .thim-ekits-menu__nav > li > a {
    position: relative;
    text-decoration: none;
}
.thim-ekits-menu .thim-ekits-menu__nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    height: 2px;
    background-color: #EAE2D7;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.thim-ekits-menu .thim-ekits-menu__nav > li:hover > a::after,
.thim-ekits-menu .thim-ekits-menu__nav > li.current-menu-item > a::after {
    transform: scaleX(1);
}
@media (max-width: 1024px) {
    .thim-ekits-menu .thim-ekits-menu__nav > li > a::after {
        display: none;
    }
}

/* ── COR DOS LINKS GLOBAIS ── */
a,
a:link,
a:visited {
    color: #33512C !important;
}
a:hover,
a:focus {
    color: #9D6208 !important;
}

/* ── LINKS DENTRO DO CONTEÚDO ── */
.site-content a,
.entry-content a,
.page-content a {
    color: #33512C !important;
}
.site-content a:hover,
.entry-content a:hover,
.page-content a:hover {
    color: #9D6208 !important;
}

/* ── SIDEBAR POSTS - REMOVE ARCHIVES ── */
.single-post .widget_archive {
    display: none !important;
}