@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Document */
html {
    scroll-behavior: auto !important;
}
:root {
    scroll-behavior: auto !important;
}

body {
	font-family: "Noto Serif", serif;
/*    font-family: "Bitter", serif;*/
	background-color: #fff;
	color: #2B2B2B;
    font-weight: 400;
    line-height: 1.65;
    
    font-size: 16.0px;
}

header .bg-dic {
    background-color: #fbfbfb;
}



a {
    color: #8B0000;
    text-decoration: none;
}

a:hover {
color:#470d12;
/*text-decoration: underline;*/
text-decoration: none;
}

/*a:focus, a:link {
color:#8B0000;
text-decoration: none;
}

*:focus {
    box-shadow: none !important;
}*/

.btn-art {
    background-color: #8B0000;
    color: #fff;
    border-color: #470d12;
}

.btn-art:hover {
    background-color: #470d12;
    color: #fff;
    border-color: #470d12;
}

header {
	padding: 1rem 0;
	text-align: center;
}

.top-logo {
font-weight: 400;
    font-size: 2rem;
    line-height: 1;
}

.top-logo span{
    color: #8B0000;
}

.top-logo a {
    color: #2B2B2B;
}

.top-logo a {
    position: relative;
    text-decoration: none;
}

.top-logo a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    bottom: 10px;
    left: 0;
    background-color: #8b000030;
    transition: width 0.3s ease;
}

.top-logo a:hover::after {
    width: 100%;
}

.lead {
    font-size: 1rem;
    font-weight: 300;
}

.intro-text {
/*  font-style: italic;*/
  color: #5a5a5a;
}

.intro-text p {
    margin-bottom:0;
}

main {
    min-height: 75vh;
}

aside {
	position: sticky;
}

aside ul.legend {
    position: sticky;
    top: 25px;
    font-size: .8em;
    margin-top: 58px;
}

aside ul.legend:before {
    content: "Navegar esta Palavra:";
    font-size: 12px;
    margin-bottom: 5px;
}

aside .isTop {
position: sticky;
    top: 25px;
    /* font-size: .8em; */
    margin-top: 45px;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 400;
}

.h1, h1 {
font-size: 1.75rem;
    font-weight: 600;
}

.h2, h2 {
    font-size: 1.45rem;
}

.h3, h3 {
    font-size: 1.35rem;
}

h3.section-title {
    color: #000;
    display: block;
    margin: 2rem 0 .75rem;
}

b, strong {
    font-weight: 600;
}

hr.hr-under {
    margin: 2rem 0;
}

.clear {
    clear: both;
}

.divider {
	position: relative;
	width: 50%;
	margin: .1rem auto;
	text-align: center;
    color: #6c757d;
    font-weight: 400;
    font-size: .75em;
}


.divider::before,
.divider::after {
	content: "";
	position: absolute;
	top: 50%;
	width: calc((100% - 2ch) / 2);
	height: 1px;
	background-color: #dee2e6;
}

.divider::before {
	left: 0;
}

.divider::after {
	right: 0;
}

.word-card {
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-weight: 400;
    transition: all 0.3s;
}

.word-card {
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    transition: all 0.3s;
}

.word-card:hover {
    background: #8B0000;
    color: #fff !important;
/*    transform: translateY(-2px);*/
}

.word-tags {
    font-size: .9em;
    margin-right: .5rem;
    padding: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.word-tags:hover {
/*    background: #8B0000;
    color: #fff !important;
    transform: translateY(-2px);*/
}

.word-tags:before {
    content: "#";
    font-size: .8em;
    color: #757575;
    margin-right: 3px;
}

.word-random {
    background: #fff;
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    transition: all 0.3s;
    position: fixed;
    top: 120px;
    width: auto;
    right: 20px;
    font-size: .9rem;
}

.word-random:hover {
    background: #8B0000;
    color: #fff !important;
/*    transform: translateY(-2px);*/
}

.word-random i.bi {
    font-size: 16px;
    vertical-align: middle;
}

.search-box-home {
    max-width: 400px;
    margin: 15px auto;
}

.search-box {
max-width: 300px;
margin: 9px 0 0;
position: relative;
}

.sugestoes-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0 0 6px 6px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.sugestoes-box .sugestao-item {
	display: block;
	padding: 6px 12px;
	color: #470d12;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	font-size: 0.95rem;
}

.sugestoes-box .sugestao-item:hover {
	background: #f8f9fa;
}

.form-control {
padding: 0.5rem .6rem;
font-size: 1rem;
}

.form-control:focus {
    border: 1px solid #dee2e6;
    box-shadow: none !important;
}

.section-title {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.right-sidebar {
/*	display: none;*/
    padding-left: 25px;
    padding-right: 0;
}

.inside-right-sidebar {
position: sticky;
top: 20px;
border-left: 1px solid #dee2e6;
border-image: linear-gradient(to bottom, #ffffff, #8b0000, #ffffff) 1 100%;
}

.widget {
    margin-left: 35px;
}

.widget i.bi {
    font-size: 12px;
    vertical-align: middle;
}

.word-widget {
margin-bottom: 0rem;
    font-size: 0.95rem;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.word-widget h3 {
    margin-bottom: .5rem;
    font-size: 1.2rem;
}
.word-widget .word-link {
    color: #000;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
}
.word-widget .word-link:hover {
    color: #8B0000;
}
.word-widget .btn-explore {
    display: inline-block;
    text-decoration: none;
    margin-top: 0.5rem;
    background: #fff;
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    transition: all 0.3s;
    width: auto;
    right: 20px;
    font-size: .8rem;
}
.word-widget .btn-explore:hover {
    background: #8B0000;
    color: #fff !important;
}

#countdown-timer {
font-size: .8rem;
    font-family: system-ui;
    background-color: #efefef;
    padding: 2px 4px;
    color: #343a40;
}
.countdown {
    margin-top: 1rem;
    color: #777;
    font-size: 0.9em;
}

ul.linky {
    list-style: none;
    padding-left: 0;
}

li.linky-item {
    font-size: .95em;
    margin-bottom: .15rem;
}

.profile-text{
    margin-bottom: 1rem;
}

.profile-img img{
    width: 100%;
    max-width: 156px;
    height: auto;
    padding: 2px;
    border: 1px solid #eee;
}

/**/

a.scroll-link {
text-decoration: none;
    color: #470d12 !important;
    /* letter-spacing: -.5px; */
    padding-top: 0;
    padding: 3px 0px;
    text-align: left;
    background-color: #ffffff;
    margin: 0 0 2px;
    /*display: inline-block;*/
}

a.scroll-link:hover {
    color: #470d12 !important;

}

a.scroll-link:focus {
color: #470d12 !important;
text-decoration: none;
}

/* ======== Estilo para citações ======== */
blockquote {
    margin-bottom: 1rem;
    padding: .75rem 1rem;
    border: 1px solid #d9d9d9;;
    background: #ffffff;
    font-style: italic;
    position: relative;
    border-radius: 8px;
}

blockquote p {
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
}

blockquote cite {
display: block;
    font-size: 0.9rem;
    font-style: normal;
    color: #3d3d3d;
}

blockquote cite:before {
    content: "\2014";
    margin-right: 5px;
}

i.bi {
    font-size: 16px;
    vertical-align: middle;
}

footer {
    font-size: 0.9em;
    background-color: #fbfbfb;
}

footer p {

}

.footer h5 {
    /* color: #fff; */
    /* font-weight: 600; */
    font-size: .9rem;
}

footer .navi-footer {
	font-size: 0.85rem;
    letter-spacing: 1px;
}

footer i.bi {
    font-size: 12px;
    vertical-align: middle;
}


footer .social-nav {

}
footer .social-nav a {
    padding: 6px;
    background-color: #ffffff;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}

footer .social-nav a:hover {
    background: #ffffff;
	border-color: #c3c3c3;
    transform: rotate(-5deg);
}

footer .social-nav i.bi {
    font-size: 18px;
    vertical-align: middle;
}

footer .social-nav img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

footer .social-txt {
    margin-top: 3px;
    font-weight: 500;
}

#scrollup {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    border: none;
    border-radius: .25rem;
    background: #b5b5b5;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    outline: none
}

#scrollup:hover {
    background: #600;
}

/*POEM*/
.poem-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
}

.poem-card {
width: 50%;
    max-width: 600px;
    padding: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-style: italic;
    color: #333;
    text-align: center;
    font-size: 1.1rem;
    transform: translateY(10px);
}

.poem-card p {
    margin-bottom: 0.4rem;
}

.a2a_svg {
    height: 24px !important;
    line-height: 24px !important;
    width: 24px !important;
}

.kofitext img.kofiimg {
    animation: none !important;
}


/* Mobile: largura 100%, padding ajustado */
@media (max-width: 768px) {
    .poem-card {
        width: 90%;
        padding: 1.5rem;
        font-size: 1.05rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .poem-container {
        padding: 0 1rem;
    }
    
    .search-box {
    margin: -5px 0 0;
    }
    
    .left-side {
        display: none;
    }
    
    .right-sidebar {
    /*display: none;*/
    padding-left: 0;
    padding-right: 0;
    }
    
    .inside-right-sidebar {
        border-left: 0;
        border-image: none;
        margin-top: 2rem;
        border: 0;
        border-radius: 0;
        padding: 10px;
        border-top: 1px solid #dee2e6;
    }
    
    .widget {
    margin-left: 0;
    border: 0;
    }
    
    .word-random {
    display: none;
    top: 160px;
    right: 10px;
    font-size: .65rem;
    }
    
}

/* FILTER */

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}