/* Achadinhos Review — Site Público | Design System
   Versão: v1.20.5 */

/* Google Fonts moved to layout files for dynamic loading */

/* CSS Variables */
:root {
    --color-black: #252525;
    --color-blue: #0A679B;
    --color-blue-dk: #074e76;
    --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;
}

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;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-blue);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.65rem;
    color: var(--color-gray-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .site-logo-text {
        display: none;
    }
}

/* 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);
}

.site-nav .nav-list>li>a.nav-highlight {
    color: var(--color-white);
    background: var(--color-blue);
}

.site-nav .nav-list>li>a.nav-highlight:hover {
    color: var(--color-blue) !important;
    background: var(--color-white) !important;
    border: 2px solid var(--color-blue) !important;
    transform: none !important;
}

/* 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);
    }

    /* CTA Planos */
    .nav-cta {
        padding: 20px 24px;
        border-bottom: none !important;
    }

    .nav-cta .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 14px !important;
        font-size: 1rem !important;
        box-shadow: 0 6px 20px rgba(10, 103, 155, 0.2);
    }

    /* 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 */
.site-hero {
    margin-top: var(--header-h);
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #052c42;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #052c42 0%, #074e76 100%);
    opacity: 0.95;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
}

.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;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-line {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 1px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Marca d'água decorativa do hero */
.hero-watermark {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    /* Ocupa metade direita sem tirar espaço do conteúdo */
    z-index: 2;
    /* Atrás do .hero-content (z-index: 5) */
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-watermark img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.13;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 50%);
}

@media (max-width: 768px) {
    .hero-watermark {
        width: 80%;
        opacity: 0.07;
    }
}

/* 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-outline-blue {
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.btn-outline-blue:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-gray-bg);
}

.section-header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.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-bar {
    background: var(--color-white);
    padding: 48px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(10, 103, 155, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-item {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--color-blue-soft);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--color-blue);
    color: var(--color-white);
    transform: rotate(10deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.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) {
    .stats-bar {
        padding: 60px 0;
    }

    .stat-item {
        padding: 30px 20px;
    }
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.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);
}

/* EDITORIAL NEWS SECTION (HOME) */
.news-main-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Featured Post (Left) */
.news-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.featured-link {
    display: block;
}

.featured-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: var(--color-white);
}

.featured-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.featured-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.news-category-label {
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--color-white);
    background: var(--color-red-dk);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-category-label-sm {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-blue);
}

.list-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.list-item-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-md);
}

/* Sidebar List (Right) */
.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-list-item {
    transition: var(--transition);
    padding: 10px;
    border-radius: var(--radius-md);
}

.news-list-item:hover {
    background: var(--color-gray-bg);
}

.list-item-link {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: center;
}

.list-item-img-wrapper {
    width: 140px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.list-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
    transition: var(--transition);
}

.news-list-item:hover .list-item-title {
    color: var(--color-blue);
}

/* Placeholders */
.featured-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-gray-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-md);
    font-size: 4rem;
}

.list-item-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-gray-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-md);
    font-size: 2rem;
}

@media (max-width: 991px) {
    .news-main-layout {
        grid-template-columns: 1fr;
    }

    .featured-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .list-item-link {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }

    .list-item-img-wrapper {
        width: 100px;
        height: 70px;
    }

    .list-item-title {
        font-size: 0.95rem;
    }
}

/* ANIMATIONS & CTA */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.cta-box {
    background: var(--color-blue);
    padding: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--color-white);
    background-image: linear-gradient(45deg, var(--color-blue), var(--color-blue-dk));
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-56 {
    margin-top: 56px;
}

@media (max-width: 1024px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }
}

/* 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;
}

.page-hero-title {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* CONTENT AREA */
.content-area {
    padding: 64px 0;
}

.content-prose {
    max-width: 800px;
    margin: 0 auto;
}

/* Info Note (Modern Footer) */
.info-note {
    background: #f8faff;
    border-left: 4px solid var(--color-blue);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 48px;
}

.info-note-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.info-note-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--color-gray-dk);
    font-size: .95rem;
}

.info-note-list li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .pdf-viewer-container {
        height: 500px;
    }
}

.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);
}

/* LIST ITEMS */
.list-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.list-item:hover {
    border-color: rgba(3, 69, 191, .3);
    box-shadow: var(--shadow-sm);
}

.list-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(3, 69, 191, .08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.list-item-body {
    flex: 1;
    min-width: 0;
}

.list-item-title {
    font-family: var(--font-title);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-item-meta {
    font-size: .8125rem;
    color: var(--color-gray-md);
}

.list-item-action {
    flex-shrink: 0;
}

/* 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;
    }
}

/* DIRETORIA */
.diretoria-section {
    margin-bottom: 64px;
}

.diretoria-section-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.diretoria-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.diretoria-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.diretoria-cargo {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gray-dk);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.diretoria-nome {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
}

/* Alerta de Gestão Moderno */
.diretoria-alert {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-gray-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-blue);
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.diretoria-alert:hover {
    box-shadow: var(--shadow-md);
    background: #fff;
    transform: translateX(5px);
}

.diretoria-alert-icon {
    width: 48px;
    height: 48px;
    background: rgba(3, 69, 191, .1);
    color: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.diretoria-alert-text {
    font-size: 1rem;
    color: var(--color-gray-dk);
    line-height: 1.5;
}

.diretoria-alert-text strong {
    color: var(--color-blue);
    font-weight: 700;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.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;
}

.modal-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-banner-placeholder {
    width: 100%;
    height: 200px;
    background: #f1f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-blue);
}

.modal-body {
    padding: 30px;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-info {
    margin-bottom: 30px;
}

.modal-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-gray-dk);
    margin-bottom: 12px;
}

.modal-info i {
    color: var(--color-blue);
    width: 20px;
}

.modal-contact-section {
    background: #f8faff;
    border: 1px solid rgba(3, 69, 191, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.modal-contact-section h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    margin-top: 4px;
    color: var(--color-gray-md);
    width: 16px;
}

.contact-item span {
    font-size: 0.9375rem;
    color: var(--color-black);
    line-height: 1.4;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {
    .modal-body {
        padding: 24px;
    }

    .modal-banner {
        height: 180px;
    }
}

/* Footer styles moved and consolidated to lines 1071+ */

.footer-privacy a:hover {
    color: rgba(255, 255, 255, .8);
}

/* NOTÍCIA DETALHE */
.post-detail {
    display: block;
}

.post-header {
    margin-bottom: 32px;
}

.post-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--color-black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .875rem;
    color: var(--color-gray-md);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 28px;
}

.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 h2,
.post-content h3 {
    font-family: var(--font-title);
    color: var(--color-primary);
}

.post-content img {
    border-radius: var(--radius-md);
    margin: 16px 0;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--color-gray-md);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: .4;
}

.empty-state p {
    font-size: 1rem;
}

/* 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);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover,
    .card:hover,
    .club-card:hover {
        transform: none;
    }
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.text-blue {
    color: var(--color-blue);
}

.text-red {
    color: var(--color-red);
}

.text-muted {
    color: var(--color-gray-md);
}

/* --- Unified Contact Cards (WhatsApp & Location) --- */
.contact-card-modern {
    text-align: center;
    padding: 64px 40px;
    background: #f9fafb;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-bottom: 32px;
    position: relative;
}

.card-with-line {
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
}

.card-modern-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-modern-header i {
    font-size: 2.5rem;
}

.card-modern-header i.color-whatsapp {
    color: #25D366;
}

.card-modern-header i.color-blue {
    color: var(--color-blue);
}

.card-modern-header h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.card-modern-desc {
    font-size: 1.25rem;
    color: var(--color-gray-dk);
    font-weight: 500;
    margin-bottom: 12px;
}

.card-modern-sub {
    font-size: 1.125rem;
    color: var(--color-gray-md);
    margin-bottom: 32px;
}

/* Botão de Contato - Tamanho Único */
.btn-contact-submit {
    min-width: 220px;
    width: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Alert box */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success {
    background: #edfaf3;
    border-left: 4px solid #22c55e;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border-left: 4px solid var(--color-red);
    color: #991b1b;
}

.alert-info {
    background: rgba(3, 69, 191, .06);
    border-left: 4px solid var(--color-blue);
    color: var(--color-blue-dk);
}

/* RESPONSIVE HELPERS */
@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .diretoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .diretoria-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }
}

/* NOTÍCIA DETALHE */
.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-sm);
    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;
}

.section-news {
    padding: 48px 0px;
    background: var(--color-gray-bg);
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.news-header-left {
    display: flex;
    flex-direction: column;
}

.news-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: gap var(--transition);
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.news-see-all:hover {
    gap: 14px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Responsividade específica para os cards */
@media (max-width: 768px) {
    .eventos-grid-modern {
        grid-template-columns: 1fr;
    }

    .evento-card-modern {
        flex-direction: column;
    }

    .evento-card-img-wrap {
        width: 100%;
        height: 200px;
    }
}

/* RESPONSIVE — Homepage V2 */
@media (max-width: 1023px) {
    .hero-diagonal {
        width: 50%;
        right: -60px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 4px;
    }

    .news-item {
        min-width: 280px;
    }

    .cta-ranking-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-ranking-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        min-height: auto;
        padding: 40px 0 80px;
    }

    .hero-v2-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-diagonal {
        width: 100%;
        right: 0;
        clip-path: polygon(0 70%, 100% 50%, 100% 100%, 0% 100%);
        opacity: .5;
    }

    .hero-v2-stats {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-stat {
        padding: 16px 20px;
    }

    .hero-stat-divider {
        width: 1px;
        height: 40px;
    }

    .hero-scroll {
        display: none;
    }

    .section-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .section-manifesto::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-v2-title-lg {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-v2-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary {
        width: 100%;
    }

    .news-list {
        flex-direction: column;
    }

    .news-item {
        min-width: auto;
    }
}

/* ESTILOS DE CONTEÚDO (NOTÍCIAS E NOTAS) */
.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 .ql-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;
}

/* WhatsApp Hero Section */
.whatsapp-hero {
    background: linear-gradient(135deg, #cadae7 0%, #f4f1f1 100%);
    color: #252525;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-h);
}

.whatsapp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.whatsapp-hero .container {
    position: relative;
    z-index: 2;
}

.whatsapp-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    color: #25d366;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.whatsapp-hero h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-title);
    color: #252525;
}

.whatsapp-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: #252525;
}

.btn-whatsapp-large {
    background: #25d366;
    color: #ffffff;
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp-large:hover {
    background: #f0f0f0;
    color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 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;
}

/* PLANS HERO (MODERN VERSION) */
.section-plans-hero {
    padding: 48px 0;
    background: var(--color-gray-bg);
    position: relative;
    overflow: hidden;
}

.section-plans-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(3, 69, 191, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.plans-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dividido igualmente para evitar sobreposição */
    gap: 50px;
    /* Equilíbrio entre os itens */
    align-items: stretch;
    /* Garante que as colunas tenham a mesma altura */
}

.plans-hero-inner>* {
    min-width: 0;
    /* Evita que o conteúdo quebre o grid */
}

.plans-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-black);
    aspect-ratio: 16/9;
}

.plans-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.plans-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centraliza o conteúdo verticalmente dentro da altura do vídeo */
    gap: 20px;
    /* Reduzido para controlar melhor a altura total */
}

.plans-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-blue-soft);
    color: var(--color-blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: -10px;
}

.plans-hero-title {
    font-family: var(--font-title);
    font-size: 2rem;
    /* Fixado em 2rem conforme solicitado */
    font-weight: 900;
    color: var(--color-black);
    line-height: 1.1;
    margin: 0;
}

.plans-hero-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray-dk);
    margin: 0;
}

.plans-info-group {
    display: flex;
    flex-direction: row;
    /* Lado a lado */
    flex-wrap: wrap;
    gap: 24px;
}

.plans-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--color-blue);
    background: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.plans-info-item i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .plans-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .plans-label {
        margin: 0 auto;
    }

    .plans-info-group {
        align-items: center;
        justify-content: center;
        /* Centraliza lado a lado no mobile */
    }
}

/* SEÇÃO ATLETAS HOME (FIFA STYLE CAROUSEL) */
.section-atletas-home {
    background: #f8fafc;
    position: relative;
    padding: 48px 0px 28px;
}

.section-atletas-home .section-header {
    margin-bottom: 28px !important;
}

.athletes-carousel-wrapper {
    padding: 20px 0;
}

.athletesSwiper {
    padding: 40px 10px 40px !important;
    /* Reduzido padding inferior já que não tem dots */
}

.athletesSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* FIFA CARD REUSABLE STYLES */
.fifa-card-container {
    perspective: 1000px;
    width: 100%;
    margin: 0 auto;
}

.fifa-card {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0f172a 100%);
    border-radius: 20px;
    clip-path: polygon(10% 0, 90% 0, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
    padding: 4px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #fbbf24 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
}

.fifa-card-container:hover .fifa-card {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.fifa-card-container:hover .card-glow {
    opacity: 1;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0f172a;
    clip-path: polygon(10% 0, 90% 0, 100% 15%, 100% 85%, 50% 100%, 0 85%, 0 15%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.card-badge {
    position: absolute;
    top: 30px;
    left: 25px;
    color: #fbbf24;
    font-size: 1.5rem;
    z-index: 5;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.card-img-wrapper {
    width: 100%;
    height: 60%;
    overflow: hidden;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.atleta-no-foto-fifa {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #334155;
}

.card-content {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: -20px;
}

.atleta-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.atleta-divider {
    height: 2px;
    width: 60px;
    background: #fbbf24;
    margin: 8px auto;
    box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.atleta-category {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.card-club-logo {
    width: auto;
    height: 30px;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
}

@media (max-width: 768px) {
    .section-atletas-home {
        padding: 60px 0;
    }
}

/* SEÇÃO PARCEIROS (LOGOS CAROUSEL) */
.section-partners {
    background: var(--color-white);
    padding: 48px 0px 96px;
    border-top: 1px solid #f1f5f9;
}

.partners-carousel-wrapper {
    padding-top: 40px;
}

.partnersSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.7;
    border: 1px solid transparent;
}

.partner-card:hover {
    filter: grayscale(0);
    opacity: 1;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-color: #e2e8f0;
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* COMUNICADOS (MODERN SPORT STYLE) */

.comunicados-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 40px auto;
}

.comunicado-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comunicado-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--color-blue);
    z-index: 2;
}

.comunicado-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.comunicado-card.expirado {
    opacity: 0.6;
    filter: grayscale(0.8);
}

.comunicado-header {
    background: #f8fafc;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 12px;
}

.comunicado-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-dk);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comunicado-date i {
    color: var(--color-blue);
}

.comunicado-expiry {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ecfdf5;
    color: #059669;
    transform: skewX(-10deg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comunicado-expiry i {
    transform: skewX(10deg);
}

.comunicado-expiry.expired {
    background: #fef2f2;
    color: #dc2626;
}

.comunicado-body {
    padding: 32px;
}

.comunicado-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.comunicado-content-wrapper {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dk);
}

.comunicado-content-wrapper p {
    margin-bottom: 16px;
}

.comunicado-footer {
    background: #f8fafc;
    padding: 16px 32px;
    display: flex;
    align-items: center;
}

.comunicado-tag {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comunicado-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--color-blue);
}

@media (max-width: 768px) {
    .comunicado-body {
        padding: 24px;
    }

    .comunicado-title {
        font-size: 1.4rem;
    }

    .comunicado-header {
        padding: 16px 24px;
    }
}

/* Share Button */
.btn-share-story {
    margin-left: auto;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--color-gray-dk);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-share-story:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

/* STORY TEMPLATE (1080x1920) */
.story-template {
    width: 1080px;
    height: 1920px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.story-header {
    background: #fff;
    padding: 80px 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 20;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-logo {
    height: 200px;
    width: auto;
}

.story-badge {
    color: #0A679B;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
}

.story-badge i {
    color: #CA3438;
    font-size: 2.2rem;
}

.story-body {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.story-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A679B 0%, #002D44 100%);
    opacity: 1;
    z-index: 1;
}

.story-bg-overlay::after {
    content: 'Achadinhos Review';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 40rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.story-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px;
}

.story-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-date-badge {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-divider {
    width: 200px;
    height: 10px;
    background: #CA3438;
    margin-bottom: 60px;
}

.story-text {
    font-size: 2.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    white-space: pre-wrap;
}

.story-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-bottom: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.story-url {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

/* Empty State Sports Style */
.no-results-container {
    text-align: center;
    padding: 100px 40px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 2px solid #e2e8f0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.no-results-container::after {
    content: 'Achadinhos Review';
    position: absolute;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    z-index: 1;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2.5rem;
    color: #cbd5e1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.no-results-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* SHOP PROMO SECTION — Modern Ad Style */
.section-shop-promo {
    padding: 48px 0;
    background: var(--color-gray-bg);
}

.shop-promo-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    position: relative;
    margin: 0 15px;
}

.shop-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.shop-promo-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.shop-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(10, 103, 155, 0.1);
    color: var(--color-blue);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 25px;
    text-align: center;
}

.shop-promo-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.shop-promo-desc {
    font-size: 1.15rem;
    color: var(--color-gray-dk);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.shop-promo-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: #111;
    overflow: hidden;
}

.image-bg-effect {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, var(--color-blue) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulseBG 8s infinite alternate ease-in-out;
}

@keyframes pulseBG {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1.1) rotate(5deg);
    }
}

.shop-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.shop-promo-card:hover .shop-promo-image img {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .shop-promo-content {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .shop-promo-grid {
        grid-template-columns: 1fr;
    }

    .shop-promo-image {
        min-height: 400px;
        order: -1;
    }

    .shop-promo-content {
        text-align: center;
        padding: 50px 30px;
    }

    .shop-promo-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .section-shop-promo {
        padding: 60px 0;
    }

    .shop-promo-title {
        font-size: 2rem;
    }

    .shop-promo-image {
        min-height: 300px;
    }
}

/* 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: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.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);
}

.achadinhos-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
}

.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-aliexpress {
    background-color: #E43225 !important;
    color: #ffffff !important;
    border-color: #E43225 !important;
}

.btn-aliexpress:hover {
    background-color: #F7971D !important;
    border-color: #F7971D !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 (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%;
    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: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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: 200px;
    overflow: hidden;
}

.review-img-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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: 60px;
}

.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;
    }
}

/* 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;
}

.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-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 Quill */
.about-text-content-sobre .ql-align-justify {
    text-align: justify;
}

.about-text-content-sobre .ql-align-center {
    text-align: center;
}

.about-text-content-sobre .ql-align-right {
    text-align: right;
}

/* Listas — Quill 2.x usa sempre <ol> com data-list="bullet" ou "ordered" */
.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 .ql-indent-1 {
    padding-left: 2em;
}

.about-text-content-sobre .ql-indent-2 {
    padding-left: 4em;
}

.about-text-content-sobre .ql-indent-3 {
    padding-left: 6em;
}

.about-text-content-sobre .ql-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 --- */
/* ---- 404 page ---- */
.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;
}

/* faixa azul vertical decorativa à esquerda */
.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;
}

/* 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);
}