/* Achadinhos Review — Site Público | Design System
   Versão: v1.38.0 */

/* Google Fonts moved to layout files for dynamic loading */

/* CSS Variables */
:root {
    --color-black: #252525;
    --color-blue: #7A75B5;
    --color-blue-dk: #6863a1;
    --color-blue-soft: #f4f6fa;
    --color-red-dk: #CA3438;
    --color-white: #FFFFFF;
    --color-gray-bg: #f4f6fa;
    --color-gray-lt: #eff2f6;
    --color-gray-md: #8A94A6;
    --color-gray-dk: #4A5568;
    --color-border: #e1e8f0;

    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --header-h: 90px;
    --container: 1240px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 10px rgba(10, 103, 155, .05);
    --shadow-md: 0 10px 30px rgba(10, 103, 155, .08);
    --shadow-lg: 0 20px 50px rgba(10, 103, 155, .12);

    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.btn-ver-detalhes {
    background: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.btn-ver-detalhes:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-conteudo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-logo img {
    height: 60px;
    width: auto;
}

/* Nav */
.site-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav .nav-list>li {
    position: relative;
}

.site-nav .nav-list>li>a,
.site-nav .nav-list>li>button {
    padding: 10px 16px;
    font-family: var(--font-title);
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-black);
    transition: var(--transition);
}

.site-nav .nav-list>li>a:hover,
.site-nav .nav-list>li>button:hover,
.site-nav .nav-list>li>a.active,
.site-nav .nav-list>li>button.active {
    color: var(--color-blue);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.site-nav .nav-list>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-gray-dk);
    transition: var(--transition);
}

.nav-dropdown a:hover {
    color: var(--color-blue);
    background: var(--color-blue-soft);
    padding-left: 30px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--color-gray-bg);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
/* Mobile Drawer Elements - Hidden on Desktop */
.mobile-nav-top,
.mobile-nav-footer {
    display: none;
}

/* Mobile Nav Drawer */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
    }

    /* Full-screen overlay wrapper */
    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0.35s ease;
    }

    /* Dark overlay background */
    .site-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .site-nav.open {
        visibility: visible;
        pointer-events: all;
    }

    .site-nav.open::before {
        opacity: 1;
    }

    /* Sliding drawer panel */
    .nav-drawer {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        background: #fff;
        display: flex;
        flex-direction: column;
        z-index: 2;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    }

    .site-nav.open .nav-drawer {
        transform: translateX(0);
    }

    /* Drawer header */
    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid var(--color-border);
        flex-shrink: 0;
        background: var(--color-white);
    }

    .nav-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--color-blue);
        border-radius: 50%;
        background: #ede5f2;
        transition: background 0.2s, color 0.2s;
    }

    .nav-close:hover {
        background: var(--cor-primaria);
        color: #fff;
    }

    /* Nav list fills the middle */
    .site-nav .nav-list {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 8px 0;
        background: #fff;
    }

    .site-nav .nav-list>li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .site-nav .nav-list>li>a,
    .site-nav .nav-list>li>button {
        padding: 16px 24px;
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a2e;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        background: transparent;
    }

    .site-nav .nav-list>li>a.active,
    .site-nav .nav-list>li>button.active {
        color: var(--color-blue);
        background: #f8f0ff;
        border-left: 4px solid var(--color-blue);
    }

    /* Dropdown Accordion */
    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8fafc;
    }

    .site-nav .nav-list>li.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        padding: 12px 24px 12px 48px;
        font-size: 0.95rem;
        color: #475569;
        display: block;
    }

    .nav-dropdown a.active {
        color: var(--color-blue);
        background: rgba(10, 103, 155, 0.05);
    }

    /* Drawer footer */
    .mobile-nav-footer {
        display: block;
        padding: 28px 24px;
        background: #f8fafc;
        border-top: 1px solid #eef2f7;
        flex-shrink: 0;
    }

    .mobile-social {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
    }

    .mobile-social a {
        width: 40px;
        height: 40px;
        background: #fff;
        color: var(--color-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 1.1rem;
        border: 1px solid #e2e8f0;
        transition: background 0.2s, color 0.2s;
    }

    .mobile-social a:hover {
        background: var(--color-blue);
        color: #fff;
    }

    .mobile-contact-info a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #64748b;
    }
}

/* HERO */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 100px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title span {
    color: #CA3438;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
}


/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-blue-dk);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}


.section-header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-dk);
    line-height: 1.6;
}

/* STATS BAR — Modern & Premium */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-black);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray-md);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    box-shadow: 0 3px 10px rgba(10, 103, 155, .12);
    border-color: var(--color-blue);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-img-placeholder {
    width: 100%;
    height: 220px;
    background: var(--color-gray-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-md);
    font-size: 3rem;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.card-date {
    color: var(--color-gray-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-category {
    background: var(--color-blue-soft);
    color: var(--color-blue);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.4;
    margin-bottom: 20px;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card:hover .card-title {
    color: var(--color-blue);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--color-gray-dk);
    line-height: 1.6;
    margin-bottom: 24px;
    /* Limit to 3 lines */
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    margin-top: auto;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-link i {
    transition: transform var(--transition);
}

.card-link:hover {
    color: var(--color-blue-dk);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ANIMATIONS & CTA */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.text-center {
    text-align: center;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

/* FOOTER (CONSOLIDATED & RESTRUCTURED) */

.footer-info {
    background: var(--color-black);
    color: var(--color-white);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
}

@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: var(--font-title);
    opacity: 0.7;
}

.logo-text-top {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.logo-text-bottom {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .9);
    display: flex;
    gap: 12px;
}

.footer-address i {
    color: var(--color-blue);
    margin-top: 4px;
}

.footer-col-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #7A75B5;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #27254a;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-black) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-blue) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: none;
    color: var(--color-white);
}

.social-link:hover::before {
    opacity: 1;
}

/* SITE FOOTER (Dynamic Red Section) */
.site-footer {
    background: #CA3438;
    color: var(--color-white);
    padding: 24px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .9);
}

.footer-privacy a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .8);
    transition: var(--transition);
    font-weight: 600;
}

.footer-privacy a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    max-width: 100%;
}

/* PAGE HERO (inner pages) */
.page-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--color-blue) 0%, #718FC8 100%);
    padding: 30px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: #ffffff !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.breadcrumb a {
    color: #ffffff !important;
    font-weight: 700;
    transition: opacity var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-sep {
    color: #ffffff !important;
    opacity: 0.8;
    font-size: 0.7rem;
}

/* CONTENT AREA */
.content-area {
    padding: 64px 0;
}

.content-prose {
    max-width: 800px;
    margin: 0 auto;
}

/* Info Note (Modern Footer) */

@media (max-width: 768px) {}

.content-prose h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    display: inline-block;
}

.content-prose p {
    margin-bottom: 16px;
    color: var(--color-gray-dk);
}

.content-prose ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.content-prose ul li {
    margin-bottom: 8px;
    color: var(--color-gray-dk);
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-gray-dk);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--color-black);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(3, 69, 191, .12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* MODALS */

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    color: var(--color-black);
    font-size: 1.25rem;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--color-red);
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {}

/* Footer styles moved and consolidated to lines 1071+ */

.footer-privacy a:hover {
    color: rgba(255, 255, 255, .8);
}

/* REVIEW DETALHE */
.post-detail {
    display: block;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .875rem;
    color: var(--color-gray-md);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.9);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    font-family: var(--font-title);
    color: var(--color-primary);
}

.post-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.post-content a {
    color: var(--color-blue);
    text-decoration: underline;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--color-gray-md);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    opacity: .4;
}

.empty-state p {
    font-size: 1rem;
    font-weight: 500;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    border: 1.5px solid var(--color-border);
    color: var(--color-gray-dk);
    transition: all var(--transition);
}

.pagination a:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: rgba(3, 69, 191, .06);
}

.pagination .active {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

/* Responsividade específica para os cards */
@media (max-width: 768px) {}

/* RESPONSIVE — Homepage V2 */
@media (max-width: 1023px) {


    .news-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 4px;
    }

    .news-item {
        min-width: 280px;
    }


}

@media (max-width: 768px) {}

@media (max-width: 480px) {



    .news-list {
        flex-direction: column;
    }

    .news-item {
        min-width: auto;
    }
}

/* ESTILOS DE CONTEÚDO (REVIEWS) */
.post-content {
    font-size: 1.05rem;
    line-height: 1.2;
    /* Super compacto */
    color: rgba(0, 0, 0, 0.9);
    word-wrap: break-word;
}

.post-content p {
    margin-bottom: 5px !important;
}

.post-content .tm-align-justify {
    text-align: justify !important;
}

.post-content ul,
.post-content ol {
    padding-left: 2.5rem;
}

.post-content ul {
    list-style: disc !important;
}

.post-content ol {
    list-style: decimal !important;
}

.post-content li {
    margin-bottom: 0.8rem;
    padding-left: 0.2rem;
    /* Texto mais perto do número/bullet */
}

.post-content h1,
.post-content h2,
.post-content h3 {
    color: var(--color-primary);
    font-family: var(--font-title);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content img {
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.post-content td,
.post-content th {
    border: 1px solid var(--color-border);
    padding: 12px;
}

/* PLACEHOLDER FEEDBACK */
.evento-main-banner-placeholder,
.evento-card-placeholder,
.card-img-placeholder {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
}

.placeholder-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajuste específico para listagem geral onde o fundo é claro */
.card-img-placeholder .placeholder-text {
    color: var(--color-gray-md);
}

/* MODERN SUCCESS MODAL */
.modal-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 58, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-success-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(3, 69, 191, 0.25);
    width: 100%;
    max-width: 480px;
    padding: 48px 32px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-success-overlay.active .modal-success-content {
    transform: scale(1) translateY(0);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 190, 115, 0.1);
    color: #00be73;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
}

.modal-success-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(0, 190, 115, 0.2);
    border-radius: 50%;
    animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.modal-success-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.modal-success-text {
    font-size: 1.0625rem;
    color: var(--color-gray-dk);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-modal-close {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* HERO INTERNA & BREADCRUMBS */

.page-hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-gray-md);
}

.breadcrumb a {
    color: var(--color-blue);
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-blue-dk);
    text-decoration: underline;
}

.breadcrumb-sep {
    opacity: 0.5;
}

.page-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
    margin: 0;
}


@keyframes pulseBG {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Responsividade */
@media (max-width: 1024px) {}

@media (max-width: 991px) {}

@media (max-width: 480px) {}

/* COOKIE BANNER — Modern & Responsive */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    z-index: 10000;
    display: none;
    /* Ativado via JS */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.cookie-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-content {
    flex: 1;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--color-black);
    line-height: 1.5;
    font-family: var(--font-body);
}

.cookie-text a {
    color: var(--color-blue);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-cookie-accept:hover {
    background: var(--color-blue-dk);
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--color-gray-dk);
    border: 1px solid var(--color-border);
}

.btn-cookie-reject:hover {
    background: #f1f5f9;
    color: var(--color-black);
}

@media (max-width: 991px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
        max-width: 150px;
    }
}

/* === Tipografia Forçada: Parágrafos e Descrições (Fonte Secundária) === */
p,
.description,
[class*='-desc'],
[class*='desc'] {
    font-family: var(--font-body) !important;
}

/* === ACHADINHOS PAGE === */
.section-achadinhos {
    padding: 60px 0 100px;
    background: var(--color-white);
}

.achadinhos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 0 30px;
}

.achadinhos-grid-page-achadinhos {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: start;
}

.achadinhos-grid-page-achadinhos .achadinhos-card {
    max-width: 100%;
    margin: 0;
}

.achadinhos-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    transition: transform var(--transition), border-color var(--transition);
    width: 100%;
    max-width: 300px;
    flex: 0 0 auto;
}

.achadinhos-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
}

@media (max-width: 768px) {
    .achadinhos-card {
        max-width: 100%;
    }
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition);
    mix-blend-mode: multiply;
}

.achadinhos-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--color-gray-md);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-brand {
    color: var(--color-gray-md);
}

.card-category {
    background: var(--color-blue-soft);
    color: var(--color-blue);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-stacked {
    width: 100%;
    justify-content: center;
    box-shadow: none !important;
}

/* === Cores Inteligentes dos Botões === */
.btn-shopee {
    background-color: #EE4D2D !important;
    color: #ffffff !important;
    border-color: #EE4D2D !important;
}

.btn-shopee:hover {
    background-color: #D0011B !important;
    border-color: #D0011B !important;
}

.btn-amazon {
    background-color: #333e48 !important;
    color: #ffffff !important;
    border-color: #333e48 !important;
}

.btn-amazon:hover {
    background-color: #ff9900 !important;
    border-color: #ff9900 !important;
}

.btn-mercadolivre {
    background-color: #ffe600 !important;
    color: #2d3277 !important;
    border-color: #ffe600 !important;
}

.btn-mercadolivre:hover {
    background-color: #2d3277 !important;
    color: #ffffff !important;
    border-color: #2d3277 !important;
}

.btn-braip {
    background-color: #6832F3 !important;
    color: #ffffff !important;
    border-color: #6832F3 !important;
}

.btn-braip:hover {
    background-color: #702DFA !important;
    border-color: #702DFA !important;
    color: #ffffff !important;
}

.btn-monetizze {
    background-color: #0030FF !important;
    color: #ffffff !important;
    border-color: #0030FF !important;
}

.btn-monetizze:hover {
    background-color: #0026cc !important;
    border-color: #0026cc !important;
    color: #ffffff !important;
}

.btn-hotmart {
    background-color: #FF4000 !important;
    color: #ffffff !important;
    border-color: #FF4000 !important;
}

.btn-hotmart:hover {
    background-color: #0D0D0D !important;
    border-color: #0D0D0D !important;
    color: #ffffff !important;
}

.btn-aliexpress {
    background-color: #E43225 !important;
    color: #ffffff !important;
    border-color: #E43225 !important;
}

.btn-aliexpress:hover {
    background-color: #F7971D !important;
    border-color: #F7971D !important;
}

.btn-logzz {
    background-color: #280158 !important;
    color: #00FF75 !important;
    border-color: #280158 !important;
}

.btn-logzz:hover {
    background-color: #1a013a !important;
    color: #00FF75 !important;
    border-color: #1a013a !important;
}

/* Pagination basic styling if not exists */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-black);
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

/* ======================
   Cookie Consent Banner
   ====================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--color-border);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 32px;
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    min-width: 240px;
}

.cookie-text {
    color: var(--color-black);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: var(--color-black);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 11px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.btn-cookie-accept {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.btn-cookie-accept:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--color-gray-dk);
    border-color: var(--color-border);
}

.btn-cookie-reject:hover {
    background: var(--color-gray-lt);
    color: var(--color-black);
    border-color: var(--color-gray-md);
}

@media (max-width: 640px) {
    .cookie-container {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}

/* Badge Pulsante para Unidades (Logzz / Cash on Delivery) */
.badge-pulse-uni {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 6px;
    letter-spacing: 0.5px;
    animation: pulse-soft 2s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- ESTILOS EXCLUSIVOS DA HOME --- */

.hero-section-home {
    padding-top: calc(var(--header-h) + 40px);
    /* Compensa os 90px do header fixed + 40px de respiro real */
    padding-bottom: 20px;
    background-color: transparent;
    margin-bottom: 60px;
}

.hero-card-home {
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    min-height: 460px;
    padding: 20px;
    /* Espaçamento ao redor do conteúdo todo */
}

.hero-image-home {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    object-fit: cover;
    /* Garante o preenchimento exato do quadrado */
    border-radius: var(--radius-md);
    /* Cantos levemente redondos */
}

.hero-content-home {
    flex: 1;
    padding: 0 40px;
    /* Espaçamento apenas nas laterais do texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge-home {
    display: inline-block;
    background: var(--color-destaque);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.hero-title-home {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-desc-home {
    color: var(--color-gray-dk);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.section-title-home {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-home i {
    color: var(--cor-primaria);
}

.product-card-home {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap-home {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    overflow: hidden;
}

.product-img-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-home:hover .product-img-home {
    transform: scale(1.05);
}

.product-info-home {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title-home {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1.4;
    display: block;
}

.product-meta-home {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-outline-home {
    padding: 8px 16px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-outline-home:hover {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: white;
}

.review-card-home {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-img-wrap-home {
    height: auto;
    overflow: hidden;
}

.review-img-home {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.review-card-home:hover .review-img-home {
    transform: scale(1.05);
}

.review-info-home {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-date-home {
    font-size: 0.8rem;
    color: var(--color-gray-md);
    margin-bottom: 8px;
}

.review-title-home {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.review-desc-home {
    color: var(--color-gray-dk);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-home {
    margin-top: auto;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-home:hover {
    color: var(--color-blue-dk);
}

.slider-section-home {
    margin-bottom: 3rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: white;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-card-home {
        flex-direction: column;
        padding: 20px;
    }

    .hero-image-home {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 20px;
    }

    .hero-content-home {
        width: 100%;
        padding: 10px 0;
    }

    .hero-title-home {
        font-size: 1.8rem;
    }
}

/* --- ESTILOS EXCLUSIVOS: -REVIEWS --- */
.posts-hero-reviews {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--color-blue) 0%, #0a1f44 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.posts-hero-reviews .hero-title-reviews {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.posts-hero-reviews .hero-subtitle-reviews {
    font-family: var(--font-body);
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .posts-hero-reviews {
        padding: 80px 0;
    }

    .posts-hero-reviews .hero-title-reviews {
        font-size: 2.5rem;
    }

    .posts-hero-reviews .hero-subtitle-reviews {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* --- ESTILOS EXCLUSIVOS: -REVIEW --- */
/* Banner produto dentro do review */
.review-product-banner .btn {
    text-decoration: none !important;
    color: #fff;
}

.review-product-banner .btn-primary:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.review-product-banner .btn-mercadolivre {
    color: #2d3277 !important;
}

.review-product-banner .btn-mercadolivre:hover {
    color: #fff !important;
}

@media (max-width: 768px) {
    .review-product-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-product-banner>div:first-child {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 1/1 !important;
    }

    .review-product-banner .banner-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .review-product-banner .banner-content>div {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 10px !important;
    }

    .review-product-banner .banner-content>div .btn {
        width: 100% !important;
        justify-content: center;
        margin: 0 !important;
    }
}

/* Estilos Tags Clicáveis */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-clicavel {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #ffffff;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.tag-clicavel:hover {
    background: var(--cor-primaria, #0A679B);
    color: #ffffff;
    border-color: var(--cor-primaria, #0A679B);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(10, 103, 155, 0.2);
}

/* Card de Compartilhamento - Premium */
.share-card-review {
    background: linear-gradient(135deg, #f4f4ff 0%, #f8faff 100%);
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: 50px;
    border: 1px solid #dfddf6;
    box-shadow: 0 4px 24px rgba(10, 103, 155, 0.07);
}

.share-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.share-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cor-primaria, #0A679B), var(--cor-secundaria, #064e77));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 103, 155, 0.25);
}

.share-title-review {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
    line-height: 1.3;
}

.share-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    cursor: pointer;
    background: #fff;
    letter-spacing: 0.01em;
}

.share-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.share-btn-review.facebook-review {
    color: #1877F2;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.share-btn-review.facebook-review:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3);
}

.share-btn-review.whatsapp-review {
    color: #16a34a;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.share-btn-review.whatsapp-review:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.share-btn-review.twitter-review {
    color: #0f172a;
    border-color: #e2e8f0;
    background: #f8fafc;
}

.share-btn-review.twitter-review:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.share-btn-review.email-review {
    color: #0A679B;
    border-color: #bae6fd;
    background: #f0f9ff;
}

.share-btn-review.email-review:hover {
    background: #0A679B;
    border-color: #0A679B;
    color: #fff;
    box-shadow: 0 6px 16px rgba(10, 103, 155, 0.3);
}

.share-btn-review.copy-link-review {
    color: #0369a1;
    border-color: #bae6fd;
    background: #e0f2fe;
}

.share-btn-review.copy-link-review:hover {
    background: #0369a1;
    border-color: #0369a1;
    color: #fff;
    box-shadow: 0 6px 16px rgba(3, 105, 161, 0.3);
}

.share-btn-review span {
    display: inline-block;
}

@media (max-width: 576px) {
    .share-card-review {
        padding: 22px 18px;
    }

    .share-btn-review span {
        display: none;
    }

    .share-btn-review {
        padding: 10px 14px;
    }
}

/* Estado copiado */
.copy-link-review.copied-review {
    background: #dcfce7 !important;
    border-color: #86efac !important;
    color: #16a34a !important;
}

/* Cores de texto do Review */
.post-content-review {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Listas (ul, ol, li) no corpo do texto */
.post-content-review ul,
.post-content-review ol {
    margin: 0;
    padding-left: 30px;
}

.post-content-review ul {
    list-style-type: disc;
}

.post-content-review ol {
    list-style-type: decimal;
}

.post-content-review li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.post-content-review ul ul,
.post-content-review ol ol,
.post-content-review ul ol,
.post-content-review ol ul {
    margin-top: 10px;
    margin-bottom: 0;
}

.post-content-review h1,
.post-content-review h2,
.post-content-review h3,
.post-content-review h4 {
    color: var(--color-primary);
    font-family: var(--font-title);
}

/* Estilos para Tabelas dentro do conteúdo */
.post-content-review table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    overflow-x: auto;
    display: block;
}

.post-content-review table th,
.post-content-review table td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.post-content-review table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

.post-content-review table tr:nth-child(even) {
    background-color: #f1f5f9;
}

@media (min-width: 768px) {
    .post-content-review table {
        display: table;
    }
}

/* --- ESTILOS EXCLUSIVOS: -DETALHES --- */
.product-details-grid-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .product-details-grid-detalhes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.desc-content-detalhes p {
    margin-bottom: 1rem;
}

.desc-content-detalhes ul,
.desc-content-detalhes ol {
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.desc-content-detalhes ul {
    list-style-type: disc;
}

.desc-content-detalhes ol {
    list-style-type: decimal;
}

.desc-content-detalhes li {
    margin-bottom: 0.5rem;
}


/* --- ESTILOS EXCLUSIVOS: -ACHADINHOS --- */
.btn-outline-achadinhos {
    background: transparent !important;
    color: #666 !important;
    border: 1px solid #ccc !important;
    transition: all 0.2s ease;
}

.btn-outline-achadinhos:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
    border-color: #999 !important;
}

/* --- ESTILOS EXCLUSIVOS: -SOBRE --- */
.about-modern-wrapper-sobre {
    margin-bottom: 60px;
}

.about-text-content-sobre {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

.lead-text-modern-sobre {
    font-size: 1.35rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.6;
}

.about-text-content-sobre p {
    margin-top: 0;
    margin-bottom: 1.3rem;
}

/* Suporte completo para output do editor TinyMCE */
.about-text-content-sobre .tm-align-justify {
    text-align: justify;
}

.about-text-content-sobre .tm-align-center {
    text-align: center;
}

.about-text-content-sobre .tm-align-right {
    text-align: right;
}

/* Listas — tinyMCE */
.about-text-content-sobre ol,
.about-text-content-sobre ul {
    padding-left: 1.8em;
    margin-bottom: 1.3rem;
    list-style: none;
}

.about-text-content-sobre li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

/* Bullet list (bolinhas) */
.about-text-content-sobre li[data-list="bullet"] {
    list-style-type: disc;
    list-style-position: outside;
    display: list-item;
}

/* Ordered list (números) */
.about-text-content-sobre li[data-list="ordered"] {
    list-style-type: decimal;
    list-style-position: outside;
    display: list-item;
}

/* Fallback para ul/ol normais sem data-list */
.about-text-content-sobre ul>li:not([data-list]) {
    list-style-type: disc;
}

.about-text-content-sobre ol>li:not([data-list]) {
    list-style-type: decimal;
}

/* Indentação de lista do Quill */
.about-text-content-sobre .tm-indent-1 {
    padding-left: 2em;
}

.about-text-content-sobre .tm-indent-2 {
    padding-left: 4em;
}

.about-text-content-sobre .tm-indent-3 {
    padding-left: 6em;
}

.about-text-content-sobre .tm-indent-4 {
    padding-left: 8em;
}

/* Headings do Quill */
.about-text-content-sobre h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0 0.8rem;
}

.about-text-content-sobre h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.2rem 0 0.6rem;
}

.about-text-content-sobre h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #334155;
    margin: 1rem 0 0.5rem;
}

/* Formatação inline */
.about-text-content-sobre strong {
    font-weight: 700;
    color: #1e293b;
}

.about-text-content-sobre em {
    font-style: italic;
}

.about-text-content-sobre u {
    text-decoration: underline;
}

.about-text-content-sobre s {
    text-decoration: line-through;
}

.about-text-content-sobre a {
    color: #0345bf;
    text-decoration: underline;
}

.about-text-content-sobre a:hover {
    color: #0a679b;
}

/* Blockquote */
.about-text-content-sobre blockquote {
    border-left: 4px solid #0345bf;
    padding: 10px 20px;
    margin: 1.2rem 0;
    color: #64748b;
    font-style: italic;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}

/* Remove espaço de parágrafos vazios */
.about-text-content-sobre p:empty,
.about-text-content-sobre p>br:only-child {
    display: none;
    margin: 0;
}

.mission-highlight-sobre {
    margin: 45px 0;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    border-left: 5px solid var(--color-blue, #0A679B);
}

.mission-highlight-sobre p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
}

/* Card Moderno para Nota de Rodapé */
.modern-footer-card-sobre {
    margin-top: 60px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.modern-footer-card-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0345bf, #0a679b);
}

.modern-footer-card-sobre .card-icon-sobre {
    width: 45px;
    height: 45px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modern-footer-card-sobre .card-icon-sobre i {
    font-size: 1.4rem;
    color: #0345bf;
}

.modern-footer-card-sobre .card-text-sobre {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    font-style: italic;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .page-title-internal {
        font-size: 2.25rem;
    }

    .lead-text-modern-sobre {
        font-size: 1.2rem;
    }

    .mission-highlight-sobre p {
        font-size: 1.15rem;
    }
}

/* --- ESTILOS EXCLUSIVOS: -404 --- */
.error-404-404 {
    min-height: calc(100vh - var(--header-h) - 80px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
}

.error-404-404::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-blue);
    z-index: 0;
}

.err-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    animation: fadeUp .55s cubic-bezier(.4, 0, .2, 1) both;
}

/* Container visual para sobreposição */
.err-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    padding: 40px 0;
}

/* Número massivo no fundo */
.err-code-404 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: clamp(8rem, 25vw, 16rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(3, 69, 191, .07);
    letter-spacing: -8px;
    user-select: none;
    z-index: 0;
    animation: fadeUp .4s cubic-bezier(.4, 0, .2, 1) both;
}

/* Logo em destaque sobre o 404 */
.err-logo {
    position: relative;
    z-index: 2;
    animation: fadeUp .5s .1s cubic-bezier(.4, 0, .2, 1) both;
}

.err-logo img {
    max-width: 250px;
    height: auto;
    display: inline-block;
}

.err-title-404 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
    animation: fadeUp .5s .15s cubic-bezier(.4, 0, .2, 1) both;
}

.err-desc-404 {
    font-size: 1rem;
    color: var(--color-gray-md);
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeUp .5s .2s cubic-bezier(.4, 0, .2, 1) both;
}

/* Contador de redirecionamento */
.err-redirect-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeUp .5s .28s cubic-bezier(.4, 0, .2, 1) both;
}

.err-redirect-text-404 {
    font-size: .95rem;
    color: var(--color-gray-md);
    margin: 0;
}

.err-redirect-text-404 strong {
    font-size: 1.2rem;
    color: var(--color-blue);
    font-family: var(--font-title);
    font-weight: 900;
    display: inline-block;
    min-width: 1.5ch;
    text-align: center;
    transition: transform .2s, color .2s;
}

.err-redirect-text-404 strong.pulse {
    transform: scale(1.3);
    color: var(--color-red, #B23544);
}

.err-redirect-link-404 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--color-blue);
    color: var(--color-white) !important;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.err-redirect-link-404:hover {
    background: var(--color-blue-dk);
    transform: translateY(-2px);
}

/* separador horizontal entre código e ícone */
.err-inner::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-blue);
    margin: 0 auto 28px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Acessibilidade: respeitar preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .err-logo {
        animation: none;
    }

    .err-inner,
    .err-code-404,
    .err-logo,
    .err-title-404,
    .err-desc-404,
    .err-redirect-404 {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .err-redirect-text-404 strong {
        transition: none;
    }
}

/* --- ESTILOS EXCLUSIVOS: CONTATO --- */
/* Estilo do contador de caracteres */
.char-counter {
    font-size: 0.78rem;
    color: #888;
    text-align: right;
    margin-top: 4px;
    transition: color 0.2s ease;
}

/* Cor ao atingir o limite de caracteres */
.char-counter.char-limit {
    color: #e74c3c;
    font-weight: 600;
}

/* Feedback visual de erro no textarea quando URL é detectada */
#ct-mensagem.url-detected {
    border-color: #f0a500 !important;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.20);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Animação do alerta de URL */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Caixa de alerta de URL */
.url-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(240, 165, 0, 0.10);
    border: 1px solid rgba(240, 165, 0, 0.45);
    color: #996600;
    font-size: 0.84rem;
    line-height: 1.45;
    animation: fadeInDown 0.28s ease both;
}

.url-alert i {
    margin-top: 2px;
    flex-shrink: 0;
    color: #f0a500;
    font-size: 0.95rem;
}

/* Estado desabilitado do botão de envio */
.btn-contact-submit:disabled,
.btn-contact-submit[disabled] {
    background: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #e5e7eb !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    box-shadow: none !important;
    pointer-events: none;
    transition: background 0.25s ease, opacity 0.25s ease;
}

/* --- ESTILOS EXCLUSIVOS: TITULOS INTERNOS --- */
.page-title-internal {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-blue);
    font-weight: 800;
}

/* --- ESTILOS DA PÁGINA SHOP --- */

/* Botão Shop Premium (Menu) */
.btn-premium-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-blue) !important;
    color: var(--color-white) !important;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: none !important;
    transition: opacity 0.3s ease;
}

.btn-premium-shop:hover {
    opacity: 0.8 !important;
}

/* Override mobile: centraliza e adiciona espaço no botão Shop */
@media (max-width: 991px) {
    .site-nav .nav-list>li>a.btn-premium-shop {
        justify-content: center;
        margin: 12px 24px;
        width: calc(100% - 48px);
        border-radius: 30px;
        padding: 14px 20px;
        border-left: none !important;
    }
}

/* Grid do Shop */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Card Produto Shop */
.card-product-shop {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-product-shop:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(3, 69, 191, 0.2);
}

.shop-price-display {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-blue);
    margin: 8px 0 16px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.shop-price-display .currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gray-dk);
}

/* --- ACHADINHO DETALHES STYLES --- */
.onde-comprar-title-detalhes {
    font-weight: 600;
    color: var(--color-gray-dk);
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

/* --- ESTILOS DO FORMULÁRIO DE CONTATO (Premium) --- */
.form-modern {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group-contato {
    flex: 1;
    margin-bottom: 0;
}

.form-group-contato {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-label-contato {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.form-label-contato span {
    color: #ef4444;
    /* Vermelho para obrigatório */
}

.form-control-contato {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-contato:focus {
    background: var(--color-white);
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(3, 69, 191, 0.1);
}

.form-control-contato::placeholder {
    color: #94a3b8;
}

textarea.form-control-contato {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-gray-md);
    margin-top: 6px;
    font-weight: 500;
}

.char-limit {
    color: #ef4444;
}

.btn-contact-submit {
    width: fit-content;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .form-modern {
        padding: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-row .form-group-contato {
        margin-bottom: 0;
    }
}

/* --- SEO BLOCKS --- */
.section-seo {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--color-border);
    margin-top: 20px;
}

.seo-accordion {
    width: 100%;
}

.seo-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    color: #777;
    text-align: left;
    transition: color 0.3s;
}

.seo-accordion-header:hover {
    color: var(--color-blue);
}

.seo-accordion-header h2 {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    color: inherit;
}

.seo-accordion-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: inherit;
}

.seo-accordion.active .seo-accordion-icon {
    transform: rotate(45deg);
}

.seo-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.seo-accordion.active .seo-accordion-content {
    max-height: 1500px;
    padding-bottom: 10px;
}

.seo-accordion-content p {
    color: #999;
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}

/* --- REVIEW PAGE STYLES --- */
.post-detail-review {
    max-width: 860px;
    margin: 0 auto;
}

.post-meta-review {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-author-wrapper-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.post-author-img-review {
    height: 38px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post-author-name-review {
    color: var(--color-black);
    font-size: 0.95rem;
}

.post-cats-wrapper-review {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.post-cat-link-review {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 500;
}

.post-date-wrapper-review,
.post-views-wrapper-review {
    font-size: 0.9rem;
}

.btn-affiliate-review {
    margin: 4px 6px 4px 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-affiliate-fallback-review {
    margin: 4px 0;
    text-decoration: none;
}

.review-product-banner {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin: 32px 0 0;
    background: #ffffff;
    gap: 20px;
}

.review-product-img-wrap-review {
    width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-product-img-review {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-content-review {
    flex-grow: 1;
}

.review-product-title-review {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.review-product-btns-review {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tags-container-review {
    margin-top: 40px;
    border-top: 1px solid #edf2f7;
    padding-top: 30px;
}

.tags-title-review {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- ACHADINHOS PAGE STYLES --- */
.filter-wrapper-achadinhos {
    margin-bottom: 40px;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-form-achadinhos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group-achadinhos {
    flex: 1;
    min-width: 180px;
}

.filter-group-achadinhos.search {
    min-width: 200px;
}

.filter-label-achadinhos {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-dk);
    margin-bottom: 8px;
}

.filter-input-achadinhos {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-black);
    background-color: var(--color-white);
    outline: none;
    transition: all 0.2s ease;
}

.filter-input-achadinhos:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(122, 117, 181, 0.15);
}

.filter-actions-achadinhos {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.filter-btn-achadinhos {
    padding: 0 24px !important;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
}

.filter-btn-clear-achadinhos {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.empty-state-achadinhos {
    text-align: center;
    padding: 60px 0;
}

.btn-stacked-affiliate-achadinhos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-stacked-details-achadinhos {
    margin-top: 8px;
}

/* --- ACHADINHO DETALHES STYLES --- */
.main-content-detalhes {
    max-width: 960px;
    margin: 120px auto 0;
    padding-top: 20px;
}

.product-image-wrapper-detalhes {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-img-detalhes {
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.no-image-placeholder-detalhes {
    color: var(--color-gray-md);
}

.product-meta-detalhes {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-brand-detalhes {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-pill-detalhes {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue);
    background: var(--color-blue-soft);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-detalhes {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-black);
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.product-price-display-detalhes {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.currency-detalhes {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gray-dk);
}

.affiliate-links-stacked-detalhes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-stacked-detalhes {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-desc-card-detalhes {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    margin-top: 1rem;
}

.desc-title-detalhes {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.desc-title-underline-detalhes {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color-blue);
    border-radius: 2px;
}

.desc-content-detalhes {
    color: var(--color-gray-dk);
    line-height: 1.8;
}

.review-link-wrapper-detalhes {
    margin-top: 30px;
    text-align: left;
}

.btn-review-detalhes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 50px;
}

.section-title-relacionados-detalhes {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

.card-title-link-detalhes {
    text-decoration: none;
    color: inherit;
}

.shop-price-display-detalhes {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-blue);
    margin: 8px 0 16px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.shop-currency-detalhes {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gray-dk);
}

.btn-stacked-relacionados-detalhes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-stacked-details-relacionados-detalhes {
    margin-top: 8px;
}

/* --- HERO TITLE MOBILE TRUNCATION --- */
.hero-title-mobile {
    display: none;
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-title-desktop {
        display: none;
    }

    .hero-title-mobile {
        display: inline;
    }

    .hero-content-home a.btn-primary {
        margin-bottom: 30px;
    }
}

/* --- HOME PAGE EXTRACTED INLINE STYLES --- */
.hero-image-link-home {
    display: contents;
}

.hero-btn-home {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
}

.hero-empty-state-home {
    text-align: center;
    padding: 40px;
}

/* Força todos os slides do swiper de produtos a terem a mesma altura */
.product-swiper>.swiper-wrapper {
    align-items: stretch;
}

.product-slide-home {
    height: auto !important;
    display: flex;
}

.product-link-home {
    display: block;
}

.reviews-section-home {
    margin-bottom: 3rem;
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .reviews-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}