.hero-fakenews {
    min-height: 100vh; /* Altura mínima da viewport */
    padding-top: 100px; /* Espaço para o header fixo */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,
        rgba(230, 57, 70, 0.95),
        rgba(26, 71, 137, 0.9)
    );
    position: relative;
    margin-top: 80px; /* Adicional margem para compensar o header fixo */
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    font-size: 2rem;
    opacity: 0.9;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .hero-fakenews {
        padding-top: 80px;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-fakenews {
        padding-top: 60px;
        margin-top: 50px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }
}

.intro-section {
    background: var(--color-light);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray);
}

.fakenews-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    border-top: 5px solid #dc3545;
}

.fake-stamp {
    position: absolute;
    top: 20px;
    right: -60px;
    background: #dc3545;
    color: #ffffff;
    padding: 8px 60px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    z-index: 10;
}

.fake-title {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 2rem;
    padding-right: 100px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.truth-content {
    background: #f0f4ff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.truth-content p {
    color: #2a2f3a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.truth-content a {
    color: #1a4789;
    font-weight: 600;
}

.truth-header i {
    display: none !important;
}

.truth-header h4 {
    color: #28a745;
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.truth-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.source-link {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecf0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.source-link i {
    color: #1a4789;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.source-link a {
    color: #1a4789;
    text-decoration: none;
    font-weight: 600;
}

.source-link a:hover {
    text-decoration: underline;
    color: #0d2249;
}

/* Responsividade */
@media (max-width: 768px) {
    .fake-title {
        font-size: 1.5rem;
        padding-right: 0;
        padding-top: 50px;
        text-transform: uppercase;
    }

    .fake-stamp {
        right: -80px;
        top: 10px;
        font-size: 0.85rem;
    }
    
    .fakenews-card {
        overflow: visible;
    }
}
