/* ========================================
   TANATOS HERO SECTION - TRAILER E NOTÍCIAS
   ======================================== */

/* ========================================
   CONTAINER PRINCIPAL
   ======================================== */

.tanatos-hero-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.tanatos-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SEÇÃO DO TRAILER
   ======================================== */

.tanatos-trailer-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tanatos-trailer-header {
    text-align: center;
    margin-bottom: 20px;
}

.tanatos-trailer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

.tanatos-trailer-icon {
    font-size: 32px;
    animation: trailerIconPulse 2s ease-in-out infinite;
}

@keyframes trailerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tanatos-trailer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.tanatos-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.tanatos-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.tanatos-video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

.tanatos-video-frame:hover {
    transform: scale(1.02);
}

.tanatos-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tanatos-video-container:hover .tanatos-video-overlay {
    opacity: 1;
}

.tanatos-play-button {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.tanatos-play-button:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.6);
}

.tanatos-play-icon {
    color: #fff;
    font-size: 24px;
    margin-left: 3px;
}

.tanatos-play-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tanatos-video-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.tanatos-video-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.tanatos-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}

.tanatos-stat-item:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-2px);
}

.tanatos-stat-icon {
    font-size: 18px;
}

.tanatos-stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* ========================================
   SEÇÃO DAS NOTÍCIAS
   ======================================== */

.tanatos-news-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    backdrop-filter: blur(10px);
}

.tanatos-news-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tanatos-news-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

.tanatos-news-icon {
    font-size: 28px;
    animation: newsIconFloat 3s ease-in-out infinite;
}

@keyframes newsIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tanatos-news-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tanatos-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tanatos-tab-button:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.tanatos-tab-button.tanatos-tab-active {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.6);
    color: #fff;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
}

.tanatos-tab-icon {
    font-size: 16px;
}

.tanatos-news-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tanatos-news-tab {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.tanatos-news-tab.tanatos-tab-active {
    display: flex;
}

.tanatos-news-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tanatos-news-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(220, 53, 69, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

.tanatos-news-card-header {
    margin-bottom: 15px;
}

.tanatos-news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.tanatos-news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.tanatos-news-category {
    color: rgba(220, 53, 69, 0.8);
    font-size: 12px;
    font-weight: 600;
    background: rgba(220, 53, 69, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
}

.tanatos-news-title-wrapper {
    margin-bottom: 10px;
}

.tanatos-news-card-title {
    margin: 0;
    line-height: 1.4;
}

.tanatos-news-card-title a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tanatos-news-card-title a:hover {
    color: rgba(220, 53, 69, 0.9);
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.tanatos-news-card-footer {
    display: flex;
    justify-content: flex-end;
}

.tanatos-news-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(220, 53, 69, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.tanatos-news-read-more:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #fff;
    transform: translateX(5px);
}

.tanatos-arrow {
    transition: transform 0.3s ease;
}

.tanatos-news-read-more:hover .tanatos-arrow {
    transform: translateX(3px);
}

.tanatos-news-placeholder {
    opacity: 0.7;
}

.tanatos-news-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.tanatos-news-view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(220, 53, 69, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 25px;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.tanatos-news-view-all:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .tanatos-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tanatos-trailer-title {
        font-size: 24px;
    }
    
    .tanatos-news-title {
        font-size: 20px;
    }
    
    .tanatos-news-tabs {
        justify-content: center;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .tanatos-hero-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .tanatos-hero-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .tanatos-trailer-title {
        font-size: 20px;
    }
    
    .tanatos-trailer-subtitle {
        font-size: 14px;
    }
    
    .tanatos-play-button {
        width: 60px;
        height: 60px;
    }
    
    .tanatos-play-icon {
        font-size: 18px;
    }
    
    .tanatos-video-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tanatos-stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .tanatos-news-section {
        padding: 20px;
    }
    
    .tanatos-news-title {
        font-size: 18px;
    }
    
    .tanatos-news-tabs {
        gap: 8px;
    }
    
    .tanatos-tab-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .tanatos-tab-icon {
        font-size: 14px;
    }
    
    .tanatos-news-card {
        padding: 15px;
    }
    
    .tanatos-news-card-title a {
        font-size: 14px;
    }
    
    .tanatos-news-read-more {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .tanatos-news-view-all {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Mobile Pequeno (480px and below) */
@media (max-width: 480px) {
    .tanatos-hero-container {
        padding: 0 10px;
    }
    
    .tanatos-trailer-title {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }
    
    .tanatos-trailer-icon {
        font-size: 24px;
    }
    
    .tanatos-video-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .tanatos-stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .tanatos-news-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tanatos-tab-button {
        justify-content: center;
    }
    
    .tanatos-news-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .tanatos-news-card-footer {
        justify-content: center;
    }
}
