/* ===== JCS NOTÍCIAS - DESIGN MODERNO E RESPONSIVO ===== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ===== HEADER PRINCIPAL ===== */
.jcs-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.jcs-header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.jcs-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.jcs-logo a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jcs-logo a:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.jcs-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.jcs-header-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.weather-info,
.date-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-info i,
.date-info i {
    font-size: 1.2rem;
    color: #ffd700;
}

/* ===== NAVBAR ===== */
.jcs-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #e74c3c;
}

/* Logo Styles */
.navbar-logo {
    max-height: 50px;
    width: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-brand {
    padding: 0.5rem 0;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .navbar-logo {
        max-height: 40px;
        margin-right: 10px;
    }
}

.jcs-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jcs-nav-list li {
    position: relative;
}

.jcs-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.jcs-nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.jcs-nav-list a:hover::before {
    left: 100%;
}

.jcs-nav-list a:hover,
.jcs-nav-list a.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-2px);
}

.jcs-nav-list a.active {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.search-item {
    margin-left: auto;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.search-form input {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    outline: none;
    width: 200px;
    font-size: 0.9rem;
}

.search-form button {
    background: #e74c3c;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Search Form Professional Styles */
.search-form-professional {
    max-width: 450px;
    align-items: center;
    gap: 10px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-elegant {
    border-radius: 30px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    padding: 12px 45px 12px 20px !important;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input-elegant::placeholder {
    color: #666 !important;
    font-style: italic;
}

.search-input-elegant:focus {
    background: #fff !important;
    border-color: #007bff !important;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3) !important;
    color: #333 !important;
    transform: translateY(-2px);
    outline: none !important;
}

.search-icon-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    cursor: pointer;
    z-index: 10;
}

.search-icon-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.search-icon-btn:active {
    transform: translateY(-50%) scale(1.05);
    transition: all 0.1s ease;
}

.search-icon-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.search-icon-btn:hover i {
    transform: scale(1.1);
}

.search-input-elegant:focus + .search-icon-btn {
    background: linear-gradient(135deg, #0056b3, #004085);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-form-professional {
        max-width: 100%;
    }
    
    .search-input-elegant {
        padding: 10px 40px 10px 15px !important;
        font-size: 13px;
    }
    
    .search-icon-btn {
        width: 28px;
        height: 28px;
        right: 6px;
    }
    
    .search-icon-btn i {
        font-size: 10px;
    }
}

/* Estilos do Carrossel de Notícias em Destaque */
.jcs-hero-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jcs-carousel-item {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jcs-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jcs-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.jcs-carousel-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.jcs-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.jcs-carousel-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-carousel-title a:hover {
    color: #ffd700;
}

.jcs-carousel-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.jcs-carousel-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.jcs-carousel-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.jcs-carousel-meta i {
    font-size: 0.8rem;
}

/* Controles do Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px;
}

/* Indicadores do Carrossel */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: white;
    transform: scale(1.2);
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .jcs-carousel-item {
        height: 400px;
    }
    
    .jcs-carousel-overlay {
        padding: 20px;
    }
    
    .jcs-carousel-title {
        font-size: 1.3rem;
    }
    
    .jcs-carousel-excerpt {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .jcs-carousel-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* ===== MAIN CONTENT ===== */
.jcs-main {
    padding: 1rem 0;
    min-height: 70vh;
}

/* ===== FEATURED SECTION ===== */
.jcs-featured-section {
    margin-bottom: 3rem;
}

.jcs-featured-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.jcs-featured-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.jcs-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.jcs-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jcs-featured-main:hover .jcs-featured-image img {
    transform: scale(1.05);
}

.jcs-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.jcs-category-badge {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.jcs-featured-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.jcs-featured-title a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jcs-featured-title a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.jcs-featured-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.jcs-featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== SECONDARY GRID ===== */
.jcs-secondary-grid {
    margin-bottom: 3rem;
}

.jcs-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.jcs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.jcs-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.jcs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jcs-card:hover .jcs-card-image img {
    transform: scale(1.1);
}

.jcs-card-content {
    padding: 1.5rem;
}

.jcs-card-category {
    background: rgb(51 71 91);
    color: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.jcs-card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.jcs-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-card-title a:hover {
    color: #0D6EFD;
}

.jcs-card-meta {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* ===== LATEST NEWS ===== */
.jcs-latest-news {
    margin-bottom: 3rem;
}

.jcs-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #33475b;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.jcs-section-line {
    height: 4px;
    background: linear-gradient(90deg, #314559, #32465a3b);
    border-radius: 2px;
}

.jcs-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jcs-news-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.jcs-news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #e74c3c;
}

.jcs-news-item.even {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.jcs-news-image {
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
}

.jcs-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jcs-news-item:hover .jcs-news-image img {
    transform: scale(1.05);
}

.jcs-news-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jcs-news-category {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.jcs-news-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.jcs-news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-news-title a:hover {
    color: #e74c3c;
}

.jcs-news-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.jcs-news-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.jcs-news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== PAGINATION ===== */
.jcs-pagination {
    margin-top: 3rem;
}

.jcs-pagination .pagination {
    gap: 0.5rem;
}

.jcs-pagination .page-link {
    border: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.jcs-pagination .page-link:hover {
    background: #0D6EFD;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.jcs-pagination .page-item.active .page-link {
    background: #0D6EFD;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* ===== SIDEBAR ===== */
.jcs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jcs-widget {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.jcs-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.jcs-widget-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.jcs-widget-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.jcs-widget:hover .jcs-widget-header::before {
    left: 100%;
}

.jcs-widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jcs-widget-content {
    padding: 1.5rem;
}

/* ===== POPULAR ITEMS ===== */
.jcs-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.jcs-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.jcs-popular-item:hover {
    background: rgba(231, 76, 60, 0.02);
    padding-left: 0.5rem;
    border-radius: 8px;
}

.jcs-popular-number {
    background: linear-gradient(90deg, #314559, #32465ae0);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px #2c3e50;
}

.jcs-popular-content {
    flex: 1;
}

.jcs-popular-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.jcs-popular-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-popular-title a:hover {
    color: #0D6EFD;
}

.jcs-popular-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.jcs-popular-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== CATEGORY LIST ===== */
.jcs-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcs-category-list li {
    border-bottom: 1px solid #eee;
}

.jcs-category-list li:last-child {
    border-bottom: none;
}

.jcs-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.jcs-category-list a::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #0D6EFD;
    transition: height 0.3s ease;
}

.jcs-category-list a:hover::before,
.jcs-category-list a.active::before {
    height: 100%;
}

.jcs-category-list a:hover,
.jcs-category-list a.active {
    color: #0D6EFD;
    padding-left: 1rem;
    background: rgba(231, 76, 60, 0.02);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: #314458;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

/* ===== NEWSLETTER ===== */
.jcs-newsletter .jcs-widget-content {
    text-align: center;
}

.jcs-newsletter p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.jcs-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jcs-newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.jcs-newsletter-form input:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.jcs-newsletter-form button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jcs-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* ===== SOCIAL LINKS ===== */
.jcs-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.jcs-social-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jcs-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
}

.jcs-social-links a:hover::before {
    left: 0;
}

.jcs-social-links a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jcs-social-links a span {
    position: relative;
    z-index: 2;
}

.jcs-social-links .facebook {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.jcs-social-links .facebook::before {
    background: #1877f2;
}

.jcs-social-links .facebook:hover {
    color: white;
}

.jcs-social-links .instagram {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.jcs-social-links .instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.jcs-social-links .instagram:hover {
    color: white;
}

.jcs-social-links .youtube {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.jcs-social-links .youtube::before {
    background: #ff0000;
}

.jcs-social-links .youtube:hover {
    color: white;
}

.jcs-social-links .twitter {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.jcs-social-links .twitter::before {
    background: #1da1f2;
}

.jcs-social-links .twitter:hover {
    color: white;
}

.jcs-social-links .whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.jcs-social-links .whatsapp::before {
    background: #25d366;
}

.jcs-social-links .whatsapp:hover {
    color: white;
}

/* ===== FOOTER ===== */
.jcs-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.jcs-footer::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"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>') repeat;
}

.jcs-footer .container {
    position: relative;
    z-index: 2;
    padding: 3rem 15px 0;
}

.jcs-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.jcs-footer-text {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jcs-contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.jcs-contact-info i {
    color: #e74c3c;
    width: 16px;
    text-align: center;
}

.jcs-contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-contact-info a:hover {
    color: #e74c3c;
}

.jcs-footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jcs-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcs-footer-links li {
    margin-bottom: 0.5rem;
}

.jcs-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.jcs-footer-links a:hover {
    color: #e74c3c;
    padding-left: 0.5rem;
}

.jcs-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bdc3c7;
}

.stat-item i {
    color: #e74c3c;
    width: 16px;
    text-align: center;
}

.jcs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.jcs-footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.jcs-footer-bottom .text-danger {
    color: #e74c3c !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .jcs-logo {
        font-size: 2.2rem;
    }
    
    .jcs-featured-title {
        font-size: 1.8rem;
    }
    
    .jcs-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .jcs-header {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .jcs-header-info {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .jcs-nav-list {
        justify-content: center;
    }
    
    .search-item {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .search-form {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .jcs-featured-image {
        height: 300px;
    }
    
    .jcs-featured-title {
        font-size: 1.6rem;
    }
    
    .jcs-section-title {
        font-size: 1.6rem;
    }
    
    .jcs-main {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .jcs-logo {
        font-size: 1.8rem;
    }
    
    .jcs-tagline {
        font-size: 1rem;
    }
    
    .jcs-nav-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jcs-nav-list li {
        width: 100%;
    }
    
    .jcs-nav-list a {
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .search-item {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .jcs-featured-image {
        height: 250px;
    }
    
    .jcs-featured-overlay {
        padding: 1.5rem;
    }
    
    .jcs-featured-title {
        font-size: 1.4rem;
    }
    
    .jcs-section-title {
        font-size: 1.4rem;
    }
    
    .jcs-card-image {
        height: 150px;
    }
    
    .jcs-news-image {
        height: 100px;
    }
    
    .jcs-news-title {
        font-size: 1.1rem;
    }
    
    .jcs-news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .jcs-sidebar {
        margin-top: 2rem;
    }
    
    .jcs-footer .container {
        padding: 2rem 15px 0;
    }
    
    .jcs-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .jcs-header {
        padding: 1rem 0;
    }
    
    .jcs-logo {
        font-size: 1.5rem;
    }
    
    .jcs-tagline {
        font-size: 0.9rem;
    }
    
    .jcs-header-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .weather-info,
    .date-info {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .jcs-featured-image {
        height: 200px;
    }
    
    .jcs-featured-overlay {
        padding: 1rem;
    }
    
    .jcs-featured-title {
        font-size: 1.2rem;
    }
    
    .jcs-section-title {
        font-size: 1.2rem;
    }
    
    .jcs-card-content {
        padding: 1rem;
    }
    
    .jcs-news-item {
        padding: 1rem;
    }
    
    .jcs-news-item .row {
        flex-direction: column;
    }
    
    .jcs-news-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .jcs-widget-content {
        padding: 1rem;
    }
    
    .jcs-popular-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .jcs-popular-number {
        align-self: flex-start;
    }
    
    .jcs-social-links {
        gap: 0.5rem;
    }
    
    .jcs-social-links a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .jcs-footer-bottom {
        text-align: center;
    }
    
    .jcs-footer-bottom .row {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== ANIMAÇÕES E EFEITOS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.jcs-card,
.jcs-news-item,
.jcs-widget {
    animation: fadeInUp 0.6s ease-out;
}

.jcs-popular-number {
    animation: pulse 2s infinite;
}

/* ===== SCROLLBAR CUSTOMIZADA ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .jcs-navbar,
    .jcs-sidebar,
    .jcs-footer,
    .jcs-pagination {
        display: none !important;
    }
    
    .jcs-main {
        padding: 0;
    }
    
    .jcs-featured-overlay {
        background: white;
        color: black;
    }
    
    .jcs-news-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===== TRANSMISSÕES RECENTES ===== */
.jcs-live-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.jcs-live-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.jcs-live-item:hover {
    background: rgba(231, 76, 60, 0.02);
    padding-left: 0.5rem;
    border-radius: 8px;
}

.jcs-live-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.jcs-live-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jcs-live-item:hover .jcs-live-thumbnail img {
    transform: scale(1.05);
}

.jcs-live-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.jcs-live-status.live {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    animation: pulse 2s infinite;
}

.jcs-live-status.upcoming {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.jcs-live-status.ended {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.jcs-live-content {
    flex: 1;
    min-width: 0;
}

.jcs-live-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.jcs-live-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jcs-live-title a:hover {
    color: #0D6EFD;
}

.jcs-live-title a:hover .fa-external-link-alt {
    opacity: 1 !important;
    color: #e74c3c;
}

.jcs-live-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #7f8c8d;
}

.jcs-live-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.jcs-live-meta i {
    width: 12px;
    text-align: center;
}

.jcs-widget-footer {
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.jcs-widget-footer .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.jcs-widget-footer .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== SEÇÃO DE PATROCINADORES ===== */
.sponsors-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
}

.sponsors-slider {
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow: visible;
    min-height: auto;
}

.sponsor-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: stretch;
}

.sponsor-card {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    min-height: auto;
    height: auto;
}

.sponsor-logo {
    width: 150px;
    height: 100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.sponsor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    line-height: 1.3;
}

.sponsor-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: block;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.sponsor-link:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

/* Controles de navegação */
.sponsors-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.sponsor-btn {
    background: rgba(255,255,255,0.95);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: #495057;
}

.sponsor-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

.sponsor-btn i {
    font-size: 0.5rem;
}

/* Indicadores */
.sponsors-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    background: #fff;
}

.sponsor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-dot.active {
    background: #007bff;
    transform: scale(1.3);
}

.sponsor-dot:hover {
    background: #007bff;
    transform: scale(1.2);
}

/* Responsividade Completa */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .sponsor-card {
        padding: 0.5rem;
    }
    
    .sponsor-logo {
        width: 160px;
        height: 110px;
    }
    
    .sponsor-name {
        line-height: 1.3;
    }
    
    .sponsor-description {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 275px;
        margin: 0 auto;
    }
}

/* Desktop Medium (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .sponsor-card {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .sponsor-logo {
        width: 150px;
        height: 100px;
    }
    
    .sponsor-name {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .sponsor-description {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .sponsor-card {
        padding: 1.75rem;
        gap: 1.25rem;
    }
    
    .sponsor-logo {
        width: 140px;
        height: 90px;
    }
    
    .sponsor-name {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .sponsor-description {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .sponsor-link {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .sponsor-btn {
        width: 21px;
        height: 21px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .sponsor-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .sponsor-logo {
        width: 120px;
        height: 80px;
    }
    
    .sponsor-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .sponsor-description {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .sponsor-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .sponsor-btn {
        width: 20px;
        height: 20px;
    }
    
    .sponsor-btn i {
        font-size: 0.45rem;
    }
    
    .sponsors-controls {
        padding: 0 0.5rem;
    }
}

/* Mobile Small (até 575px) */
@media (max-width: 575px) {
    .sponsor-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .sponsor-logo {
        width: 100px;
        height: 70px;
    }
    
    .sponsor-name {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .sponsor-description {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .sponsor-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .sponsor-btn {
        width: 17px;
        height: 17px;
    }
    
    .sponsor-btn i {
        font-size: 0.4rem;
    }
    
    .sponsors-controls {
        padding: 0 0.25rem;
    }
    
    .sponsors-dots {
        padding: 1rem 0;
        gap: 0.5rem;
    }
    
    .sponsor-dot {
        width: 10px;
        height: 10px;
    }
}