/* =========================================================
   REFLEXÕES
========================================================= */

.reflexoes-page {
    background: #fff;
    color: #222;
}


/* =========================================================
   HERO — REFLEXÕES
   MESMO ESTILO DA GALERIA
========================================================= */

.reflexoes-hero {
    position: relative;

    min-height: 220px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #fff 0%,
            #fff 32%,
            rgba(255,255,255,.94) 43%,
            rgba(255,255,255,.1) 65%
        ),
        linear-gradient(
            135deg,
            #f8f8f8,
            #ececec
        );
}


/* EFEITO VERMELHO NO LADO DIREITO */

.reflexoes-hero::after {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 0 35%,
            rgba(190,0,0,.95) 35%
        );

    opacity: .12;

    pointer-events: none;
}


/* CONTEÚDO */

.reflexoes-hero-content {
    position: relative;

    z-index: 2;

    width: min(1220px, 90%);

    margin: auto;
}


/* LABEL */

.reflexoes-hero-label {
    display: block;

    margin-bottom: 8px;

    color: #b00000;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


/* TÍTULO */

.reflexoes-hero h1 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 46px;

    font-weight: 600;

    line-height: 1.05;

    color: #222;
}


/* LINHA */

.reflexoes-hero-line {
    width: 38px;

    height: 3px;

    margin: 13px 0 15px;

    background: #c90000;
}


/* DESCRIÇÃO */

.reflexoes-hero p {
    max-width: 390px;

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #333;
}


/* =========================================================
   CONTAINER
========================================================= */

.reflexoes-container {
    width: min(1250px, 92%);

    margin: 0 auto;

    padding: 32px 0 45px;
}


.reflexoes-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 34px;

    align-items: start;
}


/* =========================================================
   HEADING
========================================================= */

.reflexoes-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}


.reflexoes-heading > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}


.reflexoes-heading-line {
    display: block;

    width: 3px;
    height: 21px;

    background: #d71920;
}


.reflexoes-heading h2 {
    margin: 0;

    font-size: 19px;
    font-weight: 700;
}


/* =========================================================
   TOOLS
========================================================= */

.reflexoes-tools {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
}


.reflexoes-tools label {
    color: #555;
}


.reflexoes-tools select {
    height: 36px;

    min-width: 125px;

    padding: 0 32px 0 12px;

    border: 1px solid #ddd;
    border-radius: 5px;

    background: #fff;

    font-size: 12px;

    cursor: pointer;
}


/* =========================================================
   SEARCH
========================================================= */

.reflexoes-search {
    display: none;
}


/* =========================================================
   RESULTADOS
========================================================= */

.reflexoes-resultados {
    margin-bottom: 18px;

    padding: 10px 14px;

    background: #fafafa;

    border-left: 3px solid #d71920;

    font-size: 12px;

    color: #555;
}


.reflexoes-resultados strong {
    color: #222;
}


.reflexoes-resultados a {
    margin-left: 12px;

    color: #c40000;

    text-decoration: none;

    font-weight: 700;
}


/* =========================================================
   GRID
========================================================= */

.reflexoes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}


/* =========================================================
   CARD
========================================================= */

.reflexao-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.reflexao-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.09);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.reflexao-card-image {
    position: relative;

    display: block;

    height: 130px;

    overflow: hidden;

    text-decoration: none;
}


.reflexao-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}


.reflexao-card:hover .reflexao-card-image img {
    transform: scale(1.04);
}


.reflexao-no-image {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #800000,
            #c00000
        );
}


/* =========================================================
   DATE
========================================================= */

.reflexao-date {
    position: absolute;

    left: 15px;
    bottom: -1px;

    padding: 6px 10px;

    background: #fff;

    color: #c40000;

    font-size: 10px;
    font-weight: 700;

    box-shadow: 0 -2px 5px rgba(0,0,0,.04);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.reflexao-card-content {
    padding: 17px 17px 14px;
}


.reflexao-card-content h3 {
    margin: 0 0 9px;

    font-size: 16px;

    line-height: 1.3;
}


.reflexao-card-content h3 a {
    color: #222;

    text-decoration: none;
}


.reflexao-card-content h3 a:hover {
    color: #c40000;
}


.reflexao-card-content p {
    margin: 0;

    min-height: 58px;

    color: #666;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.reflexao-card-footer {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 17px;

    padding-top: 11px;

    border-top: 1px solid #eee;
}


.reflexao-card-footer span {
    font-size: 10px;

    color: #777;
}


.reflexao-card-footer a {
    color: #c40000;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;
}


.reflexao-card-footer b {
    margin-left: 4px;

    font-size: 13px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.reflexoes-sidebar {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   QUOTE
========================================================= */

.reflexoes-quote {
    position: relative;

    padding: 23px 21px;

    border-radius: 7px;

    background:
        linear-gradient(
            145deg,
            #a50000,
            #710000
        );

    color: #fff;

    overflow: hidden;
}


.reflexoes-quote::after {
    content: "";

    position: absolute;

    right: -40px;
    bottom: -50px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


.reflexoes-quote-mark {
    display: block;

    margin-bottom: 3px;

    font-family: Georgia, serif;

    font-size: 47px;

    line-height: .6;

    color: #f2c400;
}


.reflexoes-quote p {
    position: relative;
    z-index: 2;

    margin: 15px 0 18px;

    font-size: 14px;

    line-height: 1.55;
}


.reflexoes-quote small {
    display: block;

    margin-bottom: 3px;

    font-size: 9px;

    font-weight: 700;

    color: rgba(255,255,255,.75);
}


.reflexoes-quote strong {
    font-size: 11px;

    font-weight: 600;

    color: #f2c400;
}


/* =========================================================
   SIDEBAR BOX
========================================================= */

.reflexoes-sidebar-box {
    padding: 19px;

    border: 1px solid #e8e8e8;

    border-radius: 6px;

    background: #fff;

    box-shadow:
        0 2px 9px rgba(0,0,0,.03);
}


.reflexoes-sidebar-box h3 {
    margin: 0 0 15px;

    padding-bottom: 11px;

    border-bottom: 1px solid #eee;

    font-size: 13px;
}


/* =========================================================
   TEMAS
========================================================= */

.reflexoes-temas {
    padding: 0;

    margin: 0;

    list-style: none;
}


.reflexoes-temas li {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 0;

    border-bottom: 1px solid #f0f0f0;

    font-size: 11px;
}


.reflexoes-temas li:last-child {
    border-bottom: 0;
}


.reflexoes-temas li span {
    color: #d71920;

    font-size: 11px;
}


.reflexoes-temas li b {
    margin-left: auto;

    min-width: 21px;

    padding: 3px 5px;

    border-radius: 20px;

    background: #f6f6f6;

    color: #d71920;

    text-align: center;

    font-size: 9px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.reflexoes-newsletter-icon {
    margin-bottom: 9px;

    color: #d71920;

    font-size: 18px;
}


.reflexoes-newsletter h3 {
    border: 0;

    padding: 0;

    margin-bottom: 8px;
}


.reflexoes-newsletter p {
    margin: 0 0 14px;

    color: #666;

    font-size: 11px;

    line-height: 1.55;
}


.reflexoes-newsletter form {
    display: flex;

    gap: 5px;
}


.reflexoes-newsletter input {
    min-width: 0;
    flex: 1;

    height: 34px;

    padding: 0 9px;

    border: 1px solid #ddd;

    border-radius: 4px;

    outline: none;

    font-size: 10px;
}


.reflexoes-newsletter button {
    border: 0;

    padding: 0 10px;

    border-radius: 4px;

    background: #b50000;

    color: #fff;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   EMPTY
========================================================= */

.reflexoes-empty {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    border: 1px solid #eee;

    background: #fafafa;
}


.reflexoes-empty h3 {
    margin: 0 0 8px;

    font-size: 18px;
}


.reflexoes-empty p {
    margin-bottom: 20px;

    color: #666;

    font-size: 13px;
}


.reflexoes-empty a {
    display: inline-flex;

    padding: 10px 17px;

    background: #b50000;

    color: #fff;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   PAGINAÇÃO
========================================================= */

.reflexoes-pagination {
    display: flex;

    justify-content: center;

    margin-top: 25px;
}


.reflexoes-pagination nav {
    display: flex;
}


.reflexoes-pagination svg {
    width: 15px;
}


.reflexoes-pagination a,
.reflexoes-pagination span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 32px;
    height: 32px;

    margin: 0 3px;

    border: 1px solid #eee;

    border-radius: 4px;

    color: #333;

    text-decoration: none;

    font-size: 11px;
}


.reflexoes-pagination span[aria-current="page"] {
    background: #b50000;

    border-color: #b50000;

    color: #fff;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1000px) {

    .reflexoes-layout {
        grid-template-columns: 1fr;
    }

    .reflexoes-sidebar {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .reflexoes-hero {
        min-height: 210px;
    }

    .reflexoes-hero h1 {
        font-size: 22px;
    }

    .reflexoes-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .reflexoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reflexoes-sidebar {
        grid-template-columns: 1fr;
    }
    .reflexoes-hero-label {
    display: block;

    margin-bottom: 8px;

    color: #b00000;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;
}

}


@media (max-width: 520px) {

    .reflexoes-container {
        width: 92%;
    }

    .reflexoes-grid {
        grid-template-columns: 1fr;
    }

    .reflexoes-hero p br {
        display: none;
    }

    .reflexoes-tools {
        width: 100%;
    }

}

/* =========================================================
   REFLEXÃO - SHOW
========================================================= */

.reflexao-show-page {
    background: #fff;
}


.reflexao-show-container {
    width: min(1120px, 92%);

    margin: auto;

    padding: 28px 0 60px;
}


/* BREADCRUMB */

.reflexao-breadcrumb {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 35px;

    color: #777;

    font-size: 10px;
}


.reflexao-breadcrumb a {
    color: #555;

    text-decoration: none;
}


.reflexao-breadcrumb a:hover {
    color: #b50000;
}


/* MAIN */

.reflexao-show-main {
    max-width: 850px;

    margin: auto;
}


.reflexao-show-category {
    display: block;

    margin-bottom: 10px;

    color: #c40000;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .8px;
}


.reflexao-show-main h1 {
    margin: 0 0 15px;

    font-family: "Playfair Display", Georgia, serif;

    color: #222;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 600;
}


/* META */

.reflexao-show-meta {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #777;

    font-size: 10px;
}


/* SHARE */

.reflexao-show-share {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 25px;
}


.reflexao-show-share > span {
    margin-right: 5px;

    color: #333;

    font-size: 11px;
    font-weight: 700;
}


.reflexao-show-share a,
.reflexao-show-share button {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    cursor: pointer;
}


.reflexao-show-share .facebook {
    background: #1877f2;
}


.reflexao-show-share .x {
    background: #000;
}


.reflexao-show-share .linkedin {
    background: #087ea4;
}


.reflexao-show-share .whatsapp {
    background: #25d366;
}


.reflexao-show-share .copy {
    background: #777;
}


/* IMAGE */

.reflexao-show-image {
    width: 100%;

    max-height: 500px;

    overflow: hidden;

    margin-bottom: 30px;

    border-radius: 5px;
}


.reflexao-show-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
}


/* CONTENT */

.reflexao-show-content {
    color: #333;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.85;
}


.reflexao-show-content p {
    margin: 0 0 22px;
}


/* NAVIGATION */

.reflexao-show-navigation {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid #eee;
}


.reflexao-show-navigation > div {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.reflexao-show-navigation .next {
    align-items: flex-end;

    text-align: right;
}


.reflexao-show-navigation span {
    color: #999;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;
}


.reflexao-show-navigation a {
    color: #222;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}


.reflexao-show-navigation a:hover {
    color: #c40000;
}


/* BACK */

.reflexao-show-back {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


.reflexao-show-back a {
    display: inline-flex;

    align-items: center;

    padding: 11px 20px;

    border: 1px solid #c40000;

    border-radius: 4px;

    color: #c40000;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: all .2s ease;
}


.reflexao-show-back a:hover {
    background: #c40000;

    color: #fff;
}


/* RELATED */

.reflexao-related {
    margin-top: 65px;

    padding-top: 30px;

    border-top: 1px solid #eee;
}


.reflexao-related-heading {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}


.reflexao-related-heading span {
    width: 3px;
    height: 20px;

    background: #c40000;
}


.reflexao-related-heading h2 {
    margin: 0;

    font-size: 19px;
}


.reflexao-related-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.reflexao-related-grid article {
    border: 1px solid #eee;

    background: #fff;
}


.reflexao-related-grid article > a {
    display: block;

    height: 145px;

    overflow: hidden;
}


.reflexao-related-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.reflexao-related-grid article > div {
    padding: 13px;
}


.reflexao-related-grid small {
    color: #c40000;

    font-size: 9px;
}


.reflexao-related-grid h3 {
    margin: 7px 0 0;

    font-size: 13px;

    line-height: 1.4;
}


.reflexao-related-grid h3 a {
    color: #222;

    text-decoration: none;
}


.reflexao-related-grid h3 a:hover {
    color: #c40000;
}


/* RESPONSIVO */

@media (max-width: 700px) {

    .reflexao-show-main h1 {
        font-size: 23px;
    }

    .reflexao-show-navigation {
        grid-template-columns: 1fr;
    }

    .reflexao-show-navigation .next {
        align-items: flex-start;

        text-align: left;
    }

    .reflexao-related-grid {
        grid-template-columns: 1fr;
    }

}