.revistas-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #4caf50 100%);
    color: white;
    margin-top: 80px;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.revista-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.revista-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
    border-color: #E91E63;
}

.revista-cover-container {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid #E91E63;
}

.revista-cover-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.revista-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.revista-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.revista-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.revista-stats {
    font-size: 0.8rem;
    color: #E91E63;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.revista-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-view {
    background: #fce4ec;
    color: #E91E63;
    border: none;
    flex: 1;
    font-weight: 600;
}

.btn-view:hover {
    background: #E91E63;
    color: white;
}

.btn-download {
    background: #e8f5e9;
    color: #2e7d32;
    border: none;
    flex: 1;
    font-weight: 600;
}

.btn-download:hover {
    background: #2e7d32;
    color: white;
}

.visitas-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}