/* ================================================
   WINUP BLOG - MOBILE FIRST CSS
   Base: Mobile | Expansão: min-width queries
   ================================================ */

/* ================================================
   RESET & BASE (Mobile First)
   ================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography - Mobile First */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 0.75em;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

a:hover,
a:focus {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.site-content-wrapper {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* ================================================
   TICKER DE COTAÇÕES
   ================================================ */
.ticker-bar {
    background: var(--color-text);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 28px;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
    animation: ticker-scroll 20s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ticker-label {
    font-weight: 700;
    color: var(--color-text-muted);
}

.ticker-value {
    font-weight: 600;
    color: #fff;
}

.ticker-change {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.3rem;
    border-radius: var(--radius-sm);
}

.ticker-up {
    color: var(--color-success);
    background: rgba(34, 197, 94, 0.15);
}

.ticker-down {
    color: var(--color-destructive);
    background: rgba(212, 24, 61, 0.15);
}

/* ================================================
   HEADER (Mobile First)
   ================================================ */
.top-bar {
    display: none;
}

.site-header {
    margin-bottom: 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

/* Mobile Header: logo left, hamburger right */
.mobile-header {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

/* Logo */
.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Navbar Brand (Desktop) */
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.navbar-brand .site-logo {
    height: 44px;
}

.site-title {
    font-size: 1.25rem;
    margin: 0;
    letter-spacing: -0.5px;
    font-weight: 900;
}

.site-title a {
    color: var(--color-text);
}

.site-description {
    display: none;
}

/* Logo no Footer */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 28px;
    width: auto;
    display: block;
}

/* Header Newsletter Button - Novo Design Discreto */
.header-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: var(--tap-target);
    transition: all 0.2s ease;
}

.header-newsletter-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Header Spacer - Removed (logo is now left-aligned) */

/* Nav Secondary Links (Desktop) */
.nav-secondary-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-secondary-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-meta);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-secondary-links a:hover {
    color: var(--primary-color);
}

/* Mobile Nav Sections */
.mobile-nav-section {
    padding: 0.75rem 0;
    border-top: 1px solid var(--color-border-subtle);
}

.mobile-nav-section-title {
    display: block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-meta);
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: none;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
    min-height: var(--tap-target);
}

.mobile-nav-links a:hover {
    background: var(--color-bg-subtle);
    color: var(--primary-color);
}

/* Mobile Nav Newsletter - Novo Design Card */
.mobile-nav-newsletter {
    padding: 1rem 1.25rem;
    background: var(--gradient-newsletter);
    border-top: 1px solid var(--border-color);
}

.newsletter-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.newsletter-icon {
    font-size: 1.5rem;
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.newsletter-text strong {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
}

.newsletter-text small {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-meta);
}

.mobile-newsletter-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    text-align: center;
    min-height: var(--tap-target);
    transition: background 0.2s;
}

.mobile-newsletter-btn:hover {
    background: var(--brand-green-600);
    color: #fff;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--tap-target);
    height: var(--tap-target);
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Search Toggle Mobile */
.search-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--tap-target);
    height: var(--tap-target);
    padding: 0.5rem;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-surface);
    z-index: 10000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.is-open {
    transform: translateX(280px);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--color-bg-subtle);
}

.mobile-nav-title {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: none;
    font-size: 0.85rem;
    letter-spacing: 0;
}

.mobile-nav-close {
    width: var(--tap-target);
    height: var(--tap-target);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
}

.mobile-navigation {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

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

.mobile-navigation li {
    border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    min-height: var(--tap-target);
    transition: background 0.2s;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus {
    background: var(--color-bg-subtle);
    color: var(--primary-color);
}

/* Active menu item — green highlight (mobile) */
.mobile-navigation .current-menu-item > a,
.mobile-navigation .current_page_item > a,
.mobile-navigation .current-menu-ancestor > a {
    color: var(--brand-green-400);
    border-left: 3px solid var(--brand-green-400);
    background: rgba(34, 197, 94, 0.08);
}

.mobile-nav-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--color-bg-subtle);
    display: flex;
    gap: 1rem;
}

.mobile-nav-footer a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    min-height: var(--tap-target);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-footer a:last-child {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Desktop Navigation - Hidden on Mobile */
.desktop-only {
    display: none;
}

/* Navigation - Mobile First */
.nav-container-wrapper {
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-bg-subtle);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0 0.5rem;
    white-space: nowrap;
}

.main-navigation a {
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-text);
    padding: 0.5rem 0;
    display: inline-block;
    min-height: var(--tap-target);
    display: flex;
    align-items: center;
}

.header-tools {
    display: flex;
    align-items: center;
}

.search-toggle {
    padding: 0.75rem;
    min-width: var(--tap-target);
    min-height: var(--tap-target);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   HOMEPAGE GRID (Mobile First)
   ================================================ */
.posts-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Post - Mobile */
.post-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.post-hero .post-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius);
}

.post-hero .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    order: 2;
}

.cat-label,
.cat-label-small {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--brand-green-400);
    margin-bottom: 0.5rem;
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(34, 197, 94, 0.15);
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.entry-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    line-height: 1.5;
}

.entry-meta,
.entry-meta-small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
}

/* Secondary Grid - Mobile (1 column) */
.secondary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.post-grid-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.post-grid-item .post-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-muted);
}

.post-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-grid-item .entry-header {
    flex: 1;
    min-width: 0;
}

.grid-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* ================================================
   SINGLE POST (Mobile First)
   ================================================ */
.single-layout-wrapper {
    display: block;
}

.article-column {
    max-width: 100%;
}

/* Breadcrumb */
.winup-breadcrumb {
    font-size: 0.75rem;
    color: var(--text-meta);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.winup-breadcrumb a {
    color: var(--primary-color);
}

/* Article Header - Mobile */
.centered-header {
    text-align: left;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.centered-header .entry-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.entry-subhead .lead-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-heading);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.author-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-weight: 600;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.read-time {
    font-size: 0.8rem;
    color: var(--text-meta);
}

.feature-image-wrapper {
    margin: 0 -1rem 1.5rem;
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.5rem;
    padding: 0 1rem;
    font-family: var(--font-sans);
}

/* Article Content */
.entry-content {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.entry-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1rem 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-bg-subtle);
    font-style: italic;
    border-radius: var(--radius-md);
}

/* Author Box */
.author-box {
    background: var(--color-bg-subtle);
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--radius);
}

.author-bio-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.author-bio-content h4 {
    margin-bottom: 0.5rem;
    text-transform: none;
    font-size: 0.85rem;
    letter-spacing: 0;
    font-family: var(--font-sans);
}

.author-bio-content p {
    font-size: 0.9rem;
    font-family: var(--font-sans);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.author-bio-content a {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: none;
    color: var(--primary-color);
}

/* Sidebar - Hidden on Mobile */
.single-sidebar {
    display: none;
}

/* ================================================
   ADS (Mobile First)
   ================================================ */
.winup-ad-slot {
    background: var(--color-bg-subtle);
    border: 1px dashed var(--color-border);
    padding: 0.75rem;
    text-align: center;
    margin: 1.5rem -1rem;
    max-width: calc(100% + 2rem);
}

.winup-ad-slot::before {
    content: 'Advertisement';
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* ================================================
   RELATED POSTS (Mobile First)
   ================================================ */
.winup-related-posts {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-subtle);
}

.related-posts-title {
    font-family: var(--font-heading);
    text-transform: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

/* CSS Related Posts Responsivo - 4 posts */
.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Grid 2x2 para 4 posts */
        gap: 1.5rem;
    }
}

.related-post-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Mobile: Vertical (imagem em cima) */
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--card-hover-bg);
}

@media (min-width: 768px) {
    .related-post-card {
        height: 100%;
    }
}

.related-post-link {
    display: flex;
    flex-direction: column;
    /* Mobile: Vertical */
    width: 100%;
}

@media (min-width: 768px) {
    .related-post-link {
        height: 100%;
    }
}

.related-post-thumb {
    flex-shrink: 0;
    width: 100%;
    /* Mobile: Largura total */
    height: 180px;
    /* Mobile: Altura boa para a imagem */
    overflow: hidden;
    background: var(--color-bg-muted);
}

@media (min-width: 768px) {
    .related-post-thumb {
        height: 180px;
    }
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.related-post-card:hover .related-post-thumb img {
    transform: scale(1.03);
}

.related-post-content {
    padding: 0.75rem 0.75rem 0.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    /* Garante que o texto ocupe o espaço */
}

@media (min-width: 768px) {
    .related-post-content {
        padding: 1rem;
        justify-content: flex-start;
    }
}

.related-post-cat {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-post-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.25rem 0;
    line-height: 1.25;
    color: var(--text-color);
}

@media (min-width: 768px) {
    .related-post-title {
        font-size: 1.1rem;
        margin: 0.5rem 0;
    }
}

.related-post-date {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-meta);
    margin-top: auto;
    /* Empurra data para baixo no desktop */
}

/* Related Posts Full Width Section */
.related-posts-full-width {
    padding: 2rem 1rem;
    margin-top: 2rem;
    background: var(--color-bg-subtle);
    border-top: 1px solid var(--border-color);
}

.related-posts-full-width .winup-related-posts {
    max-width: 1200px;
    margin: 0 auto;
}

.related-posts-full-width .related-posts-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .related-posts-full-width {
        padding: 3rem 2rem;
    }
}

/* ================================================
   POST NAVIGATION (Mobile First)
   ================================================ */
.post-navigation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* ================================================
   MOBILE NEWSLETTER SECTION
   ================================================ */
.mobile-newsletter-section {
    display: block;
    /* Visível no Mobile */
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-newsletter);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
}

.mobile-newsletter-section .sidebar-newsletter-box {
    text-align: center;
}

.mobile-newsletter-section .newsletter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mobile-newsletter-section .newsletter-emoji {
    font-size: 1.5rem;
}

.mobile-newsletter-section .newsletter-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-color);
}

.mobile-newsletter-section .newsletter-desc {
    font-size: 0.9rem;
    color: var(--text-meta);
    margin-bottom: 1rem;
}

.mobile-newsletter-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-newsletter-section .newsletter-form input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--color-bg-subtle);
    color: var(--color-text);
}

.mobile-newsletter-section .newsletter-form button {
    padding: 0.875rem 1rem;
    background: var(--gradient-cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-glow);
}

.mobile-newsletter-section .newsletter-form button:hover {
    background: var(--brand-green-600);
    box-shadow: var(--shadow-glow-strong);
}

.mobile-newsletter-section .newsletter-privacy {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-meta);
}

/* Ocultar no Desktop */
@media (min-width: 768px) {
    .mobile-newsletter-section {
        display: none;
    }
}

.post-navigation .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-previous,
.nav-next {
    padding: 1rem;
    background: var(--color-bg-subtle);
    border-radius: var(--radius-md);
    min-height: var(--tap-target);
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--text-meta);
    margin-bottom: 0.35rem;
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

/* ================================================
   STICKY ANCHOR AD (Mobile - Always Visible)
   ================================================ */
.winup-sticky-anchor-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--border-color);
    padding: 0.5rem;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.sticky-ad-placeholder {
    background: var(--color-bg-subtle);
    width: 320px;
    max-width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-family: var(--font-sans);
    font-size: 0.7rem;
}

.sticky-ad-close {
    position: absolute;
    top: -10px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--tap-target);
    min-height: var(--tap-target);
    margin: -11px;
    padding: 11px;
}

/* ================================================
   READING PROGRESS BAR
   ================================================ */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.reading-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.1s ease-out;
}

/* (Old .site-footer removed — replaced by .lp-footer in LP Style section) */

/* ================================================
   SIDEBAR NEWSLETTER BOX
   ================================================ */
.sidebar-newsletter-box {
    background: var(--gradient-newsletter);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.newsletter-emoji {
    font-size: 1.75rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.newsletter-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-meta);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    width: 100%;
    background: var(--color-bg-subtle);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.newsletter-form button {
    padding: 0.85rem 1rem;
    background: var(--gradient-cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-glow);
}

.newsletter-form button:hover {
    background: var(--brand-green-600);
    box-shadow: var(--shadow-glow-strong);
}

.newsletter-form button:active {
    transform: scale(0.98);
}

.newsletter-privacy {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   SIDEBAR WIDGETS (Mobile)
   ================================================ */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1rem;
    text-transform: none;
    border-top: none;
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 0 0 0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.widget li a {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.3;
    min-height: var(--tap-target);
    display: flex;
    align-items: center;
}

.widget .post-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    text-transform: none;
    display: block;
    margin-top: 0.25rem;
}

/* ================================================
   ADVERTISEMENT STYLES
   ================================================ */
.winup-ad-slot {
    margin: 0.5rem auto;
    /* Reduzido de 1.5rem */
    text-align: center;
    clear: both;
    /* Remove default backgrounds/borders if any */
    background: transparent;
    border: none;
    padding: 0;
}

.ad-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 0.25rem 0;
    /* Margin-bottom reduzido */
    width: 100%;

    /* Estilos de Texto Restaurados */
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.ad-divider::before,
.ad-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.ad-divider span {
    white-space: nowrap;
}

.ad-divider-simple {
    height: 1px;
    background: var(--color-border);
    margin: 0.25rem 0 2rem 0;
    /* Margin-top reduzido drasticamente */
    width: 100%;
    display: block;
}

/* Placeholder shimmer - Mantido para imagens de posts */
.placeholder-thumb {
    background: linear-gradient(135deg, var(--color-bg-muted) 25%, var(--color-surface-elevated) 50%, var(--color-bg-muted) 75%);
    background-size: 200% 200%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ================================================
   PAGINATION
   ================================================ */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    min-width: var(--tap-target);
    min-height: var(--tap-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.pagination .current {
    background: var(--primary-color);
    color: #fff;
}

/* ================================================
   DESKTOP ENHANCEMENTS (min-width: 768px)
   ================================================ */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .site-content-wrapper {
        margin-top: 2rem;
        margin-bottom: 4rem;
    }

    /* Show top bar on desktop */
    .top-bar {
        display: block;
    }

    .top-bar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-menu a {
        margin-left: 1.5rem;
        font-weight: 500;
    }

    /* Header */
    .site-header {
        margin-bottom: 1.5rem;
    }

    /* Hide mobile header on desktop */
    .mobile-header {
        display: none;
    }

    /* Hide mobile elements on desktop */
    .mobile-menu-toggle,
    .search-toggle-mobile,
    .mobile-nav-drawer,
    .mobile-nav-overlay {
        display: none !important;
    }

    /* Show desktop navigation */
    .desktop-only {
        display: block;
    }

    /* Navigation */
    .nav-container-wrapper {
        border-bottom: 1px solid var(--color-border);
        padding: 0.75rem 0;
        overflow: visible;
    }

    .main-navigation ul {
        gap: 2rem;
    }

    .main-navigation a {
        font-size: 0.85rem;
    }

    /* Homepage Grid */
    .posts-grid-wrapper {
        gap: 2.5rem;
    }

    .post-hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 2.5rem;
    }

    .post-hero .hero-content {
        order: -1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

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

    /* Secondary Grid - 2 columns */
    .secondary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .post-grid-item {
        flex-direction: column;
        gap: 0;
    }

    .post-grid-item .post-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        margin-bottom: 1rem;
    }

    .grid-title {
        font-size: 1.2rem;
    }

    /* Single Post */
    .centered-header {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .centered-header .entry-title {
        font-size: 2.5rem;
    }

    .author-meta-row.centered-meta {
        justify-content: center;
    }

    .feature-image-wrapper {
        margin: 0 0 2rem;
        border-radius: var(--radius);
        overflow: hidden;
    }

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

    .entry-content h2 {
        font-size: 1.75rem;
        margin-top: 2.5rem;
    }

    /* Author Box */
    .author-box {
        flex-direction: row;
        align-items: center;
        padding: 2rem;
    }

    .author-bio-avatar img {
        width: 80px;
        height: 80px;
    }

    /* Related Posts - 3 columns */
    .related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .related-post-card {
        flex-direction: column;
    }

    .related-post-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }

    .related-post-content {
        padding: 1rem;
    }

    .related-post-title {
        font-size: 1.05rem;
    }

    /* Post Navigation */
    .post-navigation .nav-links {
        flex-direction: row;
    }

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

    /* Ads */
    .winup-ad-slot {
        margin: 2rem auto;
        max-width: 336px;
        padding: 1rem;
    }

}

/* ================================================
   LARGE DESKTOP (min-width: 1100px)
   ================================================ */
@media (min-width: 1100px) {
    .site-title {
        font-size: 3.5rem;
    }

    /* Secondary Grid - 3 columns */
    .secondary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Single Post with Sidebar */
    .single-layout-wrapper {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
        max-width: 1180px;
        margin: 0 auto;
    }

    .article-column {
        max-width: 100%;
    }

    /* Show Sidebar */
    .single-sidebar {
        display: block;
        padding-top: 2rem;
    }

    .sticky-sidebar-ad {
        position: sticky;
        top: 20px;
    }

    .winup-ad-sidebar {
        background: var(--color-bg-subtle);
        border: 1px dashed var(--color-border);
        padding: 1rem;
        text-align: center;
    }

    /* Hide sticky mobile ad on desktop */
    .winup-sticky-anchor-ad {
        display: none;
    }

    .centered-header .entry-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ================================================
   WSJ-STYLE ARTICLE HEADER
   ================================================ */

/* Font variables defined in design-tokens.css
   --font-heading: system-ui (headings)
   --font-sans: Inter (body/UI)
*/

/* Container do Header WSJ */
.wsj-header {
    text-align: left;
    max-width: 680px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
}

/* 1. Categoria */
.wsj-category {
    margin-bottom: 0.5rem;
}

.wsj-category a {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-green-400);
    text-decoration: none;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-block;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.wsj-category a:hover {
    background: rgba(34, 197, 94, 0.15);
    color: var(--brand-green-400);
    box-shadow: var(--shadow-glow);
}

/* 2. Título (40px móvel, escala em desktop) */
.wsj-title {
    font-family: var(--font-wsj-title);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin: 0.35rem 0 0.5rem 0;
    letter-spacing: -0.5px;
}

/* 3. Subtítulo (20px) */
.wsj-subtitle {
    font-family: var(--font-wsj-subtitle);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0 0 0.75rem 0;
}

/* 4. Linha do Autor (itálico) */
.wsj-byline {
    margin-bottom: 0.15rem;
}

.wsj-author {
    font-family: var(--font-wsj-meta);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color);
}

/* 5. Data do Post */
.wsj-date {
    font-family: var(--font-wsj-meta);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

/* Desktop Enhancements */
@media (min-width: 768px) {

    /* Logo size on desktop handled by .navbar-brand .site-logo */

    .wsj-header {
        max-width: 720px;
        padding: 0;
    }

    .wsj-title {
        font-size: 2.5rem;
    }

    .wsj-subtitle {
        font-size: 1.25rem;
    }

    .wsj-category a {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .wsj-title {
        font-size: 2.75rem;
    }
}

/* ================================================
   MAGAZINE / NEWSPAPER LAYOUT (WSJ Style)
   ================================================ */

/* Grid Wrapper */
.wsj-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* 1. HERO SECTION */
.wsj-hero {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
}

.wsj-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .wsj-hero-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .wsj-hero-image {
        flex: 1.5;
    }

    .wsj-hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 1rem;
    }
}

.wsj-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Fallback Hero */
.wsj-placeholder-hero {
    background: linear-gradient(135deg, var(--color-surface-elevated) 0%, var(--color-bg-subtle) 100%);
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: var(--radius-lg);
}

.placeholder-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.5;
}

.wsj-hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Mobile */
    line-height: 1.1;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

@media (min-width: 992px) {
    .wsj-hero-title {
        font-size: 2.75rem;
        /* Desktop Big Headline */
    }
}

.wsj-hero-excerpt {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.wsj-meta-top {
    margin-bottom: 0.5rem;
}

.wsj-meta-bottom {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-meta);
    text-transform: none;
    letter-spacing: 0.5px;
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

/* 2. SECONDARY GRID (Highlights) */
.wsj-secondary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .wsj-secondary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        border-bottom: none;
        /* Removed border here, used divider instead */
    }

    /* Vertical Dividers between items */
    .wsj-highlight-item:not(:last-child) {
        border-right: 1px solid var(--color-border);
        padding-right: 1.5rem;
    }
}

.wsj-highlight-image {
    margin-bottom: 1rem;
}

.wsj-highlight-image img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.wsj-highlight-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.wsj-divider-fat {
    height: 1px;
    background: var(--color-border);
    width: 100%;
    margin-bottom: 2rem;
    display: none;
}

@media (min-width: 768px) {
    .wsj-divider-fat {
        display: block;
    }
}

/* 3. MAIN CONTENT AREA (Feed + Sidebar) */
.wsj-main-content-area {
    display: block;
}

@media (min-width: 992px) {
    .wsj-main-content-area {
        display: grid;
        grid-template-columns: 2fr 1fr;
        /* 2/3 Content, 1/3 Sidebar */
        gap: 3rem;
    }
}

.wsj-news-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Items handle margin/border */
}

.section-label {
    font-family: var(--font-heading);
    text-transform: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* List Items */
.wsj-list-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.wsj-list-item:first-of-type {
    padding-top: 0;
}

.wsj-list-inner {
    display: flex;
    flex-direction: row-reverse;
    /* Imagem na direita em mobile tb */
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .wsj-list-inner {
        flex-direction: row;
        /* Imagem esquerda desk */
        align-items: flex-start;
        gap: 1.5rem;
    }

    .wsj-list-image {
        flex-shrink: 0;
        width: 150px;
    }
}

.wsj-list-image img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .wsj-list-image img {
        width: 100%;
        height: auto;
    }
}

.wsj-list-content {
    flex: 1;
}

.wsj-list-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.35rem;
}

.cat-label-micro {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.wsj-list-date {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.wsj-list-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.wsj-list-excerpt {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    display: none;
    /* Hide excerpt on mobile list */
}

@media (min-width: 768px) {
    .wsj-list-excerpt {
        display: block;
    }
}

/* Sidebar Styling */
.wsj-main-sidebar .widget {
    margin-bottom: 2.5rem;
}


/* Sidebar Customizada */
.wsj-sidebar-list {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.wsj-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--color-border-subtle);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.wsj-sidebar-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wsj-sidebar-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-subtle);
}

.wsj-sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wsj-sidebar-cat {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.wsj-sidebar-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    text-decoration: none;
}

.wsj-sidebar-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.wsj-sidebar-view-all {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-meta);
    text-decoration: none;
    text-align: right;
}

.wsj-sidebar-view-all:hover {
    color: var(--primary-color);
}

/* ================================================
   FOOTER — LP Style
   ================================================ */
.lp-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 3rem;
    position: relative;
    font-family: var(--font-sans);
    margin-top: 3rem;
}

.lp-footer__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24rem;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    pointer-events: none;
}

.lp-footer__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Brand / Logo */
.lp-footer__brand {
    margin-bottom: 2rem;
}

.lp-footer__logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.lp-footer__logo {
    height: 64px;
    width: auto;
}

.lp-footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.lp-footer__description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Social Icons */
.lp-footer__social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lp-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.lp-footer__social-link:hover {
    background: rgba(34, 197, 94, 0.2);
    color: var(--brand-green-400);
    transform: scale(1.1);
}

/* Google Partner Badge */
.lp-footer__badge {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.lp-footer__badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    font-weight: 500;
}

.lp-footer__badge-icon {
    color: var(--brand-green-400);
}

/* Company Links (inline) */
.lp-footer__company-links {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.lp-footer__company-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer__company-links a:hover {
    color: var(--brand-green-400);
}

.lp-footer__separator {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 0.75rem;
}

/* Bottom Bar */
.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.lp-footer__bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lp-footer__copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    line-height: 1;
}

.lp-footer__legal-link {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}

.lp-footer__legal-link:hover {
    color: #fff;
}

.lp-footer__separator--desktop {
    display: none;
}

.lp-footer__cnpj {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    margin-top: 1rem;
}

/* Desktop: bottom row inline */
@media (min-width: 768px) {
    .lp-footer__bottom-row {
        flex-direction: row;
        justify-content: center;
        align-items: baseline;
        gap: 0;
    }

    .lp-footer__separator--desktop {
        display: inline;
        color: rgba(255, 255, 255, 0.15);
        margin: 0 0.75rem;
    }
}

/* ============================================
   STICKY NAVBAR & PROGRESS BAR - MOBILE ONLY
   Usando classes únicas para evitar conflitos
   ============================================ */

/* Base Header - Desktop */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--color-surface);
}

/* Sticky Header - Mobile Only */
@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
}

/* NOVA Progress Bar - Classes únicas com !important */
.winup-progress-wrap {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 3px !important;
    max-height: 3px !important;
    min-height: 3px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    z-index: 99999 !important;
    display: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .winup-progress-wrap {
        display: block !important;
    }
}

.winup-progress-fill {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    max-height: 3px !important;
    width: 0% !important;
    background-color: var(--brand-green-500) !important;
    transition: width 0.05s linear !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ================================================
   ARCHIVE PAGES
   ================================================ */
.archive-header {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--gradient-newsletter);
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
}

.archive-label {
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    color: var(--brand-green-400);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.archive-description {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.archive-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(10px);
}

.archive-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--card-hover-bg);
}

.archive-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.archive-card-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.archive-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumb {
    background: linear-gradient(135deg, var(--color-bg-muted) 0%, var(--color-surface-elevated) 100%);
}

.archive-card-content {
    padding: 1.25rem;
}

.archive-card-cat {
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    color: var(--brand-green-400);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(8px);
}

.archive-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.archive-card-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.archive-card-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.archive-pagination {
    padding: 3rem 1rem;
    text-align: center;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.archive-pagination a,
.archive-pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s;
}

.archive-pagination a:hover {
    background: var(--brand-green-500);
    color: white;
    border-color: var(--brand-green-500);
}

.archive-pagination .current {
    background: var(--brand-green-500);
    color: white;
    border-color: var(--brand-green-500);
}

.no-posts {
    text-align: center;
    padding: 4rem 1rem;
}

.no-posts h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.no-posts p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}

.btn-back-home {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--brand-green-500);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: background 0.2s;
}

.btn-back-home:hover {
    background: var(--brand-green-600);
}

/* ================================================
   404 ERROR PAGE
   ================================================ */
.error-404-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.error-404-content {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--gradient-newsletter);
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
}

.error-404-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--brand-green-500);
    line-height: 1;
    opacity: 0.15;
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin: -2rem 0 1rem;
}

.error-404-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
}

.error-404-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient-cta);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: var(--shadow-glow);
}

.error-404-btn:hover {
    background: var(--brand-green-600);
    box-shadow: var(--shadow-glow-strong);
}

.error-404-suggestions h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.suggestion-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(10px);
}

.suggestion-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.suggestion-card a {
    text-decoration: none;
    color: inherit;
}

.suggestion-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-content {
    padding: 1rem;
}

.suggestion-cat {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--brand-green-500);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.suggestion-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

/* ================================================
   PAGE TEMPLATES (Contact, About, Legal)
   ================================================ */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.page-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form-area {
    background: var(--color-bg-subtle);
    padding: 2rem;
    border-radius: var(--radius);
}

.contact-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    padding: 2rem;
}

.contact-info-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-box h3 {
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    color: var(--color-text);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.2rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-social {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.contact-social h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--brand-green-500);
    color: white;
}

/* About Page */
.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.about-sections section {
    margin-bottom: 3rem;
}

.about-sections h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-subtle);
    border-radius: var(--radius);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.value-item h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--gradient-cta);
    border-radius: var(--radius-md);
    color: white;
}

.trust-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.trust-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Legal Pages (Privacy, Terms) */
.page-legal .legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 2rem 0 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-placeholder {
    background: var(--color-bg-subtle);
    padding: 2rem;
    border-radius: var(--radius-md);
}

/* ================================================
   SEARCH UI - Refined
   ================================================ */

/* MOBILE DRAWER SEARCH */
.mobile-search-box {
    padding: 1rem 1.25rem 0.5rem;
    background: var(--color-surface);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-field {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.5rem;
    /* space for icon on right? no, icon button right */
    padding-right: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: var(--color-bg-subtle);
    color: var(--text-color);
    outline: none;
    transition: all 0.2s;
}

.mobile-search-field:focus {
    background: var(--color-surface);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15);
}

.mobile-search-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: none;
    border: none;
    padding: 0 0.75rem;
    color: var(--text-meta);
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* DESKTOP INLINE SEARCH */
.desktop-search-wrapper {
    position: relative;
    margin-left: 1rem;
}

.desktop-search-form {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.desktop-search-field {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    outline: none;
    opacity: 0;
}

.desktop-search-submit {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    z-index: 2;
}

.desktop-search-submit:hover {
    color: var(--primary-color);
}

/* Hover/Focus Interaction */
.desktop-search-wrapper:hover .desktop-search-field,
.desktop-search-field:focus,
.desktop-search-field:not(:placeholder-shown) {
    width: 200px;
    padding: 0.5rem 0;
    /* Adjust padding as needed */
    opacity: 1;
    cursor: text;
    border-bottom: 1px solid var(--border-color);
}

/* Make sure the form looks active when input has focus */
.desktop-search-form:focus-within {
    border-bottom-color: var(--primary-color);
}

.desktop-search-field::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* ================================================
   TECH MODERNIZATION — Micro-interactions & Polish
   ================================================ */

/* Animated underline for content links */
.entry-content a {
    color: var(--brand-green-400);
    text-decoration: none;
    background-image: linear-gradient(var(--brand-green-400), var(--brand-green-400));
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, color 0.2s;
}

.entry-content a:hover {
    background-size: 100% 1px;
    color: var(--brand-green-400);
}

/* Card hover glow border effect */
.archive-card,
.related-post-card,
.suggestion-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.archive-card:hover,
.related-post-card:hover,
.suggestion-card:hover {
    border-color: rgba(34, 197, 94, 0.2);
}

/* CTA buttons — uniform glow treatment */
.btn-back-home,
.mobile-newsletter-btn,
.error-404-btn {
    background: var(--gradient-cta);
    box-shadow: var(--shadow-glow);
    transition: all 0.25s ease;
}

.btn-back-home:hover,
.mobile-newsletter-btn:hover,
.error-404-btn:hover {
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-1px);
}

/* Sidebar box glassmorphism */
.wsj-sidebar-list,
.contact-info-box,
.contact-social {
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
}

/* Smoother image border-radius on cards */
.archive-card-thumb,
.suggestion-thumb {
    border-radius: var(--radius) var(--radius) 0 0;
}

/* Section headings — tech style */
.section-label,
.related-posts-title,
.wsj-sidebar-title,
.widget-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    position: relative;
}

/* Green dot accent before section titles */
.section-label::before,
.related-posts-title::before,
.wsj-sidebar-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green-500);
    margin-right: 0.5rem;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* Nav links — subtle hover */
.main-navigation a {
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-ancestor > a::after {
    width: 100%;
}

/* Active menu item — green highlight */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
    color: var(--brand-green-400);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-ancestor > a::after {
    background: var(--brand-green-400);
}

/* Scrollbar styling for dark mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}