/**
 * Custom CSS for Mercado da Bola Theme
 * Estilos personalizados e complementares
 */

/* ==============================================
   VARIÁVEIS E RESET
   ============================================== */

:root {
    
    
    
}

/* ==============================================
   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; }

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ==============================================
   LAYOUT UTILITIES
   ============================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* Grid System */
.grid-1 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-1 { margin: 5px; }
.m-2 { margin: 10px; }
.m-3 { margin: 15px; }
.m-4 { margin: 20px; }
.m-5 { margin: 25px; }

.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; }

.p-0 { padding: 0; }
.p-1 { padding: 5px; }
.p-2 { padding: 10px; }
.p-3 { padding: 15px; }
.p-4 { padding: 20px; }
.p-5 { padding: 25px; }

/* ==============================================
   HEADER STYLES
   ============================================== */

.site-header {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-area {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    color: var(--text-light);
    text-decoration: none;
}

.site-description {
    margin: 5px 0 0;
    font-size: 12px;
    opacity: 0.8;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex: 1;
    margin: 0 30px;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.primary-menu li {
    position: relative;
    margin: 0 15px;
}

.primary-menu a {
    display: block;
    padding: 10px 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.primary-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.primary-menu a:hover:after,
.primary-menu .current-menu-item a:after {
    width: 100%;
}

.primary-menu a:hover {
    color: var(--primary-color);
}

/* Submenu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--secondary-light);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.primary-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    margin: 0;
}

.primary-menu .sub-menu a {
    padding: 10px 20px;
}

.primary-menu .sub-menu a:after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.search-toggle:hover,
.menu-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
}

/* Search Form */
.search-form-container {
    display: none;
    padding: 20px 0;
    background: var(--secondary-light);
}

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: 16px;
}

.search-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Categories Bar */
.categories-bar {
    background: var(--secondary-light);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.categories-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.categories-menu li {
    margin: 0;
}

.categories-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.categories-menu a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M50 15 L61 39 L87 39 L67 54 L73 79 L50 66 L27 79 L33 54 L13 39 L39 39 Z" fill="white"/></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

/* Transfers Ticker */
.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;
}

.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);
}

.transfer-club {
    opacity: 0.8;
}

/* ==============================================
   NEWS CARDS
   ============================================== */

.news-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.rumor-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-quente {
    background: #ff4444;
    color: white;
}

.status-morno {
    background: #ffbb33;
    color: black;
}

.status-frio {
    background: #00C851;
    color: white;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-title a:hover {
    color: var(--accent-color);
}

.news-meta {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-gray);
}

.news-meta i {
    margin-right: 5px;
}

.news-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

/* ==============================================
   CATEGORY BLOCKS
   ============================================== */

.category-block {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.category-title {
    font-size: 24px;
    color: var(--text-dark);
}

.category-title a {
    color: inherit;
    text-decoration: none;
}

.view-all {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.view-all:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ==============================================
   RUMORS SECTION
   ============================================== */

.rumors-section {
    margin: 50px 0;
}

.rumor-card {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: all var(--transition-fast);
}

.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-reliability {
    font-size: 12px;
    color: var(--text-gray);
}

.rumor-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.rumor-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.rumor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-gray);
}

/* ==============================================
   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);
}

/* ==============================================
   SINGLE POST
   ============================================== */

.single-article {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.entry-header {
    padding: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.entry-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.entry-meta {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.entry-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.entry-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 30px 0 15px;
}

.entry-footer {
    padding: 30px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

/* Rumor Status Box */
.rumor-status-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
}

.rumor-status-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.status-indicator {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.reliability-meter {
    margin-top: 15px;
}

.meter-bar {
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.meter-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.share-buttons h4 {
    margin: 0;
    font-size: 16px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: var(--border-radius-circle);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.share-buttons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Post Tags */
.post-tags {
    margin: 20px 0;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gray-200);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    margin: 0 5px 5px 0;
    transition: all var(--transition-fast);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.nav-previous,
.nav-next {
    flex: 0 0 48%;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--primary-color);
    transform: translateX(-5px);
}

.nav-next a:hover {
    transform: translateX(5px);
}

/* Related Posts */
.related-posts {
    margin: 40px 0;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px 15px 5px;
    font-size: 16px;
}

.related-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 12px;
    color: var(--text-gray);
}

/* ==============================================
   TRANSFER SINGLE
   ============================================== */

.transfer-article {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.transfer-header {
    padding: 30px;
    background: linear-gradient(135deg, #FFC107, #ffb300);
    color: white;
}

.transfer-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.transfer-status {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 600;
}

.transfer-card-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--gray-100);
}

.transfer-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.transfer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-item {
    margin-bottom: 20px;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-value.player-name {
    font-size: 32px;
    color: var(--accent-color);
}

.detail-item.highlight .detail-value {
    color: var(--accent-color);
    font-size: 36px;
}

.transfer-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}

.club {
    text-align: center;
}

.club-label {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.club-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.transfer-arrow {
    font-size: 30px;
    color: var(--accent-color);
}

/* Transfer Timeline */
.transfer-timeline {
    padding: 30px;
    background: var(--gray-100);
    margin: 30px 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-event {
    position: relative;
    padding-bottom: 30px;
}

.timeline-event:last-child {
    padding-bottom: 0;
}

.timeline-event:before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid white;
}

.event-date {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.event-description {
    font-weight: 600;
    color: var(--text-dark);
}

/* ==============================================
   ARCHIVE PAGES
   ============================================== */

.archive-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 50px;
}

.archive-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.archive-description {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Transfer Filters */
.transfer-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.transfer-filter {
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.transfer-filter:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Transfer Grid */
.transfers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.transfer-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.transfer-card-image {
    position: relative;
    overflow: hidden;
}

.transfer-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.transfer-card:hover .transfer-card-image img {
    transform: scale(1.05);
}

.transfer-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.transfer-status-badge.confirmado {
    background: var(--success);
    color: white;
}

.transfer-status-badge.negociando {
    background: var(--warning);
    color: black;
}

.transfer-status-badge.rumor {
    background: var(--info);
    color: white;
}

.transfer-status-badge.finalizado {
    background: var(--gray-600);
    color: white;
}

.transfer-card-content {
    padding: 20px;
}

.transfer-card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.transfer-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.transfer-players {
    margin-bottom: 15px;
}

.player-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
}

.transfer-clubs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.club-from, .club-to {
    font-weight: 600;
    color: var(--text-dark);
}

.transfer-clubs i {
    color: var(--accent-color);
}

.transfer-value {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.value-label {
    font-size: 11px;
    color: var(--text-dark);
    margin-right: 5px;
}

.value-number {
    font-weight: 700;
    color: var(--text-dark);
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-details:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    display: block;
    padding: 10px 15px;
    background: white;
    border-radius: var(--border-radius-md);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* ==============================================
   SIDEBAR
   ============================================== */

.widget {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.widget-title span {
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
}

/* Recent Transfers Widget */
.recent-transfers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-transfers-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.recent-transfers-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-transfers-list a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
}

.transfer-name {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.transfer-status {
    display: inline-block;
    font-size: 11px;
}

.transfer-status.confirmado { color: var(--success); }
.transfer-status.negociando { color: var(--warning); }
.transfer-status.rumor { color: var(--info); }

/* Hot Rumors Widget */
.hot-rumors-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hot-rumors-list li {
    margin-bottom: 10px;
}

.hot-rumors-list a {
    display: block;
    padding: 8px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.hot-rumors-list a:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.rumor-title {
    display: block;
    font-weight: 500;
    margin-bottom: 3px;
}

.rumor-time {
    font-size: 11px;
    color: var(--text-gray);
}

/* Social Widget */
.social-widget-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: var(--border-radius-md);
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-item i {
    font-size: 18px;
}

.social-item:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.social-facebook { background: #1877f2; }
.social-twitter { background: #1da1f2; }
.social-instagram { background: #e4405f; }
.social-youtube { background: #ff0000; }
.social-telegram { background: #0088cc; }
.social-whatsapp { background: #25d366; }
.social-tiktok { background: #000000; }
.social-linkedin { background: #0077b5; }

.style-circles .social-item {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

.style-squares .social-item {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: var(--border-radius-sm);
}

/* Newsletter Widget */
.newsletter-widget-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.widget-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-submit {
    padding: 10px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.newsletter-submit:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 13px;
}

.success-message {
    color: var(--success);
}

.error-message {
    color: var(--danger);
}

.newsletter-note {
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-gray);
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-link {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gray-200);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==============================================
   FOOTER
   ============================================== */

.site-footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget {
    color: rgba(255,255,255,0.8);
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.footer-menu-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-menu-list a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-dark);
}

.copyright {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
}

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.fade-in { animation: fadeIn 0.8s ease; }
.fade-in-up { animation: fadeInUp 0.8s ease; }
.fade-in-down { animation: fadeInDown 0.8s ease; }
.slide-in-left { animation: slideInLeft 0.8s ease; }
.slide-in-right { animation: slideInRight 0.8s ease; }
.pulse { animation: pulse 2s infinite; }
.spin { animation: spin 2s linear infinite; }

/* ==============================================
   LOADING SPINNER
   ============================================== */

.loading-spinner {
    text-align: center;
    padding: 40px;
}

.loading-spinner i {
    font-size: 40px;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

/* ==============================================
   UTILITY CLASSES
   ============================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }

.bg-primary { background: var(--primary-color); }
.bg-secondary { background: var(--secondary-color); }
.bg-accent { background: var(--accent-color); }
.bg-light { background: var(--gray-100); }
.bg-dark { background: var(--gray-900); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.hidden { display: none; }
.visible { display: block; }

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/* ==============================================
   PRINT STYLES
   ============================================== */

@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .comments-area,
    .share-buttons,
    .related-posts {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    @page {
        margin: 2cm;
    }
}