/*
Theme Name: VIOMUNDO Clean
Author: hello. agência digital
Author URI: https://helloagdigital.com
Version: 3.0
Text Domain: viomundo
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');

:root {
    --vermelho-destaque: #FF5959;
    --vermelho-escuro: #F14646;

    --preto: #292929;
    --cinza-paragrafo: #212529;
    --cinza: #4E4E4E;
    --cinza-icones: #A7A7A7;
    --cinza-tag: #EDEDED;
    --cinza-claro: #FAFAFA;

}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    font-family: 'Manrope', sans-serif;

    font-size: 14px;
    line-height: 1.4em;

    color: var(--cinza);
}

@media (min-width: 768px) {
    html, body {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
    color: var(--vermelho-escuro);
}

a:hover {
    color: var(--vermelho-destaque);
    opacity: 1;
}

.rounded {
    border-radius: 8px !important;
}

strong {
    font-weight: 700;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.4em;
}


h1 {
    font-size: 2.1rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
    font-size: 1.1rem;
}

h4 {
    font-size: 1rem;
}

header {
    background-color: var(--preto);
}

.logo {
    width: auto;
    height: 40px;
}

@media (min-width: 768px) {
    .logo {
        height: 69px;
    }
}

/* Background */
.bg-red {
    background-color: var(--vermelho-destaque);
    color: white;
}

.bg-dark-balls {
    background: var(--preto) url('img/bg-dark-balls.jpg') no-repeat top center;
    background-size: cover;
    color: white;
}

    .bg-dark-balls a {
        color: white;
    }

/* Buttons */
.btn {
    font-size: .8rem;
    font-weight: 700;
    padding: 9px 32px;
}

.btn-primary {
    border: transparent;
    background-color: var(--vermelho-destaque);
}

    .btn-primary:hover {
        background-color: var(--vermelho-escuro);
        border: transparent;
    }


.btn-outline {
    border: 1px solid var(--vermelho-destaque);
    background-color: transparent;
    color: var(--vermelho-destaque);
}

    .btn-outline:hover {
        background-color: var(--vermelho-escuro);
        border: 1px solid var(--vermelho-destaque);
        color: white;
    }
    
/* Navigation */
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

    a.nav-link {
        font-weight: 700;
        font-size: .9rem;
        color: var(--cinza);
    }

        a.nav-link:hover {
            color: var(--vermelho-escuro);
        }

/* Tag */
.tag-button, a[rel*=category] {
    background-color: var(--cinza-tag);
    color: var(--cinza);
    border-radius: 4px;
    padding: 3px 17px;
    font-size: .6rem;
    font-weight: 700;
    display: inline-block;
}

.tag-active a[rel*=category] {
    background-color: var(--vermelho-destaque);
    color: white;
}

.tag-transparent a[rel*=category] {
    background-color: transparent;
    border: 1px solid var(--cinza-tag);
    color: white;
}

.tag-inverse {
    color: var(--vermelho-destaque) !important;
    background-color: white;
}

/* Search */
.search {
    width: 500px;
}
.search .form-control {
    background-color: #424242;
    border: transparent;
    height: 42px;
    color: white;
    font-size: .8rem;
    border-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

    .search .form-control:focus {
        box-shadow: none;
    }

    .search .btn {
        background-color: #424242;
        border-color: #424242;
        width: 24px;

        border-radius: 8px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

/* Highlight */
.highlight {
    border-radius: 8px;
}

    .highlight h1 {
        font-size: 1.4rem;
        line-height: 1.3em;
    }

    .highlight h1 a {
        color: white;
    }

    .highlight img {
        height: 350px;
        object-fit: cover;
        object-position: center;
        border-radius: 8px; 
    }

    .highlight .content {
        width: 100%;
        height: 400px;
        position: absolute;
        bottom: 0;

        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.76) 100%);
        border-radius: 8px;
    }

    .highlight .tag-button {
        font-size: .8rem;
    }

    @media (min-width: 768px) {
        .highlight h1 {
            font-size: 2.1rem;
            line-height: 1.2em;
        }
        .highlight img {
            height: 440px;
        }
    }

/* Post */
.post a {
    color: var(--cinza);
}

.post p {
    font-size: .8rem;
}

.post img.thumb {
    width: 100%;
    /* height: 120px; */
    height: 120px;
    min-width: 120px;
    max-width: 120px;
    object-fit: cover;
    object-position: center;
}


.post.post-xl img {
    height: 120px;
}

.latest-posts h3 {
    color: var(--vermelho-destaque);
}

@media (min-width: 768px) {
    .post img.thumb {
        height: 220px;
        min-width: 100%;
        max-width: auto;
    }

    .post.post-xl img {
        height: 300px;
    }
}

.interview-photo {
    height: 150px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .interview-photo {
        height: 300px;
    }
}

/* Author */
.author a {
    color: white;
}

.author img.photo {
    width: 120px;
    height: 120px;

    min-width: 120px;
    min-height: 120px;

    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 10px solid var(--vermelho-escuro);
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author img.photo {
        width: 220px;
        height: 220px;
    
        min-width: 220px;
        min-height: 220px;

        border: 15px solid var(--vermelho-escuro);
    }
}

/* Title Section */
.title h2 {
    font-size: 2rem;
}

.title p {
    font-size: .8rem;
}

.title-red h2, .title-red h1, .title-red h3 {
    color: var(--vermelho-destaque);
}

footer {
    font-size: .8rem;
    background-color: var(--cinza-claro);
    color: var(--cinza-icones);
}

footer a {
    color: var(--cinza-icones);
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    footer ul li {
        padding: 20px 20px;
    }


/* Scrolling Horizontal */
.overflow-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.overflow-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-opaque {
    opacity: .5;
    cursor: pointer;
}

/* Article */
article address {
    font-size: .8rem;
}

    article address img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 5px solid var(--cinza-tag);
    }

    article address a {
        color: var(--cinza);
    }

article time {
    font-size: .8rem;
    color: var(--cinza-icones);
}

article .text {
    font-size: 18px;
    line-height: 1.7em;
    color: var(--cinza-paragrafo);
}

article .reading_time {
    font-size: .8rem;
    color: var(--cinza-icones);
    margin-left: 20px;
}

article .text img {
    max-width: 100%;
    height: auto;
}

article .text .wp-caption.alignnone {
    width: 100% !important;
}

/* Comments */
.comments p {
    font-size: .9rem;
}

.comments time {
    color: var(--cinza-icones);
    font-size: .8rem;
}


/* Text */
figcaption, .figure-caption, .wp-caption-text {
    background-color: var(--cinza-tag);
    color: var(--cinza-paragrafo);
    padding: 15px;
    font-size: .75rem;
    line-height: 1.5em;
    margin-top: 0;
}

/* Pagination */
.page-item.active .page-link {
    z-index: 3;
    color: white;
    background-color: var(--vermelho-destaque);
    border-color: var(--vermelho-destaque);
}

.page-link {
    color: var(--vermelho-destaque);
}

/* Submenu */
.submenu {
    background-color: var(--cinza);
    color: white;
}

    .submenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .submenu ul li, .submenu ul li a {
        color: white;
        font-size: 1.5rem;
        padding: 15px 0;
    }

/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}
 
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
 
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
 
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
 
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
 
a img.alignnone {
    margin: 5px 20px 20px 0;
}
 
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
 
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 
.wp-caption {
    background: #fff;
    border: none;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
 
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
 
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
 
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
 
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
 
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
 
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
 
.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.donate {
    color: var(--cinza-paragrafo);
}

.donate .btn-primary {
    background-color: darkorange;
}

.donate .btn-lg {
    padding: 15px 45px;
}

.donate .amount {
    font-size: 40px;
    font-weight: 700;
}

    .donate .amount small {
        font-size: 15px;
        color: var(--cinza);
    }

.donate ul {
    margin: 0;
    list-style: none;
    padding: 0;
    font-size: 10px;
}

@media (min-width: 768px) {

    .donate .amount {
        font-size: 70px;
    }
    .donate .amount small {
        font-size: 22px;
    }

    .donate ul {
        font-size: 12px;
    }

}