/*
Theme Name: Mercado da Bola
Theme URI: https://seudominio.com
Author: Seu Nome
Author URI: https://seudominio.com
Description: Tema especializado para portal de notícias sobre transferências e mercado do futebol
Version: 1.0.0
License: GPL v2 or later
Text Domain: mercadodabola
*/

/* ==============================================
   VARIÁVEIS E RESET
   ============================================== */

:root {
    --primary-color: #00ff87;
    --primary-dark: #00cc6a;
    --primary-light: #80ffb5;
    --secondary-color: #1a1a2e;
    --secondary-dark: #0f0f1a;
    --secondary-light: #2a2a3e;
    --accent-color: #e94560;
    --accent-dark: #d1304b;
    --accent-light: #f06b81;
    
    --text-light: #ffffff;
    --text-dark: #16213e;
    --text-gray: #6c757d;
    --text-muted: #95a5a6;
    
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --border-radius-circle: 50%;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--gray-100);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */

h1, .h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
h2, .h2 { font-size: 2rem; font-weight: 700; line-height: 1.2; }
h3, .h3 { font-size: 1.75rem; font-weight: 600; line-height: 1.2; }
h4, .h4 { font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
h5, .h5 { font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
h6, .h6 { font-size: 1rem; font-weight: 600; line-height: 1.2; }

/* ==============================================
   LAYOUT UTILITIES
   ============================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.mt-1 { margin-top: 5px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 25px; }

.mb-1 { margin-bottom: 5px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 25px; }

/* ==============================================
   HEADER
   ============================================== */

.site-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    color: var(--text-light);
    text-decoration: none;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.featured-transfers {
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    animation: fadeInUp 1.2s ease;
}

.transfers-ticker {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.transfers-ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.transfer-player {
    font-weight: 600;
    color: var(--primary-color);
}

.transfer-arrow {
    color: var(--accent-color);
}

/* ==============================================
   SECTION HEADER
   ============================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.section-title {
    font-size: 24px;
    margin: 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

/* ==============================================
   NEWS GRID - LAYOUT EM GRADE
   ============================================== */

.news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 20px 0 !important;
}

.news-grid.layout-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.news-grid.layout-list {
    grid-template-columns: 1fr !important;
}

.news-grid.layout-featured {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 20px !important;
}

.news-grid.layout-featured .news-card:first-child {
    grid-row: span 2 !important;
}

.news-grid.layout-featured .news-card:first-child .card-image img {
    height: 400px !important;
}

/* ==============================================
   NEWS CARDS
   ============================================== */

.news-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-card .card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.1);
}

.news-card .news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-category {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.news-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--accent-color);
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}

.news-meta i {
    color: var(--accent-color);
    margin-right: 3px;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* ==============================================
   RUMOR BADGES
   ============================================== */

.rumor-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.rumor-badge.status-quente {
    background: #ff4444;
}

.rumor-badge.status-morno {
    background: #ffbb33;
}

.rumor-badge.status-frio {
    background: #00C851;
}

.rumor-indicator {
    margin-bottom: 10px;
}

.rumor-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.rumor-status.status-quente {
    background: #ff4444;
    color: white;
}

.rumor-status.status-morno {
    background: #ffbb33;
    color: #333;
}

.rumor-status.status-frio {
    background: #00C851;
    color: white;
}

.rumor-reliability {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 11px;
    color: #666;
}

/* ==============================================
   FEATURED TRANSFERS SECTION
   ============================================== */

.featured-transfers-section {
    margin: 50px 0;
    padding: 30px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.featured-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.1);
}

/* Status Badges */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-badge.confirmado {
    background: #4CAF50;
}

.status-badge.negociando {
    background: #FFC107;
    color: #333;
}

.status-badge.rumor {
    background: #2196F3;
}

.status-badge.finalizado {
    background: #9E9E9E;
}

.featured-card .card-content {
    padding: 20px;
}

.player-name {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.player-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.player-name a:hover {
    color: var(--accent-color);
}

.player-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.info-item i {
    color: var(--accent-color);
}

/* Transfer Path with Images */
.transfer-path-with-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 10px;
    background: var(--gray-100);
    border-radius: 50px;
}

.club-with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.club-shield-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.club-shield-placeholder-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ddd, #ccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.club-name-small {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-arrow {
    color: var(--accent-color);
    font-size: 18px;
    animation: pulse 2s infinite;
}

/* Transfer Value */
.transfer-value {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
}

.value-label {
    display: block;
    font-size: 11px;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.value-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Details Button */
.btn-details {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--accent-color);
}

.btn-details i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(5px);
}

/* ==============================================
   RUMORS SECTION
   ============================================== */

.rumors-section {
    margin: 50px 0;
}

.rumors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rumor-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border-left: 4px solid transparent;
}

.rumor-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.rumor-card.status-quente {
    border-left-color: #ff4444;
}

.rumor-card.status-morno {
    border-left-color: #ffbb33;
}

.rumor-card.status-frio {
    border-left-color: #00C851;
}

.rumor-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rumor-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rumor-temperature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 13px;
}

.rumor-temperature span {
    color: var(--text-dark);
}

.rumor-category {
    padding: 3px 10px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.rumor-reliability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reliability-bar {
    width: 80px;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.reliability-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
}

.rumor-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.rumor-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.rumor-excerpt {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.rumor-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}

.rumor-source i {
    margin-right: 5px;
    color: var(--accent-color);
}

.rumor-time i {
    margin-right: 5px;
    color: var(--accent-color);
}

.rumor-footer {
    text-align: right;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--accent-color);
    gap: 10px;
}

/* ==============================================
   NEWSLETTER SECTION
   ============================================== */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 0;
    border-radius: var(--border-radius-lg);
    margin: 50px 0;
    text-align: center;
    color: var(--text-dark);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 16px;
}

.newsletter-form .btn-submit {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form .btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ==============================================
   ARCHIVE HEADER
   ============================================== */

.archive-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.archive-title {
    font-size: 36px;
    margin: 0 0 15px;
    font-weight: 700;
}

.archive-description {
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
    font-size: 16px;
}

.archive-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-select {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 14px;
    cursor: pointer;
    min-width: 180px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.filter-select option {
    background: var(--secondary-color);
    color: white;
}

/* ==============================================
   TRANSFERS ARCHIVE GRID
   ============================================== */

.transfers-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.transfer-archive-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.transfer-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.archive-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transfer-archive-card:hover .archive-card-image img {
    transform: scale(1.1);
}

.archive-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.archive-status-badge.confirmado {
    background: #4CAF50;
}

.archive-status-badge.negociando {
    background: #FFC107;
}

.archive-status-badge.rumor {
    background: #2196F3;
}

.archive-status-badge.finalizado {
    background: #9E9E9E;
}

.archive-card-content {
    padding: 20px;
}

.archive-player-name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.archive-player-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.archive-player-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

.archive-player-meta i {
    color: var(--accent-color);
    margin-right: 3px;
}

.archive-transfer-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 15px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 40px;
}

.archive-club {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.archive-club-shield {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.archive-club-placeholder {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ddd, #ccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.archive-club-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-transfer-arrow {
    color: var(--accent-color);
    font-size: 14px;
}

.archive-transfer-value {
    text-align: center;
    margin: 15px 0;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary-color), #00cc6a);
    border-radius: 20px;
}

.archive-transfer-value .value-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.archive-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.archive-date {
    font-size: 11px;
    color: #999;
}

.archive-date i {
    color: var(--accent-color);
    margin-right: 3px;
}

.archive-read-more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 5px 12px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-read-more:hover {
    background: var(--accent-color);
    gap: 5px;
}

/* ==============================================
   POSTS ARCHIVE GRID
   ============================================== */

.archive-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.archive-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.archive-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.post-card-image {
    height: 180px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-content {
    padding: 20px;
}

.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.post-category {
    padding: 3px 10px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.post-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--accent-color);
}

.post-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
}

.post-card-meta i {
    color: var(--accent-color);
    margin-right: 3px;
}

.post-card-excerpt {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-read-more:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* ==============================================
   PAGINATION
   ============================================== */

.archive-pagination {
    margin: 50px 0;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pagination a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,255,135,0.3);
}

.pagination .current {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
}

/* ==============================================
   NO RESULTS
   ============================================== */

.no-results,
.no-featured-transfers,
.no-rumors-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.no-results-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 0.5;
}

.no-results h2,
.no-featured-transfers h3,
.no-rumors-message h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.no-results p,
.no-featured-transfers p,
.no-rumors-message p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-view-all,
.btn-add-first {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==============================================
   RESPONSIVE - MOBILE
   ============================================== */

@media (max-width: 992px) {
    .news-grid,
    .news-grid.layout-grid,
    .home-category-blocks .news-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transfers-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .archive-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-grid,
    .news-grid.layout-grid,
    .home-category-blocks .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .news-grid.layout-featured {
        grid-template-columns: 1fr !important;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .transfers-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .transfer-path-with-images {
        gap: 10px;
        padding: 8px;
    }
    
    .club-shield-small {
        width: 35px;
        height: 35px;
    }
    
    .club-name-small {
        font-size: 11px;
        max-width: 70px;
    }
    
    .value-number {
        font-size: 18px;
    }
    
    .btn-details {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .news-grid,
    .news-grid.layout-grid,
    .home-category-blocks .news-grid {
        grid-template-columns: 1fr !important;
    }
    
    .featured-card .card-image {
        height: 180px;
    }
    
    .player-name {
        font-size: 18px;
    }
    
    .player-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .transfer-path-with-images {
        gap: 5px;
    }
    
    .club-shield-small {
        width: 30px;
        height: 30px;
    }
    
    .club-name-small {
        font-size: 10px;
        max-width: 60px;
    }
    
    .value-number {
        font-size: 16px;
    }
    
    .archive-title {
        font-size: 24px;
    }
    
    .archive-player-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .archive-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .archive-read-more {
        width: 100%;
        justify-content: center;
    }
    
    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* ==============================================
   WIDGETS
   ============================================== */

.widget-area {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.widget:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.widget-title {
    margin: 0 0 20px;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.widget li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Recent Transfers Widget */
.recent-transfers-list .transfer-name {
    flex: 1;
    font-weight: 600;
}

.recent-transfers-list .transfer-to {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 15px;
}

.recent-transfers-list .transfer-status.confirmado {
    color: #4CAF50;
}

.recent-transfers-list .transfer-status.negociando {
    color: #FFC107;
}

.recent-transfers-list .transfer-status.rumor {
    color: #2196F3;
}

/* Hot Rumors Widget */
.hot-rumors-list .rumor-reliability {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

/* Social Widget */
.social-icons-widget {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-widget:hover {
    transform: translateY(-5px) rotate(360deg);
}

.social-facebook { background: #1877f2; }
.social-twitter { background: #1da1f2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); }
.social-youtube { background: #ff0000; }
.social-telegram { background: #0088cc; }
 
/* Tag Cloud */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tagcloud a {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px !important;
    transition: all 0.3s ease;
}

.tagcloud a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,255,135,0.3);
}