/* Theme Name: Massage Blog Description: Tema WordPress otimizado para blog de massagem com foco em performance e SEO Version: 1.0 */
/* Reset e Base */

/* lora-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lora';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/lora-v37-latin-700.woff2') format('woff2');
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

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

*,
body {
    margin: 0
}

* {
    padding: 0
}

html {
    line-height: 1.6;
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--bs-font-sans-serif);
    color: var(--text-color);
    font-weight: 400;
    color: #333;
    background-color: #1e293b1a;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.5
}

.container {
    max-width: 1200px;
    padding: 0 20px
}

.site-header {
    background: #1e293b;
    padding: 20px 0;
    top: 0;
    z-index: 100
}

.header-content {
    display: none;
    /* justify-content: space-between;
    align-items: center;
    max-width: 1154px;
    margin: 0 auto; */
}

.site-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    margin: 0
}

.site-title:hover {
    color: #296d9a;
    transition: color .3s ease
}

.site-description {
    font-size: .9rem;
    color: #7f8c8d;
    margin: 5px 0 0
}

.main-navigation ul {
    display: none;
    list-style: none;
    gap: 30px
}

.main-navigation a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color .3s ease
}

.main-navigation a:hover,
.post-title a:hover {
    color: #296d9a
}

.main-navigation a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #296d9a;
    transition: width .3s ease
}

.main-navigation a:hover::after {
    width: 100%
}

.site-main {
    padding: 40px;
    min-height: 60vh;
    background-color: white;
    margin: 40px auto;
    max-width: 900px;
}

.home .site-main {
    max-width: 1154px !important;
}


.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px
}

.post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.post-content {
    padding: 20px
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4
}

.entry-meta a {
    text-decoration: none
}

.main-navigation a,
.post-title a {
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Lora';
}

.post-excerpt {
    color: #7f8c8d;
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 15px
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #95a5a6
}

.post-date,
.read-more {
    font-weight: 500
}

.read-more {
    color: #296d9a;
    text-decoration: none;
    font-size: .9rem
}

.entry-meta a:hover,
.read-more:hover {
    text-decoration: underline
}

.entry-header {
    text-align: center;
    padding-bottom: 20px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2
}

.entry-meta {
    color: #7f8c8d;
    font-size: .9rem
}

.entry-meta a {
    color: #296d9a
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50
}

.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50
}

.entry-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #34495e
}

.entry-content p {
    margin-bottom: 20px
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px
}

.entry-content ol,
.entry-content ul {
    margin: 20px 0
}

.entry-content blockquote {
    border-left: 4px solid #296d9a;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #7f8c8d
}

.pagination {
    justify-content: center;
    margin-top: 50px;
    gap: 10px
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color .1s ease
}

.footer-main {
    width: 45%;
    text-align: start;
}


.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px 0;
    text-align: center
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 4rem;
    gap: 1rem;
}

.footer-content a {
    color: white;
    text-decoration: none
}

.footer-content a:hover {
    text-decoration: underline
}

.search-form {
    display: flex;
    max-width: 400px;
    margin: 20px auto
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    outline: 0
}

.search-field:focus {
    border-color: #296d9a;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, .2)
}

.search-submit {
    padding: 12px 20px;
    background: #296d9a;
    color: #fff;
    border: 0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color .1s ease
}

.search-submit:hover {
    background: #2980b9
}

.vimeo-embed-wrapper,
.youtube-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.vimeo-embed,
.wp-block-embed.wp-block-embed-vimeo iframe,
.wp-block-embed.wp-block-embed-youtube iframe,
.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px
}

.wp-block-embed.wp-block-embed-vimeo,
.wp-block-embed.wp-block-embed-youtube {
    margin: 30px 0
}

.wp-block-embed.wp-block-embed-vimeo .wp-block-embed__wrapper,
.wp-block-embed.wp-block-embed-youtube .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.wp-block-embed figcaption {
    margin-top: 15px;
    font-size: .9rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic
}

.post-format-video .post-card,
.post-format-video .post-thumbnail {
    position: relative
}

.post-format-video .post-card::before {
    content: "▶";
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10
}

.video-youtube .post-card::before {
    background: red
}

.video-vimeo .post-card::before {
    background: #1ab7ea
}

.post-format-video .post-thumbnail::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, .7);
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .8;
    transition: opacity .3s ease
}

.post-format-video .post-card:hover .post-thumbnail::after {
    opacity: 1
}

.single-page {
    max-width: 800px;
    margin: 0 auto
}

.front-page-content {
    max-width: 800px;
    margin: 0 auto 60px
}

.recent-posts-section {
    margin-top: 60px
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px
}

.view-all-posts {
    text-align: center;
    margin-top: 40px
}

.archive-description {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: center
}

.screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.alignright {
    float: right;
    margin-left: 20px
}

.alignleft {
    float: left;
    margin-right: 20px
}

.wp-caption {
    max-width: 100%
}

.wp-caption-text {
    font-size: .9rem;
    color: #7f8c8d;
    text-align: center;
    margin-top: 10px
}

.entry-content img,
.post-thumbnail {
    will-change: transform
}

.post-card {
    contain: layout
}

.post-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0
}

.post-taxonomy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: .9rem
}

.post-categories,
.post-tags {
    margin-bottom: 10px
}

.post-taxonomy a {
    color: #296d9a;
    text-decoration: none;
    margin-right: 10px
}

.post-taxonomy a:hover {
    text-decoration: underline
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0
}

.page-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px
}

.search-term {
    color: #296d9a;
    font-weight: 600
}

.error-404 {
    text-align: center;
    padding: 60px 20px
}

.error-404 .page-title {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px
}

.error-actions {
    margin: 30px 0
}

.button,
.recent-posts a {
    text-decoration: none;
    font-weight: 500
}

.button {
    display: inline-block;
    padding: 12px 25px;
    background: #296d9a;
    color: #fff;
    border-radius: 6px;
    transition: background-color .3s ease
}

.button:hover {
    background: #2980b9
}

.recent-posts {
    margin-top: 40px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.recent-posts h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center
}

.recent-posts ul {
    list-style: none;
    padding: 0
}

.recent-posts li {
    margin-bottom: 15px;
    padding: 10px
}

.recent-posts a {
    color: #2c3e50
}

.recent-posts a:hover {
    color: #296d9a
}

.featured-image {
    margin-bottom: 30px
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px
}

/* .main-navigation,.pagination,.post-navigation,.search-form,.site-footer,.site-header {
    display: none
} */

.entry-title {
    font-size: 2rem;
}

.entry-content {
    font-size: 1rem;
}

:root {
    --bg-color: #fff;
    --bs-font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --title-font: NotoSerif;
    --card-bg: #292e3c;
    --crd-shdw: none;
    --link-color: #1b54b0;
    --text-color: #1e293b;
    --red: #ff3f00;
    --border: #6a6a6a;
    --bg-destaque: #1e293b;
    --btn-color: #ff3f00;
    --btn-hover: #be3406;
    --text-apoio: #6a6a6a;
    --bg-geral: #f1f5f9
}

*,
::after,
::before {
    box-sizing: border-box
}

* {
    font-family: var(--bs-font-sans-serif)
}

main {
    display: flex;
    flex-direction: column
}

hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora';
    font-weight: 700;
    margin-bottom: .5rem;
    margin-top: 0;
    color: #1e293b !important
}

h1 {
    margin-block: .67em;
    font-size: clamp(1.5rem, 5vw, 2rem)
}

.caracteristicas strong,
.tabela-nome strong,
details strong {
    background: 0 0
}

h2,
h3 {
    font-size: 1.8rem
}

h4 {
    font-size: calc(1.275rem + 1.3vw)
}

.h5,
.h6 {
    font-size: 1rem
}

p,
ul {
    margin-top: 0
}

ul {
    padding-left: 0
}

ul li {
    list-style-type: none
}

ol {
    padding: 0;
    gap: 10px;
    display: flex;
    flex-direction: column
}

ol li {
    position: relative;
    padding-left: 30px;
    list-style: none;
}

ol li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #22c55e;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 14px
}

details div p,
figure {
    margin: 0
}

main img {
    max-width: 100%;
    vertical-align: middle;
    width: 100% !important;
    height: auto;
    object-fit: cover
}

a {
    text-decoration: none;
    color: var(--bg-destaque);
}

p a strong {
    font-weight: 400 !important;
}


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

button:focus:not(:focus-visible) {
    outline: 0
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

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

.container,
.container-fluid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    width: 100%
}

.container {
    margin: 0 auto
}

.container-fluid {
    margin-left: auto;
    margin-right: auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    width: 100%
}

.col {
    flex: 1 0 0
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem
}

.card {
    background-clip: border-box;
    border-bottom: 1px solid #c8c8c859;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem !important;
    min-width: 0;
    position: relative;
    word-wrap: break-word;
    grid-column: span 2;
    height: 100%
}

article .card:nth-of-type(1) {
    border: 0
}

.card-body {
    background-color: #292e3c;
    flex: 1 1 auto;
    padding: 1rem
}

.card-text:last-child {
    margin-bottom: 0
}

.card-img {
    min-height: 200px
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    width: 100%
}


article h2 {
    font-size: 24px
}

article h3 {
    font-size: 20px
}

.card-blog-body {
    flex: 1 1 auto;
    padding: 0 .5rem;
    background-color: transparent;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly
}

#posts-destaque div.card-blog-body>h2 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em*3)
}

.card-shadow {
    box-shadow: var(--crd-shdw) !important
}

.card-img-overlay {
    border-radius: calc(.25rem - 1px);
    padding: 1rem
}

.card a,
.card a:focus,
.card a:hover {
    outline: 0;
    text-decoration: none
}

.pagination {
    display: flex;
    list-style: none;
    padding-left: 0
}

.page-link {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: var(--bg-destaque);
    display: block;
    padding: .375rem .75rem;
    position: relative;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.page-link:hover {
    background-color: #f1f1f1;
    border-color: #dee2e6;
    color: var(--hover);
    z-index: 2
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    background-color: var(--bg-destaque);
    border-color: var(--bg-destaque);
    color: #fff;
    z-index: 3
}

.page-item:first-child .page-link {
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important
}

.stretched-link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.d-flex {
    display: flex !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.flex-column,
html {
    height: 100% !important
}

.flex-column {
    flex-direction: column !important
}

.justify-content-center {
    justify-content: center !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.mb-3,
article#article figure {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.py-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-white {
    color: #fff !important
}

.bg-light {
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #212529 !important
}

.border-two {
    border-radius: 1rem !important
}

.pagination>li>a {
    border-radius: 5px !important;
    line-height: 1 !important;
    margin: 0 5px
}

.page-item.disabled .page-link {
    background-color: #3f4756;
    border: 0;
    color: #bababb;
    pointer-events: none
}

.category {
    display: block;
    position: absolute;
    right: 0;
    text-align: center;
    top: -15px;
    z-index: 10
}

.category a {
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 4px 25px;
    vertical-align: top
}

.bg-over,
.bg-over:hover,
.category {
    width: 100%
}

.bg-over {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%
}

#maincontent .bg-over {
    flex-direction: row;
    gap: .5rem
}

#maincontent .card {
    grid-column: span 4
}

.bg-over,
.bg-over:hover {
    background: rgba(0, 0, 0, .2)
}

.link-over {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.grid[data-columns]::before {
    content: "3 .column.size-1of3"
}

.grid {
    display: block;
    width: 100%
}

.column {
    float: left
}

.size-1of1 {
    width: 100%
}

.size-1of2 {
    width: 50%
}

.size-1of2,
.size-1of3,
.size-1of4 {
    padding-left: 15px;
    padding-right: 15px
}

.size-1of3 {
    width: 33.333%
}

.size-1of4 {
    width: 25%
}

.col-btn {
    display: contents
}

.btn-tags {
    background-color: var(--card-bg);
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    margin: 3px;
    padding: 10px;
    text-align: left;
    text-decoration: none !important;
    vertical-align: middle
}

.btn,
.btn-tags {
    color: #f7f7f7
}

.btn:disabled {
    opacity: .65;
    pointer-events: none
}

.mb-0 {
    margin-bottom: 0 !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-muted {
    color: inherit !important;
    opacity: .6
}

.tag-img,
img.alignnone.size-medium {
    border-radius: 1rem;
    height: 200px;
    width: 100%
}

.ratio,
.ratio>* {
    position: relative;
    width: 100%
}

.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0
}

.ratio::before,
iframe:before {
    content: "";
    display: block;
    padding-top: var(--bs-aspect-ratio)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
    background: #000;
    max-width: 297px;
    max-height: 200px
}

div#Divlinks {
    background-color: var(--bg-color);
    border-radius: 5px;
    font-size: .9em;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: .25rem
}

#posts-destaque>div>div>div>div>div.ratio.ratio-16x9,
#posts-destaque>div>div>div>div>div.ratio.ratio-16x9 img {
    border-top-right-radius: 1rem !important;
    border-top-left-radius: 1rem !important;
    max-width: unset;
    max-height: unset
}

.sticky {
    position: sticky;
    top: 1rem
}

#article>div {
    position: relative
}

.navbar {
    padding: 30px 0;
    background-color: var(--bg-destaque);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.navbar div {
    padding: 0;
    margin: unset !important;
    max-width: 1280px;
    width: 90%
}

.theme-btn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    max-width: 250px;
    margin-left: 2px
}

ul.blocks-gallery-grid {
    display: flex;
    flex-wrap: wrap
}

li.blocks-gallery-item {
    display: flex;
    min-height: 100%;
    width: 33%
}

.blocks-gallery-item figure {
    height: 100%
}

li.blocks-gallery-item figure img {
    height: 100%;
    object-fit: cover
}

figcaption {
    margin-bottom: 15px;
    margin-top: 5px
}

.col-12 {
    width: 100%
}

.col-6 {
    width: 50%
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    align-items: stretch;
    padding: 0
}

#posts-destaque .card:nth-of-type(1),
#posts-destaque .card:nth-of-type(2) {
    grid-column: span 3
}

img.card-img.border-one {
    height: 250px;
    object-fit: cover
}

img.card-img {
    max-height: 185px;
    min-height: 185px;
    object-fit: cover
}

.form-group {
    padding-top: 1rem
}

.form-control {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.btn-red {
    background-color: var(--bg-destaque);
    font-size: 16px;
    border-radius: .5rem;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--bg-destaque);
    font-weight: 600;
    transition: all ease .2s
}

.btn-red:hover {
    color: var(--red);
    transition: all ease .2s
}

.btn-color-red {
    color: var(--bg-color);
    display: flex;
    justify-content: flex-end
}

.btn-color-red.left {
    justify-content: flex-start
}

.comentario .nome-time {
    justify-content: space-between
}

.comentario .nome-time,
aside.comentario,
figure ul {
    display: flex;
    align-items: center
}

figure ul {
    align-items: flex-start;
    flex-wrap: wrap
}

.comentario p {
    font-style: italic
}

.card-comentario,
.card-comentario-2 {
    padding: 1rem;
    margin-top: .3rem;
    margin-bottom: .3rem;
    border-top: solid 1px var(--border);
    width: 100%
}

.card-comentario h4,
.card-comentario-2 h4,
.font-line {
    font-weight: 400
}

time {
    font-size: .725rem
}

.subtitulo {
    position: relative;
    padding-bottom: .5rem
}

.subtitulo::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: calc(var(--bs-gutter-x)*.5);
    right: calc(var(--bs-gutter-x)*.5);
    height: 1px;
    background-color: var(--border);
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5)
}

.subtitulo::before {
    content: "";
    width: 20%;
    height: 4px;
    position: absolute;
    bottom: -4px;
    border-radius: 20px;
    background: var(--bg-destaque);
    left: 50%;
    transform: translateX(-50%)
}

.grid-relacionados {
    display: grid;
    grid-gap: 10px;
    display: flex;
    justify-content: space-between
}

.grid-relacionados img.card-img {
    max-height: 150px;
    min-height: 150px
}

.grid-relacionados .card-img-overlay {
    padding: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem
}

.grid-relacionados h4 {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    max-width: 380px
}

.grid-relacionados .card {
    margin-bottom: 0 !important;
    width: 30%;
    border: 0;
    background-color: var(--bg-geral)
}

.avatar-container img {
    width: 40px !important
}

figure ul li {
    width: 45%;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
    min-height: 100%
}

figure ul li figure img {
    height: 400px
}

figure:has(figure:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 10px
}

figure:has(figure:nth-child(2)) img {
    max-height: 100%;
    min-height: 100%;
    object-fit: cover
}

.card-text {
    font-size: .9em;
    opacity: .8;
    line-height: 1.6
}

.card-blog-body h2 {
    font-size: 1.1em;
    transition: color .3s ease
}

body>main>div.container.mt-5>section>p {
    font-size: 1em;
    line-height: 1.2em
}

iframe {
    max-width: 100%;
    height: revert-layer;
    --bs-aspect-ratio: calc(9 / 16 * 100%);
    border: 0;
    width: 100%;
    margin: 1.5rem 0
}

.card .bg-over {
    background-color: transparent;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    border-radius: 0 !important
}

.card img.border-two {
    border-radius: 0 !important;
    object-fit: cover;
    box-sizing: unset
}

#maincontent .card.border-one.text-center {
    box-sizing: unset
}

#posts-destaque .bg-over:hover .card-blog-body h2,
.bg-over:hover .card-blog-body h2,
.card.border-one:hover .bottom-txt {
    color: #ff3f00
}

.pagination .page-link {
    background-color: var(--bg-destaque);
    color: #fff;
    border: 0;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 500
}

.pagination .page-item.active .page-link {
    background-color: #ff3f00;
    color: #fff
}

.pagination .page-link:hover {
    background-color: #3f4756;
    color: #fff
}

.pagination .page-item.disabled .page-link {
    background-color: transparent;
    color: #6a6a6a
}

body>main>div.container.mt-5>section>h1 {
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center
}

aside#categorias .btn {
    background-color: #292e3c;
    border: 1px solid #4d525c;
    transition: all .3s ease;
    font-size: .9em;
    padding: 8px 16px
}

aside#categorias .btn:hover {
    background-color: var(--hover);
    color: #fff;
    border-color: var(--hover);
    transform: translateY(-2px)
}

#posts-destaque {
    width: 100%;
    background-color: var(--bg-destaque);
    display: flex;
    justify-content: center;
    align-items: center
}

.titulo-pagina-secundaria .titulo h1 {
    color: var(--text-color);
    padding-top: 1rem
}

#maincontent {
    width: 100%;
    padding-top: 2rem
}

#maincontent .row,
#posts-destaque .row,
.titulo {
    max-width: 1280px;
    width: 100%
}

#maincontent,
.div-titulo {
    display: flex;
    justify-content: center;
    align-items: center
}

.div-titulo {
    flex-direction: column;
    margin-top: 1.5rem
}

.titulo h1 {
    color: var(--bg-destaque)
}

#posts-destaque {
    padding: 2rem 0;
    gap: 5rem
}

#posts-destaque * {
    color: #fff;
    text-align: start
}

.card * {
    text-align: start
}

#maincontent .card {
    border-bottom: solid 1px var(--bg-geral) !important;
    border-radius: 0 !important;
    padding-bottom: 1rem
}

.content-with-sidebar {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto
}

.main-content {
    flex: 1;
    min-width: 0
}

.main-content .card img.border-two {
    object-fit: contain !important
}

.sidebar-categorias {
    flex: 0 0 400px;
    border-radius: 12px;
    padding: .5rem 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem
}

.sidebar-categorias h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--bg-geral);
    text-align: center
}

.lista-categorias {
    list-style: none;
    padding: 0;
    margin: 0
}

.card-blog-body h2,
.lista-categorias li {
    margin-bottom: .5rem
}

.btn-categoria {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    background: #000;
    color: #00c0ff;
    text-decoration: none;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: all .3s ease;
    filter: invert(1);
    border: solid 1px #00c0ff
}

.btn-categoria:hover {
    color: #00c0ff
}

body>footer>div>div:nth-child(2)>p {
    font-weight: 500
}

.w-65 {
    width: 65%;
    position: relative;
    flex: none
}

.w-30 {
    width: 30%;
    flex: none
}

.w-30 b {
    padding-left: .65rem
}

.justify-content-between {
    justify-content: space-between
}

.p-0 {
    padding: 0
}

table {
    margin-bottom: 1.5rem
}

table:not(#tabelaProdutos) {
    width: 50%;
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed;
    height: fit-content
}

.tabela-pros th {
    background-color: #c7fcc180;
    color: green;
    padding: 12px;
    font-size: 16px;
    text-align: left;
    border-radius: 4px
}

.site-title a {
    color: white;
}

.tabela-contras th {
    background-color: #fddcdc63;
    color: #e00000;
    padding: 12px;
    font-size: 16px;
    text-align: left;
    border-radius: 4px
}

table:not(#tabelaProdutos) td {
    background-color: #f1f5f9;
    padding: 10px 12px;
    vertical-align: top;
    border-radius: 4px;
    font-size: 15px;
    position: relative
}

.produto-detalhado__avaliacao>div>table:not(#tabelaProdutos).tabela-pros>tbody>tr>td::before {
    content: "✔";
    color: green;
    font-weight: 700;
    margin-right: 8px;
    position: absolute;
    left: 8px
}

.produto-detalhado__avaliacao>div>table:not(#tabelaProdutos).tabela-contras>tbody>tr>td::before {
    content: "✖" !important;
    color: red !important;
    font-weight: 700;
    margin-right: 8px;
    position: absolute;
    left: 8px
}

table:not(#tabelaProdutos) td:first-child,
table:not(#tabelaProdutos) td:last-child {
    padding-left: 26px
}

table:not(#tabelaProdutos) td:empty {
    display: none
}

#article>div>div.w-65.card.border-one.card-shadow.p-0>div,
.produto-detalhe {
    font-size: 16px
}

.produto-detalhe {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem
}

.card-img-produtos p {
    margin: 0 !important;
}

.produto-detalhe>div:nth-of-type(3) {
    display: flex
}

#Divlinks-mobile {
    margin: 10px 0;
    max-height: 280px;
    min-height: 150px;
    overflow: auto;
    padding: 15px;
    font-size: .9em;
    line-height: 1.2;
    flex-wrap: nowrap;
    flex-direction: column
}

.Divlinks a {
    margin: .25rem 0;
    /* font-weight: 500; */
    padding: 0;
    font-size: 16px;
    /* color: #0250cf; */
    color: blue;
    border-left: solid 2px var(--bg-geral);
    padding-left: .5rem;
    transition: all ease .2s
}

.Divlinks a:hover {
    border-left: solid 2px var(--link-color);
    transition: all ease .2s
}

.Divlinks a.active {
    border-left: 3px solid #06f;
    color: var(--text-color);
    transition: all ease .2s
}

#tabelaProdutos tbody {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

#tabelaProdutos tr {
    background: var(--bg-geral);
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    justify-content: space-around;
    max-height: 150px;
    gap: 1rem
}

#tabelaProdutos td {
    border: 0;
    vertical-align: middle;
    width: 50%;
    max-width: 50%
}

#tabelaProdutos td:nth-of-type(1),
#tabelaProdutos td:nth-of-type(3) {
    width: 20%;
    max-width: 20%;
    flex-direction: column;
    align-items: center;
    display: flex
}

#tabelaProdutos td:nth-of-type(3) {
    width: 30%;
    max-width: 30%
}

#tabelaProdutos img {
    border-radius: 8px;
    max-width: 80px;
    min-width: 80px;
    max-height: 80px;
    display: block;
    object-fit: contain
}

#tabelaProdutos td:nth-child(2) strong {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block
}

#tabelaProdutos td:nth-child(2) {
    font-size: 14px;
    color: #666
}

#tabelaProdutos .btn-preco,
#tabelaProdutos td:nth-of-type(3) a {
    background-color: #dd3aa1;
    color: #000;
    filter: invert(100%);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color .1s ease;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    height: 45px
}

#tabelaProdutos .btn-preco:hover,
#tabelaProdutos td:nth-of-type(3) a:hover {
    background-color: #fa70c7;
    color: #000;
    transition: all ease .2s;
}

#tabelaProdutos td span {
    display: block;
    font-size: 16px;
    color: #666;
    text-align: center
}

.comparador {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    padding: 1.5rem 0;
    align-items: stretch
}

.comparador .produto {
    min-width: 230px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px var(--bg-geral);
    padding: .5rem .5rem 0;
    background-color: var(--bg-geral);
    height: 100%;
    box-sizing: border-box
}

.comparador .produto>div:nth-of-type(1)>p:nth-of-type(1) {
    margin-bottom: 0;
    min-height: 34px;
    font-size: 12px;
    line-height: 1.1;
    display: flex;
    align-items: start;
    box-sizing: border-box;
    word-break: break-all
}

.btn-afiliado,
.card-img-produtos div>a,
.comparador .produto>div:nth-of-type(1)>a {
    background-color: #dd3aa1;
    color: #000;
    filter: invert(100%);
    padding: 1rem;
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    justify-content: center;
    align-items: center;
    transition: background-color .1s ease;
    text-decoration: none
}

.btn-afiliado:hover,
.card-img-produtos div>a:hover,
.comparador .produto>div:nth-of-type(1)>a:hover {
    background-color: #fa70c7;
    color: #000 !important;
    width: 100%;
    transition: all ease .3s;
}

.comparador .produto img {
    width: 170px !important;
    height: 170px;
    object-fit: contain;
    margin: 0 auto
}

.produto>div:nth-last-of-type(1):not(.carac) {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex: 1;
    height: 100%;
    min-height: 337px;
    box-sizing: border-box
}

.carac {
    text-align: center
}

.caracteristicas>li,
.produto h3 {
    text-align: center;
    display: flex;
    justify-content: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.produto h3 {
    margin: 5px;
    flex: 0 0 auto;
    min-height: 40px;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box
}

.produto h3 a {
    line-height: 1
}

.caracteristicas {
    width: 108%;
    flex: 1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.caracteristicas>li {
    line-height: 1.3;
    font-weight: 600;
    flex-direction: column;
    align-items: center;
    word-break: break-word;
    padding: .25rem .5rem;
    min-height: 55px;
    max-height: 55px
}

.card-produto .card-img-produtos .produto-detalhado__rating {
    display: flex;
    flex-direction: row;
    height: fit-content;
    width: fit-content;
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    padding: 0 .75rem
}

.rating-text {
    margin-left: .5rem
}

.card-produto {
    position: relative
}

.titulo-rating {
    display: flex;
    justify-content: space-between
}

.posicao {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    color: var(--text-color);
    font-size: 1.5rem;
    border-radius: .25rem;
    flex-shrink: 0;
    margin-right: .5rem;
    position: absolute;
    left: clamp(1rem, 1vw, 2rem);
    font-weight: 600
}

.titulo-produto {
    width: 80%
}

.card-produto .card-img-produtos .produto-detalhado__rating .star {
    color: #ffc107
}

.caracteristicas>li:nth-child(odd) {
    background-color: #fff
}

.caracteristicas>li,
.caracteristicas>li>*,
.card-produto .card-img-produtos div>ul>li {
    font-size: 14px
}

.caracteristicas>li>strong {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: 1.3;
    font-weight: 400;
    font-size: 12px
}

.card-produto .card-img-produtos {
    padding: clamp(1rem, 5vw, 2rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: .25rem;
    background-color: var(--bg-geral);
    margin: 2rem 0
}

.card-produto .card-img-produtos div:nth-of-type(2):not(.produto-detalhado__rating) {
    width: 45%
}

.card-produto .card-img-produtos div:nth-last-of-type(1)>div {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: .5rem;
    gap: .5rem;
    margin-top: 4rem;
}

.card-produto .card-img-produtos h2 {
    font-size: clamp(18px, 2vw, 24px)
}

.card-produto .card-img-produtos div>ul {
    width: 100%;
    margin: 0
}

.card-produto .card-img-produtos div>ul>li {
    padding: .25rem .5rem
}

.card-produto .card-img-produtos div>a {
    width: fit-content;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: .75rem 3.5rem;
    margin: 0 !important
}

.produto-detalhado__titulo {
    font-weight: 600;
    margin: 0 0 .5rem 2.75rem
}

.produto-detalhado__ribbon {
    margin: 0 0 1rem 2.75rem;
    display: flex;
    font-size: 16px
}

#posts-destaque .card-blog-body .card-text,
.d-none {
    display: none
}

.produto-detalhado__descricao ul {
    margin-top: 1rem
}

.produto-detalhado__avaliacao {
    display: flex;
    width: 100%;
    justify-content: space-between
}

#comment-form {
    padding-top: 2rem
}

p a,
p a strong,
ul li strong {
    font-size: inherit
}

.btn-afiliado,
.produto-detalhado__cta {
    margin-top: 1.5rem !important
}

body>footer>div>div:nth-child(1)>p {
    text-align: start;
    font-size: .875em
}

body>footer>p:last-of-type {
    font-size: .875em
}

.galeria-scroll {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    overflow: hidden;
    margin: 1.5rem auto
}

.card-autor a,
.galeria-item {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

.galeria-item {
    left: 100%;
    opacity: 0;
    transition: all .4s ease
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.galeria-item.active {
    left: 0;
    opacity: 1
}

.galeria-item.prev {
    left: -100%
}

.galeria-item.next {
    left: 100%
}

.galeria-scroll::after,
.galeria-scroll::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none
}

.galeria-scroll::before {
    left: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"><path d="M11 1L3 8l8 7" /></svg>')
}

.galeria-scroll::after {
    right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" viewBox="0 0 16 16"><path d="M5 1l8 7-8 7" /></svg>')
}

#relacionados-section {
    width: 90%;
    margin: 0 auto;
    max-width: 1280px
}

div .etiqueta-autor {
    background-color: var(--bg-geral);
    border-radius: 1.5rem;
    padding: .25rem 1rem;
    width: fit-content;
    margin-bottom: 1.5rem;
    color: var(--text-color)
}

.autor-link {
    line-height: 1;
    font-size: 14px
}

.card-autor figure img,
div .etiqueta-autor img {
    border-radius: 50%;
    object-fit: cover
}

div .etiqueta-autor img {
    width: 30px;
    max-width: 30px;
    height: 30px
}

img[alt=Amazon] {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain
}

.each-store,
div .etiqueta-autor {
    display: flex;
    align-items: center;
    gap: .5rem
}

.card-autor {
    padding: 2rem;
    border-radius: .5rem;
    background-color: var(--bg-geral);
    display: flex;
    align-items: start;
    position: relative;
    margin-bottom: 1.5rem
}

article#article .card-autor figure {
    margin-bottom: 0 !important;
    padding: 0;
    margin-right: 1rem
}

.card-autor figure img {
    max-width: unset;
    width: 80px !important;
    height: 80px !important
}

.card-autor .info-autor {
    width: 90%
}

.card-autor .info-autor .name,
.description-autor {
    margin: 0;
    font-size: 20px;
    color: var(--text-color)
}

.description-autor {
    font-size: 18px
}

.card-autor a {
    left: 0;
    z-index: 10;
    text-indent: -9999px;
    background: 0 0;
    cursor: pointer
}

.categorias-grid:not(#posts-destaque) {
    width: 90%;
    max-width: 1280px;
    margin: 1.5rem auto
}

.contato,
.politica-de-privacidade,
.sobre {
    width: 100%;
    max-width: 1280px;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column
}

.contato figure,
.politica-de-privacidade figure,
.sobre figure {
    margin-bottom: 1rem
}

.contato img,
.politica-de-privacidade img,
.sobre img {
    border-radius: .25rem
}

.contato div:nth-of-type(1),
.politica-de-privacidade div:nth-of-type(1),
.sobre div:nth-of-type(1) {
    max-width: 1080px;
    width: 90%;
    justify-content: start !important
}

.contato .content-page,
.contato .content-page .border-one,
.politica-de-privacidade .border-one,
.politica-de-privacidade .content-page,
.sobre .content-page,
.sobre .content-page .border-one {
    margin: 0 !important
}

#posts-destaque .border-one {
    border: 0 !important
}

.content-page-contato {
    width: 100% !important
}

.content-page-contato>div>div:nth-of-type(2) form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.content-page-contato>div>div:nth-of-type(2)>div:nth-of-type(n+2):nth-of-type(-n+4) {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px
}

.content-page-contato>div>div:nth-of-type(2)>div:nth-of-type(n+2):nth-of-type(-n+4) label {
    margin-bottom: 5px;
    font-weight: 700
}

.content-page-contato input,
.content-page-contato textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box
}

.content-page-contato button[type=submit] {
    padding: 10px;
    background-color: var(--bg-destaque);
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    justify-content: center;
    display: flex
}

.content-page-contato button[type=submit]:hover {
    color: var(--red)
}

#contato>div>div>div>div:nth-child(3)>div>div:nth-child(1),
#contato>div>div>div>div:nth-child(3)>div>div:nth-child(2) {
    display: flex;
    gap: .5rem
}

.links-mobile,
br {
    display: none
}

details {
    width: 100%;
    margin: 1rem auto;
    padding: .5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    transition: all .3s ease
}

summary {
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    outline: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between
}

summary strong {
    font-weight: 500;
    font-size: 1rem
}

details summary::-webkit-details-marker {
    display: none
}

details summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--red);
    transition: transform .3s ease
}

details[open] summary::after {
    content: "–";
    font-size: 1.5rem;
    transform: rotate(180deg)
}

details div {
    padding: .8rem 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid #eee;
    animation: slideDown .3s ease
}

details a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700
}

details a:hover {
    text-decoration: underline
}

#links-acesso-rapido-desktop {
    max-height: 50dvh;
    overflow-y: auto
}

#links-acesso-rapido-desktop::-webkit-scrollbar {
    width: 8px
}

#links-acesso-rapido-desktop::-webkit-scrollbar-track {
    background: #f1f1f1
}

#links-acesso-rapido-desktop::-webkit-scrollbar-thumb {
    background-color: #c9c7c767;
    border-radius: 4px
}

#links-acesso-rapido-desktop::-webkit-scrollbar-thumb:hover {
    background-color: var(--link-color)
}

.tabela-comparativa {
    margin: 2rem 0
}

.ratio-800x480 {
    --bs-aspect-ratio: calc(480 / 800 * 100%);
    position: relative;
    width: 100%
}

.ratio-800x480 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem
}

.card-img-produtos p:has(img) {
    width: 50%;
    height: auto
}

.card-produto .card-img-produtos .produto-detalhado__imagem {
    border-radius: .5rem;
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    width: 100% !important;
    height: auto
}

.titulo-produto p:nth-child(1) {
    display: none
}

.produto-detalhe>p:nth-child(6) {
    width: 100%
}

#Divlinks {
    margin-top: 1rem
}

.produto-detalhado__rating .star,
.rating-stars .star {
    font-size: 1.2em;
    color: #ddd;
    transition: all .3s ease;
    position: relative;
    display: inline-block
}

.produto-detalhado__rating .star.star-full,
.rating-stars .star.star-full {
    color: #ffc107 !important
}

.produto-detalhado__rating .star.star-empty,
.rating-stars .star.star-empty {
    color: #ddd !important
}

.produto-detalhado__rating .star.star-partial,
.rating-stars .star.star-partial {
    color: #ddd;
    background: linear-gradient(90deg, #ffc107 0%, #ffc107 var(--fill-percentage, 50%), #ddd var(--fill-percentage, 50%), #ddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.produto-detalhado__rating .star.star-partial::before,
.rating-stars .star.star-partial::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    color: #ffc107;
    width: var(--fill-percentage, 50%);
    overflow: hidden;
    z-index: 1
}

.produto-detalhado__rating .rating-value,
.rating-stars .rating-value {
    margin-left: 4px;
    color: #666;
    font-size: 14px
}

.post-categories strong {
    color: var(--text-color)
}

p a {
    /* color: #0250cf; */
    color: blue;
}

/* Preferências de movimento */
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}

/* Extra pequenos dispositivos (até 480px) */
@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    .entry-title {
        font-size: 1.8rem;
    }

    .post-content {
        padding: 15px;
    }

    .search-form {
        max-width: 100%;
    }
}

/* Até 544px */
@media screen and (max-width: 544px) {
    .grid[data-columns]::before {
        content: "1 .column.size-1of1";
    }
}

/* De 544px até 768px */
@media screen and (min-width: 544px) and (max-width: 768px) {
    .grid[data-columns]::before {
        content: "2 .column.size-1of2";
    }
}

/* Até 600px */
@media (max-width: 600px) {
    .card-img-produtos p:has(img) {
        width: 80%;
    }

    .prev.page-numbers,
    .next.page-numbers {
        font-size: 0;
        /* esconde o texto */
    }

    .prev.page-numbers::before {
        content: "←";
        /* seta esquerda */
        font-size: 16px;
    }

    .next.page-numbers::before {
        content: "→";
        /* seta direita */
        font-size: 16px;
    }
}

/* Até 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .card-img-produtos p:has(img) {
        width: 95%;
    }

    .vimeo-embed-wrapper,
    .youtube-embed-wrapper {
        margin: 20px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation ul {
        gap: 20px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .entry-title {
        font-size: 2rem;
    }

    .entry-content {
        font-size: 1.1rem;
    }

    .site-main {
        padding: 20px 0px;
    }

    .content-with-sidebar {
        padding: 0 0.5rem;
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .sidebar-categorias {
        padding: 1rem;
        flex: none;
        position: static;
        order: -1;
    }

    .btn-categoria {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    #maincontent .bg-over {
        flex-direction: column;
    }
}

/* Até 1023px */
@media (max-width: 1023px) {
    figure ul li {
        width: 100%;
    }
}

/* Até 1024px */
@media (max-width: 1024px) {

    #tabelaProdutos td,
    #tabelaProdutos tr {
        flex-direction: column;
        text-align: center;
    }

    #tabelaProdutos tr {
        max-height: unset;
    }

    #tabelaProdutos td {
        padding: 8px 0;
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: center;
    }

    #tabelaProdutos img {
        max-width: 100px;
        max-height: 100px;
    }

    #tabelaProdutos .btn-preco {
        width: 80%;
    }

    .card-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .card {
        width: 100%;
    }

    /* Regras de layout e conteúdo */
    #article,
    #maincontent .row,
    #posts-destaque .row,
    #relacionados-section,
    .div-titulo .titulo,
    .navbar>div,
    .titulo,
    #mainnav>div,
    footer>div:nth-last-of-type(1) {
        width: 90%;
        margin: 0 auto;
    }

    .sidebar-categorias {
        flex: none;
        position: static;
        order: -1;
    }

    .lista-categorias {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .lista-categorias li {
        margin-bottom: 0;
    }

    /* Cartões */
    .card-produto .card-img-produtos {
        flex-direction: column;
        align-items: center;
    }

    .card-produto .card-img-produtos .produto-detalhado__imagem,
    .card-produto .card-img-produtos div:nth-of-type(2):not(.produto-detalhado__rating),
    .titulo-produto,
    .w-65 {
        width: 100% !important;
    }

    .card-produto .card-img-produtos .produto-detalhado__rating {
        position: absolute;
        left: 1.5rem;
        bottom: 9.5rem;
    }

    .card-produto .card-img-produtos .produto-detalhado__imagem {
        margin: 0 auto 1rem;
    }

    .card img.border-two {
        object-fit: cover;
    }

    /* Autor */
    .card-autor {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .card-autor .info-autor .name {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .card-autor .info-autor,
    .links-mobile div {
        width: 100%;
    }

    article#article .card-autor figure {
        margin-right: 0;
    }

    /* Footer */
    footer div:nth-of-type(1) {
        flex-direction: column;
    }

    footer div:nth-of-type(1)>div {
        width: 100%;
    }

    /* Páginas internas */
    .contato,
    .politica-de-privacidade,
    .sobre {
        width: 90%;
    }

    .contato div:nth-of-type(1),
    .politica-de-privacidade div:nth-of-type(1),
    .sobre div:nth-of-type(1) {
        width: 100%;
        margin: 0 auto;
    }

    #acesso-rapido {
        display: none;
    }

    .links-mobile {
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

    .produto-detalhado__avaliacao {
        display: block;
    }

    table:not(#tabelaProdutos) {
        width: 100%;
    }

    .ratio-16x9 {
        --bs-aspect-ratio: calc(9 / 16 * 100%);
        background: #000;
        max-width: unset;
        max-height: unset;
    }

    .grid-relacionados {
        flex-direction: column;
    }

    .grid-relacionados .card {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .produto-detalhe div:nth-child(3) {
        flex-direction: column;
    }
}

/* Breakpoints de containers */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    h2,
    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

/* Grid responsivo */
@media screen and (min-width: 992px) and (max-width: 1400px) {
    .grid[data-columns]::before {
        content: "3 .column.size-1of3";
    }
}

@media screen and (min-width: 1400px) {
    .grid[data-columns]::before {
        content: "4 .column.size-1of4";
    }
}



/* ========================================
   IMAGENS DO TOPO DO ARTIGO
   ======================================== */

.top-images-container {
    margin: 2rem 0;
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.top-images-container .top-image-item {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-images-container .top-image-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Layout para 1 imagem */
.top-images-count-1 {
    max-width: 800px;
    margin: 2rem auto;
}

.top-images-count-1 .top-image-item {
    width: 100%;
}

.top-images-count-1 .top-image-item img {
    height: 400px;
    object-fit: cover;
}

/* Layout para 2 imagens */
.top-images-count-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.top-images-count-2 .top-image-item {
    width: 100%;
}

.top-images-count-2 .top-image-item img {
    height: 300px;
    object-fit: cover;
}

/* Layout para 3 imagens */
.top-images-count-3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
    height: 400px;
}

.top-images-count-3 .top-image-item:first-child {
    grid-row: 1 / 3;
}

.top-images-count-3 .top-image-item img {
    height: 100%;
    object-fit: cover;
}

/* Layout para 4 imagens */
.top-images-count-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.top-images-count-4 .top-image-item img {
    height: 250px;
    object-fit: cover;
}

.top-images-count-5 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto;
    height: 400px;
    align-items: center;
}

.top-images-count-5 .top-image-item:first-child {
    grid-row: 1 / 3;
}

.top-images-count-5 .top-image-item img {
    height: 100%;
    object-fit: cover;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .top-images-container {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .nav-links {
        width: 100%;
        gap: 0;
    }

    .nav-links:has(:nth-child(5)) {
        gap: 10px;
        width: auto;
    }

    .top-images-count-5:has(> .top-image-item:nth-child(5))>.top-image-item:nth-last-child(-n+2) {
        display: none;
    }

    .top-images-count-1 .top-image-item img {
        height: 250px;
    }

    .top-images-count-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .top-images-count-3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .top-images-count-3 .top-image-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .top-images-count-4 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .top-images-count-5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .top-images-count-5 .top-image-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .top-image-item img {
        height: 100px;
        max-height: 100px;
    }

    .top-images-count-5 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .menu-footer-container {
        margin-bottom: 2rem;
    }

    img.header-bg-image {
        height: 45px !important;
    }

    .header-image-container {
        justify-content: center;
    }
}

/* Responsividade para mobile pequeno */
@media (max-width: 480px) {
    .top-images-container {
        margin: 1rem 0;
        gap: 0.5rem;
    }
}

.top-images-container .top-image-item {
    border-radius: 6px;
}

.page-numbers.dots {
    display: none;
}

.menu-footer-container {
    display: flex;
    text-align: start;
    flex-direction: row-reverse;
}

.header-image-overlay {
    display: none;
}

.header-image-container {
    display: grid;
    margin: 0 auto;
    max-width: 1154px;
    box-sizing: border-box;
}

img.header-bg-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Nosso */

.page-links {
    margin-top: 30px;
    text-align: center;
    font-weight: 500
}

.page-links a,
.recent-posts li {
    background: #f8f9fa;
    border-radius: 4px
}

.nav-links a,
.page-links a {
    color: #2c3e50;
    text-decoration: none
}

.page-links a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    transition: background-color .1s ease
}

.pagination .current,
.pagination a:hover {
    background-color: #ff3f00;
    color: #fff
}

.nav-links a:hover,
.page-links a:hover {
    background-color: #3f4756;
    color: #fff
}


.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.nav-next,
.nav-previous {
    flex: 1
}

.nav-next {
    text-align: right
}

.nav-links a {
    background-color: var(--bg-destaque);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500
}

.nav-links:has(.nav-previous):has(.nav-next) .nav-previous a,
.nav-links:has(.nav-previous):has(.nav-next) .nav-next a {
  display: flex;
  padding: .5rem;
}