/* ============================================ */
/* MEDIA RELATIONS PAGE - PREMIUM STYLES */
/* ============================================ */

/* HERO SECTION */
.hero-media {
    background: linear-gradient(135deg, rgba(107, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.95) 100%),
                url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1600') center/cover;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-media h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-media p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* INTRODUCTION SECTION */
.media-intro {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.media-intro h2 {
    color: #6B0000;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.media-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #6B0000 100%);
    border-radius: 2px;
}

.media-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 25px;
}

.media-intro ul {
    max-width: 750px;
    margin: 40px auto;
    list-style: none;
    padding: 0;
}

.media-intro ul li {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #333;
    padding-left: 10px;
    position: relative;
}

/* TIER SECTIONS */
.media-tier {
    padding: 60px 20px;
    margin: 40px 0;
}

.media-tier.tier-3 {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-top: 3px solid #D4AF37;
}

.media-tier.tier-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-top: 3px solid #8B0000;
}

.media-tier.tier-1 {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-top: 3px solid #6B0000;
}

.media-tier h2 {
    color: #6B0000;
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.media-tier .tier-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

/* SUBSECTIONS */
.media-subsection {
    margin-bottom: 50px;
}

.media-subsection h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #D4AF37;
    font-weight: 600;
}

/* CRITICS GRID */
.critics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* CRITIC CARD */
.critic-card, .media-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.critic-card::before, .media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6B0000 0%, #D4AF37 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.critic-card:hover, .media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 0, 0, 0.15);
}

.critic-card:hover::before, .media-card:hover::before {
    transform: scaleX(1);
}

.critic-card h4, .media-card h4 {
    color: #6B0000;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.critic-card .platform, .media-card .platform {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.critic-card .description, .media-card .description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.critic-card .badge {
    background: #6B0000;
    color: white;
}

.media-card .badge {
    background: #D4AF37;
    color: #000;
}

.badge[style*="Indisponível"] {
    background: #999 !important;
    color: white !important;
}

/* BLOGGERS COMPACT GRID */
.media-subsection:last-child .critics-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.media-subsection:last-child .critic-card {
    padding: 18px;
}

.media-subsection:last-child .critic-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* SUMMARY STATS */
.media-summary {
    padding: 80px 20px;
    background: linear-gradient(135deg, #6B0000 0%, #8B0000 100%);
    color: white;
    text-align: center;
    margin: 60px 0;
    border-radius: 15px;
}

.media-summary h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.stat-box h3 {
    color: #6B0000;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-box .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin: 15px 0;
    line-height: 1;
}

.stat-box .description {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA SECTION */
.media-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 0, 0, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    margin: 60px auto;
    max-width: 900px;
}

.media-cta h2 {
    color: #6B0000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.media-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4C430 100%);
    color: #000;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #F4C430 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-media h1 {
        font-size: 2.5rem;
    }

    .hero-media p {
        font-size: 1.1rem;
    }

    .media-intro h2 {
        font-size: 2.2rem;
    }

    .media-tier h2 {
        font-size: 1.9rem;
    }

    .critics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box .number {
        font-size: 2.8rem;
    }

    .media-cta h2 {
        font-size: 2rem;
    }

    .media-subsection h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-media {
        padding: 80px 15px 60px;
    }

    .hero-media h1 {
        font-size: 2rem;
    }

    .media-intro {
        padding: 50px 15px;
    }

    .media-tier {
        padding: 40px 15px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}